Metadata-Version: 2.4
Name: rosud-harness
Version: 0.1.0
Summary: rosud-harness Python SDK — AI Agent Harness with Model Gateway, Memory Bank, and Guardrails
Project-URL: Homepage, https://rosud.com/docs/harness
Project-URL: Repository, https://github.com/kavin-kim-creator/rosud-harness-sdk
License: MIT
Keywords: agent,ai,bedrock,harness,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# rosud-harness

Python SDK for [Rosud Harness](https://rosud.com/docs/harness) — AI Agent Infrastructure.

## Install

```bash
pip install rosud-harness
```

## Quick start

```python
from rosud_harness import Harness

h = Harness(api_key="your-api-key")

# Register an agent
agent = h.agents.register(name="my-agent", memory_enabled=True)

# Run a task (polls until done)
task = h.tasks.run(agent.agent_id, "Summarize the latest AI news")
print(task.output)

# Store memory
h.memory.store(agent.agent_id, task.output)

# Semantic search
results = h.memory.search(agent.agent_id, "AI news")
```

## Links
- Docs: https://rosud.com/docs/harness
- TypeScript SDK: `npm install rosud-harness`
