Metadata-Version: 2.4
Name: open-agent-sdk-publish
Version: 1.0.0
Summary: OpenClaw-inspired AI Agent Framework with NVIDIA Nemotron, Voice, Canvas, Browser Sandbox, and Multi-Channel Support
Author-email: Himan D <himanshu@open.ai>
License: MIT
Keywords: agent,ai,browser-automation,canvas,deep-agents,langchain,nemotron,nvidia,openclaw,openshell,orchestration,voice
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: aiofiles>=23.0.0
Requires-Dist: chromadb>=0.5.0
Requires-Dist: deepagents>=0.1.0
Requires-Dist: google-api-python-client>=2.100.0
Requires-Dist: google-auth-httplib2>=0.2.0
Requires-Dist: google-auth-oauthlib>=1.1.0
Requires-Dist: google-auth>=2.25.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: langchain-anthropic>=0.2.0
Requires-Dist: langchain-community>=0.3.0
Requires-Dist: langchain-core>=0.3.0
Requires-Dist: langchain-nvidia-ai-endpoints>=0.3.0
Requires-Dist: langchain-openai>=0.2.0
Requires-Dist: langchain>=0.3.0
Requires-Dist: langgraph-checkpoint>=2.0.0
Requires-Dist: langgraph>=0.2.0
Requires-Dist: notion-client>=2.2.0
Requires-Dist: numpy>=1.26.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pygithub>=2.1.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: structlog>=24.0.0
Requires-Dist: typer>=0.12.0
Provides-Extra: all
Requires-Dist: espeak>=1.0.0; extra == 'all'
Requires-Dist: openai-whisper>=1.0.0; extra == 'all'
Requires-Dist: playwright>=1.40.0; extra == 'all'
Requires-Dist: speechrecognition>=3.8.0; extra == 'all'
Provides-Extra: browser
Requires-Dist: playwright>=1.40.0; extra == 'browser'
Provides-Extra: dev
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.5.0; extra == 'dev'
Provides-Extra: ui
Requires-Dist: gradio>=4.0.0; extra == 'ui'
Requires-Dist: streamlit>=1.30.0; extra == 'ui'
Provides-Extra: voice
Requires-Dist: espeak>=1.0.0; extra == 'voice'
Requires-Dist: openai-whisper>=1.0.0; extra == 'voice'
Requires-Dist: speechrecognition>=3.8.0; extra == 'voice'
Description-Content-Type: text/markdown

# OpenAgent

Multi-model AI agent orchestration framework with LangChain Deep Agents, NVIDIA OpenShell, and Nemotron.

## Features

- **NVIDIA Nemotron** - Advanced reasoning models
- **OpenShell** - Secure sandboxed execution
- **Deep Agents** - Planning, memory, tools, subagents
- **OpenClaw-style** - Gateway, sessions, multi-agent

## Installation

```bash
pip install -e .
export NVIDIA_API_KEY=your_key
```

## Quick Start

```python
from open_agent import create_deep_agent

agent = create_deep_agent(name="assistant")
await agent.initialize()
response = await agent.process_message("Hello!")
```
