Metadata-Version: 2.4
Name: neuralnode
Version: 2.0.1
Summary: Advanced AI Agent Framework with Neural Doctor error handling
Home-page: https://github.com/neuralnode/neuralnode
Author: NeuralNode Team
Author-email: contact@neuralnode.ai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: chromadb>=0.4.0
Requires-Dist: sentence-transformers>=2.2.0
Requires-Dist: python-dotenv>=0.19.0
Requires-Dist: websockets>=10.0
Requires-Dist: ollama>=0.1.0
Provides-Extra: voice
Requires-Dist: pyttsx3>=2.90; extra == "voice"
Requires-Dist: SpeechRecognition>=3.10.0; extra == "voice"
Requires-Dist: pyaudio>=0.2.11; extra == "voice"
Provides-Extra: full
Requires-Dist: pyttsx3>=2.90; extra == "full"
Requires-Dist: SpeechRecognition>=3.10.0; extra == "full"
Requires-Dist: pyaudio>=0.2.11; extra == "full"
Requires-Dist: requests>=2.25.0; extra == "full"
Requires-Dist: aiohttp>=3.8.0; extra == "full"
Requires-Dist: numpy>=1.21.0; extra == "full"
Requires-Dist: chromadb>=0.4.0; extra == "full"
Requires-Dist: sentence-transformers>=2.2.0; extra == "full"
Requires-Dist: python-dotenv>=0.19.0; extra == "full"
Requires-Dist: websockets>=10.0; extra == "full"
Requires-Dist: ollama>=0.1.0; extra == "full"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NeuralNode 2.0

Advanced AI Agent Framework with Neural Doctor error handling system.

## Features

- ReAct Agent with reasoning capabilities
- BaseTool and ToolResult for custom tools
- Message system for agent communication
- Neural Doctor - Advanced error handling with self-healing
- Google AI Studio integration
- RAG (Retrieval-Augmented Generation)
- Advanced Chains
- Voice capabilities (TTS/STT)
- Memory management

## Installation

```bash
pip install neuralnode
```

## Quick Start

```python
from neuralnode import ReActAgent, Message, BaseTool
from neuralnode.integrations.google_ai_studio import GoogleAILLM

# Create agent
agent = ReActAgent(
    llm=GoogleAILLM(api_key="your-api-key"),
    system_prompt="You are a helpful assistant"
)

# Send message
response = agent.run(Message.user("Hello!"))
print(response.content)
```

## API Keys

Create `.env` file:
```
GOOGLE_API_KEY=your_key_here
TELEGRAM_BOT_TOKEN=your_token_here
```

## License

MIT
