solana-agent 17.0.5__tar.gz → 17.0.8__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.
- {solana_agent-17.0.5 → solana_agent-17.0.8}/PKG-INFO +30 -33
- {solana_agent-17.0.5 → solana_agent-17.0.8}/README.md +26 -29
- {solana_agent-17.0.5 → solana_agent-17.0.8}/pyproject.toml +4 -4
- {solana_agent-17.0.5 → solana_agent-17.0.8}/LICENSE +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/adapters/llm_adapter.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/client/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/domains/agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/domains/routing.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/repositories/agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/repositories/agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/services/__init__.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/services/agent.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/services/query.py +0 -0
- {solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/services/routing.py +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 17.0.
|
4
|
-
Summary:
|
3
|
+
Version: 17.0.8
|
4
|
+
Summary: Agentic IQ
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
7
7
|
Author: Bevan Hunt
|
@@ -13,10 +13,10 @@ Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
14
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
16
|
-
Requires-Dist: openai (>=1.68.
|
16
|
+
Requires-Dist: openai (>=1.68.2,<2.0.0)
|
17
17
|
Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
18
18
|
Requires-Dist: pymongo (>=4.11.3,<5.0.0)
|
19
|
-
Requires-Dist: zep-cloud (>=2.
|
19
|
+
Requires-Dist: zep-cloud (>=2.8.0,<3.0.0)
|
20
20
|
Requires-Dist: zep-python (>=2.0.2,<3.0.0)
|
21
21
|
Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
|
22
22
|
Description-Content-Type: text/markdown
|
@@ -32,20 +32,29 @@ Description-Content-Type: text/markdown
|
|
32
32
|
|
33
33
|

|
34
34
|
|
35
|
+
## Agentic IQ
|
36
|
+
|
37
|
+
Power your business using Solana Agent!
|
38
|
+
|
39
|
+
* **Brand:** AI agents will speak in your brand voice
|
40
|
+
* **Expert:** The AI agent with the most expertise will answer your users' inquiries
|
41
|
+
* **Extend:** Assign tools for your AI agents to perform actions
|
42
|
+
|
35
43
|
## Features
|
36
44
|
|
37
|
-
*
|
38
|
-
*
|
39
|
-
*
|
40
|
-
*
|
41
|
-
*
|
45
|
+
* Seamless text and audio streaming with real-time multi-modal processing
|
46
|
+
* Persistent memory that preserves context across all agent interactions
|
47
|
+
* Intelligent query routing to agents with optimal domain expertise
|
48
|
+
* Unified value system ensuring brand-aligned agent responses
|
49
|
+
* Powerful tool integration using standard Python packages
|
50
|
+
* Assigned tools are utilized by agents automatically and effectively
|
42
51
|
|
43
52
|
## Stack
|
44
53
|
|
45
|
-
* [Python](https://python.org) -
|
54
|
+
* [Python](https://python.org) - Programming Language
|
46
55
|
* [OpenAI](https://openai.com) - LLMs
|
47
|
-
* [MongoDB](https://mongodb.com) -
|
48
|
-
* [Zep](https://getzep.com) -
|
56
|
+
* [MongoDB](https://mongodb.com) - Database
|
57
|
+
* [Zep](https://getzep.com) - Conversational Memory
|
49
58
|
|
50
59
|
## Installation
|
51
60
|
|
@@ -53,10 +62,6 @@ You can install Solana Agent using pip:
|
|
53
62
|
|
54
63
|
`pip install solana-agent`
|
55
64
|
|
56
|
-
## Documentation
|
57
|
-
|
58
|
-
Each public method has a docstring for real-time IDE hinting.
|
59
|
-
|
60
65
|
## Example App
|
61
66
|
|
62
67
|
```python
|
@@ -64,19 +69,15 @@ from solana_agent import SolanaAgent
|
|
64
69
|
|
65
70
|
config = {
|
66
71
|
"organization": {
|
67
|
-
"mission_statement": "To
|
72
|
+
"mission_statement": "To provide users with a one-stop shop for their queries.",
|
68
73
|
"values": {
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"Collective Intelligence": "Value diverse perspectives and combine human and AI strengths.",
|
72
|
-
"Continuous Learning": "Embrace feedback and continuously improve based on experience."
|
74
|
+
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
75
|
+
"Ethical": "Agents must use a strong ethical framework in their interactions with users.",
|
73
76
|
},
|
74
77
|
"goals": [
|
75
|
-
"
|
76
|
-
"Reduce administrative overhead through intelligent automation",
|
77
|
-
"Create seamless knowledge flow across the organization"
|
78
|
+
"Empower users with great answers to their queries.",
|
78
79
|
],
|
79
|
-
"guidance": "
|
80
|
+
"guidance": "Align all interactions with the success of the user while respecting human dignity."
|
80
81
|
},
|
81
82
|
"mongo": {
|
82
83
|
"connection_string": "mongodb://localhost:27017",
|
@@ -100,26 +101,22 @@ config = {
|
|
100
101
|
],
|
101
102
|
}
|
102
103
|
|
103
|
-
# Create agent with configuration
|
104
104
|
solana_agent = SolanaAgent(config=config)
|
105
105
|
|
106
|
-
# Process a query that can use tools
|
107
106
|
async for response in solana_agent.process("user123", "What are the latest AI developments?"):
|
108
107
|
print(response, end="")
|
109
108
|
```
|
110
109
|
|
111
|
-
## Models Used
|
112
|
-
* The model used for AI Agents is `gpt-4o-mini`
|
113
|
-
* The model used for internal structured outputs is `gpt-4o-mini`
|
114
|
-
* The model used for audio_transcription is `gpt-4o-mini-transcribe`
|
115
|
-
* The model used for tts is `tts-1`
|
116
|
-
|
117
110
|
## Solana Agent Kit
|
118
111
|
|
112
|
+
A collection of Solana Agent tools
|
113
|
+
|
119
114
|
[Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
|
120
115
|
|
121
116
|
## Example App
|
122
117
|
|
118
|
+
A Solana Agent example app written in FastAPI and Next.js
|
119
|
+
|
123
120
|
[Solana Agent Example App](https://github.com/truemagic-coder/solana-agent-app)
|
124
121
|
|
125
122
|
## License
|
@@ -9,20 +9,29 @@
|
|
9
9
|
|
10
10
|

|
11
11
|
|
12
|
+
## Agentic IQ
|
13
|
+
|
14
|
+
Power your business using Solana Agent!
|
15
|
+
|
16
|
+
* **Brand:** AI agents will speak in your brand voice
|
17
|
+
* **Expert:** The AI agent with the most expertise will answer your users' inquiries
|
18
|
+
* **Extend:** Assign tools for your AI agents to perform actions
|
19
|
+
|
12
20
|
## Features
|
13
21
|
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
18
|
-
*
|
22
|
+
* Seamless text and audio streaming with real-time multi-modal processing
|
23
|
+
* Persistent memory that preserves context across all agent interactions
|
24
|
+
* Intelligent query routing to agents with optimal domain expertise
|
25
|
+
* Unified value system ensuring brand-aligned agent responses
|
26
|
+
* Powerful tool integration using standard Python packages
|
27
|
+
* Assigned tools are utilized by agents automatically and effectively
|
19
28
|
|
20
29
|
## Stack
|
21
30
|
|
22
|
-
* [Python](https://python.org) -
|
31
|
+
* [Python](https://python.org) - Programming Language
|
23
32
|
* [OpenAI](https://openai.com) - LLMs
|
24
|
-
* [MongoDB](https://mongodb.com) -
|
25
|
-
* [Zep](https://getzep.com) -
|
33
|
+
* [MongoDB](https://mongodb.com) - Database
|
34
|
+
* [Zep](https://getzep.com) - Conversational Memory
|
26
35
|
|
27
36
|
## Installation
|
28
37
|
|
@@ -30,10 +39,6 @@ You can install Solana Agent using pip:
|
|
30
39
|
|
31
40
|
`pip install solana-agent`
|
32
41
|
|
33
|
-
## Documentation
|
34
|
-
|
35
|
-
Each public method has a docstring for real-time IDE hinting.
|
36
|
-
|
37
42
|
## Example App
|
38
43
|
|
39
44
|
```python
|
@@ -41,19 +46,15 @@ from solana_agent import SolanaAgent
|
|
41
46
|
|
42
47
|
config = {
|
43
48
|
"organization": {
|
44
|
-
"mission_statement": "To
|
49
|
+
"mission_statement": "To provide users with a one-stop shop for their queries.",
|
45
50
|
"values": {
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"Collective Intelligence": "Value diverse perspectives and combine human and AI strengths.",
|
49
|
-
"Continuous Learning": "Embrace feedback and continuously improve based on experience."
|
51
|
+
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
52
|
+
"Ethical": "Agents must use a strong ethical framework in their interactions with users.",
|
50
53
|
},
|
51
54
|
"goals": [
|
52
|
-
"
|
53
|
-
"Reduce administrative overhead through intelligent automation",
|
54
|
-
"Create seamless knowledge flow across the organization"
|
55
|
+
"Empower users with great answers to their queries.",
|
55
56
|
],
|
56
|
-
"guidance": "
|
57
|
+
"guidance": "Align all interactions with the success of the user while respecting human dignity."
|
57
58
|
},
|
58
59
|
"mongo": {
|
59
60
|
"connection_string": "mongodb://localhost:27017",
|
@@ -77,26 +78,22 @@ config = {
|
|
77
78
|
],
|
78
79
|
}
|
79
80
|
|
80
|
-
# Create agent with configuration
|
81
81
|
solana_agent = SolanaAgent(config=config)
|
82
82
|
|
83
|
-
# Process a query that can use tools
|
84
83
|
async for response in solana_agent.process("user123", "What are the latest AI developments?"):
|
85
84
|
print(response, end="")
|
86
85
|
```
|
87
86
|
|
88
|
-
## Models Used
|
89
|
-
* The model used for AI Agents is `gpt-4o-mini`
|
90
|
-
* The model used for internal structured outputs is `gpt-4o-mini`
|
91
|
-
* The model used for audio_transcription is `gpt-4o-mini-transcribe`
|
92
|
-
* The model used for tts is `tts-1`
|
93
|
-
|
94
87
|
## Solana Agent Kit
|
95
88
|
|
89
|
+
A collection of Solana Agent tools
|
90
|
+
|
96
91
|
[Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
|
97
92
|
|
98
93
|
## Example App
|
99
94
|
|
95
|
+
A Solana Agent example app written in FastAPI and Next.js
|
96
|
+
|
100
97
|
[Solana Agent Example App](https://github.com/truemagic-coder/solana-agent-app)
|
101
98
|
|
102
99
|
## License
|
@@ -1,7 +1,7 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "solana-agent"
|
3
|
-
version = "17.0.
|
4
|
-
description = "
|
3
|
+
version = "17.0.8"
|
4
|
+
description = "Agentic IQ"
|
5
5
|
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
|
6
6
|
license = "MIT"
|
7
7
|
readme = "README.md"
|
@@ -18,10 +18,10 @@ python_paths = [".", "tests"]
|
|
18
18
|
|
19
19
|
[tool.poetry.dependencies]
|
20
20
|
python = ">=3.12,<4.0"
|
21
|
-
openai = "^1.68.
|
21
|
+
openai = "^1.68.2"
|
22
22
|
pydantic = "^2.10.6"
|
23
23
|
pymongo = "^4.11.3"
|
24
|
-
zep-cloud = "^2.
|
24
|
+
zep-cloud = "^2.8.0"
|
25
25
|
zep-python = "^2.0.2"
|
26
26
|
|
27
27
|
[tool.poetry.dev-dependencies]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{solana_agent-17.0.5 → solana_agent-17.0.8}/solana_agent/interfaces/providers/data_storage.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|