Metadata-Version: 2.4
Name: nexusai-sdk
Version: 1.0.1
Summary: Python SDK for NexusAI - AI Agent Platform for Businesses
Home-page: https://github.com/cruso003/Nexux-Docs
Author: NexusAI
Author-email: support@nexusai.com
Project-URL: Bug Reports, https://github.com/cruso003/Nexux-Docs/issues
Project-URL: Source, https://github.com/cruso003/Nexux-Docs
Project-URL: Documentation, https://nexus-docs.bits-innovate.com
Keywords: ai,agents,nlp,voice,vision,multimodal,business,africa
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: python-dotenv>=0.19.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: flake8>=4.0; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NexusAI Python SDK

Python SDK for **NexusAI** - The AI Agent Platform designed for African businesses.

## Features

- 🤖 **Text AI Agents** - ChatGPT-powered conversational AI
- 🎤 **Voice AI Agents** - Real-time voice conversations
- 👁️ **Vision AI Agents** - Image and video analysis
- 📞 **Phone Integration** - Emergency services, customer support
- 🌍 **African Market Focus** - Built for African businesses
- 🔧 **Business Logic Adapters** - Customize AI behavior for your industry

## Quick Start

```bash
pip install nexusai-sdk
```

```python
from nexusai_sdk import NexusAIClient, AgentConfig

# Initialize client
client = NexusAIClient("https://your-nexusai-instance.com")

# Create an agent session
config = AgentConfig(
    agent_id="customer_support",
    instructions="You are a helpful customer support agent for an African telecom company.",
    capabilities=["text", "voice"],
    business_logic_adapter="telecom_support"
)

session = client.create_agent_session(config)

# Send a message
response = session.send_message("Hello, I need help with my mobile data plan")
print(response.content)
```

## Use Cases

### 🏥 Emergency Services

```python
# Emergency dispatcher AI
emergency_config = AgentConfig(
    agent_id="emergency_dispatcher",
    business_logic_adapter="emergency_services",
    capabilities=["text", "voice", "phone"]
)
```

### 📚 Language Learning

```python
# Language learning tutor
learning_config = AgentConfig(
    agent_id="french_tutor",
    business_logic_adapter="language_learning",
    capabilities=["text", "voice"]
)
```

### 🏪 Customer Support

```python
# Business customer support
support_config = AgentConfig(
    agent_id="support_agent",
    business_logic_adapter="customer_support",
    capabilities=["text", "voice", "vision"]
)
```

## Documentation

Visit [nexusai.com/docs](https://nexusai.com/docs) for complete documentation.

## License

MIT License - See LICENSE file for details.
