neuralnode 2.0.0__tar.gz → 2.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- neuralnode-2.0.1/PKG-INFO +106 -0
- neuralnode-2.0.1/README.md +50 -0
- neuralnode-2.0.1/setup.py +64 -0
- neuralnode-2.0.1/src/neuralnode/chains/__init__.py +0 -0
- neuralnode-2.0.1/src/neuralnode/chains/advanced_chains.py +540 -0
- neuralnode-2.0.1/src/neuralnode/core/__init__.py +0 -0
- neuralnode-2.0.1/src/neuralnode/core/base_tool.py +80 -0
- neuralnode-2.0.1/src/neuralnode/core/local_llm.py +143 -0
- neuralnode-2.0.1/src/neuralnode/core/message.py +75 -0
- neuralnode-2.0.1/src/neuralnode/core/python_repl_tool.py +70 -0
- neuralnode-2.0.1/src/neuralnode/core/react_agent.py +177 -0
- neuralnode-2.0.1/src/neuralnode/core/utils.py +83 -0
- neuralnode-2.0.1/src/neuralnode/integrations/__init__.py +0 -0
- neuralnode-2.0.1/src/neuralnode/integrations/google_ai_studio.py +263 -0
- neuralnode-2.0.1/src/neuralnode/integrations/lm_studio.py +291 -0
- neuralnode-2.0.1/src/neuralnode/integrations/whatsapp.py +461 -0
- neuralnode-2.0.1/src/neuralnode.egg-info/PKG-INFO +106 -0
- neuralnode-2.0.1/src/neuralnode.egg-info/SOURCES.txt +23 -0
- neuralnode-2.0.1/src/neuralnode.egg-info/not-zip-safe +1 -0
- neuralnode-2.0.1/src/neuralnode.egg-info/requires.txt +26 -0
- neuralnode-2.0.0/PKG-INFO +0 -778
- neuralnode-2.0.0/README.md +0 -726
- neuralnode-2.0.0/setup.py +0 -67
- neuralnode-2.0.0/src/neuralnode.egg-info/PKG-INFO +0 -778
- neuralnode-2.0.0/src/neuralnode.egg-info/SOURCES.txt +0 -10
- neuralnode-2.0.0/src/neuralnode.egg-info/entry_points.txt +0 -2
- neuralnode-2.0.0/src/neuralnode.egg-info/requires.txt +0 -27
- {neuralnode-2.0.0 → neuralnode-2.0.1}/setup.cfg +0 -0
- {neuralnode-2.0.0 → neuralnode-2.0.1}/src/neuralnode/__init__.py +0 -0
- {neuralnode-2.0.0 → neuralnode-2.0.1}/src/neuralnode/neural_doctor.py +0 -0
- {neuralnode-2.0.0 → neuralnode-2.0.1}/src/neuralnode.egg-info/dependency_links.txt +0 -0
- {neuralnode-2.0.0 → neuralnode-2.0.1}/src/neuralnode.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: neuralnode
|
|
3
|
+
Version: 2.0.1
|
|
4
|
+
Summary: Advanced AI Agent Framework with Neural Doctor error handling
|
|
5
|
+
Home-page: https://github.com/neuralnode/neuralnode
|
|
6
|
+
Author: NeuralNode Team
|
|
7
|
+
Author-email: contact@neuralnode.ai
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: requests>=2.25.0
|
|
23
|
+
Requires-Dist: aiohttp>=3.8.0
|
|
24
|
+
Requires-Dist: numpy>=1.21.0
|
|
25
|
+
Requires-Dist: chromadb>=0.4.0
|
|
26
|
+
Requires-Dist: sentence-transformers>=2.2.0
|
|
27
|
+
Requires-Dist: python-dotenv>=0.19.0
|
|
28
|
+
Requires-Dist: websockets>=10.0
|
|
29
|
+
Requires-Dist: ollama>=0.1.0
|
|
30
|
+
Provides-Extra: voice
|
|
31
|
+
Requires-Dist: pyttsx3>=2.90; extra == "voice"
|
|
32
|
+
Requires-Dist: SpeechRecognition>=3.10.0; extra == "voice"
|
|
33
|
+
Requires-Dist: pyaudio>=0.2.11; extra == "voice"
|
|
34
|
+
Provides-Extra: full
|
|
35
|
+
Requires-Dist: pyttsx3>=2.90; extra == "full"
|
|
36
|
+
Requires-Dist: SpeechRecognition>=3.10.0; extra == "full"
|
|
37
|
+
Requires-Dist: pyaudio>=0.2.11; extra == "full"
|
|
38
|
+
Requires-Dist: requests>=2.25.0; extra == "full"
|
|
39
|
+
Requires-Dist: aiohttp>=3.8.0; extra == "full"
|
|
40
|
+
Requires-Dist: numpy>=1.21.0; extra == "full"
|
|
41
|
+
Requires-Dist: chromadb>=0.4.0; extra == "full"
|
|
42
|
+
Requires-Dist: sentence-transformers>=2.2.0; extra == "full"
|
|
43
|
+
Requires-Dist: python-dotenv>=0.19.0; extra == "full"
|
|
44
|
+
Requires-Dist: websockets>=10.0; extra == "full"
|
|
45
|
+
Requires-Dist: ollama>=0.1.0; extra == "full"
|
|
46
|
+
Dynamic: author
|
|
47
|
+
Dynamic: author-email
|
|
48
|
+
Dynamic: classifier
|
|
49
|
+
Dynamic: description
|
|
50
|
+
Dynamic: description-content-type
|
|
51
|
+
Dynamic: home-page
|
|
52
|
+
Dynamic: provides-extra
|
|
53
|
+
Dynamic: requires-dist
|
|
54
|
+
Dynamic: requires-python
|
|
55
|
+
Dynamic: summary
|
|
56
|
+
|
|
57
|
+
# NeuralNode 2.0
|
|
58
|
+
|
|
59
|
+
Advanced AI Agent Framework with Neural Doctor error handling system.
|
|
60
|
+
|
|
61
|
+
## Features
|
|
62
|
+
|
|
63
|
+
- ReAct Agent with reasoning capabilities
|
|
64
|
+
- BaseTool and ToolResult for custom tools
|
|
65
|
+
- Message system for agent communication
|
|
66
|
+
- Neural Doctor - Advanced error handling with self-healing
|
|
67
|
+
- Google AI Studio integration
|
|
68
|
+
- RAG (Retrieval-Augmented Generation)
|
|
69
|
+
- Advanced Chains
|
|
70
|
+
- Voice capabilities (TTS/STT)
|
|
71
|
+
- Memory management
|
|
72
|
+
|
|
73
|
+
## Installation
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install neuralnode
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Quick Start
|
|
80
|
+
|
|
81
|
+
```python
|
|
82
|
+
from neuralnode import ReActAgent, Message, BaseTool
|
|
83
|
+
from neuralnode.integrations.google_ai_studio import GoogleAILLM
|
|
84
|
+
|
|
85
|
+
# Create agent
|
|
86
|
+
agent = ReActAgent(
|
|
87
|
+
llm=GoogleAILLM(api_key="your-api-key"),
|
|
88
|
+
system_prompt="You are a helpful assistant"
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
# Send message
|
|
92
|
+
response = agent.run(Message.user("Hello!"))
|
|
93
|
+
print(response.content)
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## API Keys
|
|
97
|
+
|
|
98
|
+
Create `.env` file:
|
|
99
|
+
```
|
|
100
|
+
GOOGLE_API_KEY=your_key_here
|
|
101
|
+
TELEGRAM_BOT_TOKEN=your_token_here
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## License
|
|
105
|
+
|
|
106
|
+
MIT
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# NeuralNode 2.0
|
|
2
|
+
|
|
3
|
+
Advanced AI Agent Framework with Neural Doctor error handling system.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- ReAct Agent with reasoning capabilities
|
|
8
|
+
- BaseTool and ToolResult for custom tools
|
|
9
|
+
- Message system for agent communication
|
|
10
|
+
- Neural Doctor - Advanced error handling with self-healing
|
|
11
|
+
- Google AI Studio integration
|
|
12
|
+
- RAG (Retrieval-Augmented Generation)
|
|
13
|
+
- Advanced Chains
|
|
14
|
+
- Voice capabilities (TTS/STT)
|
|
15
|
+
- Memory management
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install neuralnode
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from neuralnode import ReActAgent, Message, BaseTool
|
|
27
|
+
from neuralnode.integrations.google_ai_studio import GoogleAILLM
|
|
28
|
+
|
|
29
|
+
# Create agent
|
|
30
|
+
agent = ReActAgent(
|
|
31
|
+
llm=GoogleAILLM(api_key="your-api-key"),
|
|
32
|
+
system_prompt="You are a helpful assistant"
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
# Send message
|
|
36
|
+
response = agent.run(Message.user("Hello!"))
|
|
37
|
+
print(response.content)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## API Keys
|
|
41
|
+
|
|
42
|
+
Create `.env` file:
|
|
43
|
+
```
|
|
44
|
+
GOOGLE_API_KEY=your_key_here
|
|
45
|
+
TELEGRAM_BOT_TOKEN=your_token_here
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
|
|
50
|
+
MIT
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="neuralnode",
|
|
8
|
+
version="2.0.1",
|
|
9
|
+
author="NeuralNode Team",
|
|
10
|
+
author_email="contact@neuralnode.ai",
|
|
11
|
+
description="Advanced AI Agent Framework with Neural Doctor error handling",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/neuralnode/neuralnode",
|
|
15
|
+
package_dir={"": "src"},
|
|
16
|
+
packages=find_packages(where="src"),
|
|
17
|
+
classifiers=[
|
|
18
|
+
"Development Status :: 4 - Beta",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.8",
|
|
25
|
+
"Programming Language :: Python :: 3.9",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Operating System :: OS Independent",
|
|
30
|
+
],
|
|
31
|
+
python_requires=">=3.8",
|
|
32
|
+
install_requires=[
|
|
33
|
+
"requests>=2.25.0",
|
|
34
|
+
"aiohttp>=3.8.0",
|
|
35
|
+
"numpy>=1.21.0",
|
|
36
|
+
"chromadb>=0.4.0",
|
|
37
|
+
"sentence-transformers>=2.2.0",
|
|
38
|
+
"python-dotenv>=0.19.0",
|
|
39
|
+
"websockets>=10.0",
|
|
40
|
+
"ollama>=0.1.0",
|
|
41
|
+
],
|
|
42
|
+
extras_require={
|
|
43
|
+
"voice": [
|
|
44
|
+
"pyttsx3>=2.90",
|
|
45
|
+
"SpeechRecognition>=3.10.0",
|
|
46
|
+
"pyaudio>=0.2.11",
|
|
47
|
+
],
|
|
48
|
+
"full": [
|
|
49
|
+
"pyttsx3>=2.90",
|
|
50
|
+
"SpeechRecognition>=3.10.0",
|
|
51
|
+
"pyaudio>=0.2.11",
|
|
52
|
+
"requests>=2.25.0",
|
|
53
|
+
"aiohttp>=3.8.0",
|
|
54
|
+
"numpy>=1.21.0",
|
|
55
|
+
"chromadb>=0.4.0",
|
|
56
|
+
"sentence-transformers>=2.2.0",
|
|
57
|
+
"python-dotenv>=0.19.0",
|
|
58
|
+
"websockets>=10.0",
|
|
59
|
+
"ollama>=0.1.0",
|
|
60
|
+
],
|
|
61
|
+
},
|
|
62
|
+
include_package_data=True,
|
|
63
|
+
zip_safe=False,
|
|
64
|
+
)
|
|
File without changes
|