Metadata-Version: 2.4
Name: orqis-agent-sdk
Version: 0.1.2
Summary: Orqis SDK - one line to stream AI agent traces to Orqis self-healing ops
Author: Orqis
License: MIT
Project-URL: Homepage, https://orqis-auto-agent-dev-ops.vercel.app
Keywords: llmops,observability,ai-agents,langchain,openai,anthropic,monitoring
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.28.0
Requires-Dist: pydantic>=2.10.0
Requires-Dist: python-dotenv>=1.0.0
Dynamic: license-file

# Orqis Agent SDK

One line to stream your AI agent's traces to [Orqis](https://orqis-auto-agent-dev-ops.vercel.app) —
autonomous self-healing ops for AI agents.

## Install

```bash
pip install orqis-agent-sdk
```

## Use

```python
import orqis

orqis.init(api_key="orqs_your_workspace_key")
```

That's it. Every OpenAI, Anthropic, and LangChain call in your process is captured and
streamed to your Orqis workspace, where incidents are detected and fix PRs are proposed
automatically. Nothing else in your code changes.

Get your API key from your workspace **Settings -> API keys**.

## Configuration

| Argument / env var                    | Default      | Purpose                             |
| ------------------------------------- | ------------ | ----------------------------------- |
| `api_key` / `ORQIS_API_KEY`           | -            | Routes traces to your workspace     |
| `backend_url` / `ORQIS_BACKEND_URL`   | hosted Orqis | Point at a self-hosted backend      |

The SDK never blocks or crashes your agent: events are queued on a background daemon
thread and dropped silently if the backend is unreachable. All detection, root-cause
analysis, and patch generation happen server-side — none of that logic ships in this
package.

## License

MIT
