solana-agent 20.1.3__py3-none-any.whl → 20.1.5__py3-none-any.whl
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-20.1.3.dist-info → solana_agent-20.1.5.dist-info}/METADATA +55 -48
- {solana_agent-20.1.3.dist-info → solana_agent-20.1.5.dist-info}/RECORD +4 -4
- {solana_agent-20.1.3.dist-info → solana_agent-20.1.5.dist-info}/LICENSE +0 -0
- {solana_agent-20.1.3.dist-info → solana_agent-20.1.5.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 20.1.
|
3
|
+
Version: 20.1.5
|
4
4
|
Summary: Agentic IQ
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -40,7 +40,8 @@ Description-Content-Type: text/markdown
|
|
40
40
|
Build your AI business in three lines of code!
|
41
41
|
|
42
42
|
## Why?
|
43
|
-
* Three lines of code
|
43
|
+
* Three lines of code setup
|
44
|
+
* Multi-Agent Swarm
|
44
45
|
* Multi-Modal Streaming
|
45
46
|
* Conversational Memory & History
|
46
47
|
* Intelligent Routing
|
@@ -48,21 +49,23 @@ Build your AI business in three lines of code!
|
|
48
49
|
* Extensible Tooling
|
49
50
|
* Simple Business Definition
|
50
51
|
* Tested & Secure
|
51
|
-
* Support for MCP
|
52
|
+
* Support for MCP Servers
|
52
53
|
* Built in Python
|
53
54
|
* Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
|
54
55
|
|
55
56
|
## Features
|
56
57
|
|
58
|
+
* Easy three lines of code setup
|
59
|
+
* Designed for a multi-agent swarm
|
57
60
|
* Seamless text and audio streaming with real-time multi-modal processing
|
58
61
|
* Persistent memory that preserves context across all agent interactions
|
59
62
|
* Streamlined message history for all agent interactions
|
60
63
|
* Intelligent query routing to agents with optimal domain expertise or your own custom routing
|
61
64
|
* Unified value system ensuring brand-aligned agent responses
|
62
|
-
* Powerful tool integration using standard Python packages and/or inline
|
65
|
+
* Powerful tool integration using standard Python packages and/or inline tools
|
63
66
|
* Assigned tools are utilized by agents automatically and effectively
|
64
67
|
* Simple business definition using JSON
|
65
|
-
* Ability to access any MCP via
|
68
|
+
* Ability to access any MCP server via URL
|
66
69
|
|
67
70
|
## Stack
|
68
71
|
|
@@ -79,46 +82,6 @@ You can install Solana Agent using pip:
|
|
79
82
|
|
80
83
|
## Usage
|
81
84
|
|
82
|
-
### Business Alignment Config - Optional
|
83
|
-
|
84
|
-
```python
|
85
|
-
config = {
|
86
|
-
"business": {
|
87
|
-
"mission": "To provide users with a one-stop shop for their queries.",
|
88
|
-
"values": {
|
89
|
-
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
90
|
-
"Ethical": "Agents must use a strong ethical framework in their interactions with users.",
|
91
|
-
},
|
92
|
-
"goals": [
|
93
|
-
"Empower users with great answers to their queries.",
|
94
|
-
],
|
95
|
-
"voice": "The voice of the brand is that of a research business."
|
96
|
-
},
|
97
|
-
}
|
98
|
-
```
|
99
|
-
|
100
|
-
### Conversational History Config - Optional
|
101
|
-
|
102
|
-
```python
|
103
|
-
config = {
|
104
|
-
"mongo": {
|
105
|
-
"connection_string": "mongodb://localhost:27017",
|
106
|
-
"database": "solana_agent"
|
107
|
-
},
|
108
|
-
}
|
109
|
-
```
|
110
|
-
|
111
|
-
### Conversational Memory Config - Optional
|
112
|
-
|
113
|
-
```python
|
114
|
-
config = {
|
115
|
-
"zep": {
|
116
|
-
"api_key": "your-zep-api-key",
|
117
|
-
"base_url": "your-zep-base-url", # not applicable if using Zep Cloud
|
118
|
-
},
|
119
|
-
}
|
120
|
-
```
|
121
|
-
|
122
85
|
### Text/Text Streaming
|
123
86
|
|
124
87
|
```python
|
@@ -239,13 +202,55 @@ async for response in solana_agent.process("user123", audio_content, audio_input
|
|
239
202
|
print(response, end="")
|
240
203
|
```
|
241
204
|
|
242
|
-
|
205
|
+
## Optional Feature Configs
|
206
|
+
|
207
|
+
### Business Alignment
|
208
|
+
|
209
|
+
```python
|
210
|
+
config = {
|
211
|
+
"business": {
|
212
|
+
"mission": "To provide users with a one-stop shop for their queries.",
|
213
|
+
"values": {
|
214
|
+
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
215
|
+
"Ethical": "Agents must use a strong ethical framework in their interactions with users.",
|
216
|
+
},
|
217
|
+
"goals": [
|
218
|
+
"Empower users with great answers to their queries.",
|
219
|
+
],
|
220
|
+
"voice": "The voice of the brand is that of a research business."
|
221
|
+
},
|
222
|
+
}
|
223
|
+
```
|
224
|
+
|
225
|
+
### Conversational History
|
226
|
+
|
227
|
+
```python
|
228
|
+
config = {
|
229
|
+
"mongo": {
|
230
|
+
"connection_string": "mongodb://localhost:27017",
|
231
|
+
"database": "solana_agent"
|
232
|
+
},
|
233
|
+
}
|
234
|
+
```
|
235
|
+
|
236
|
+
### Conversational Memory
|
237
|
+
|
238
|
+
```python
|
239
|
+
config = {
|
240
|
+
"zep": {
|
241
|
+
"api_key": "your-zep-api-key",
|
242
|
+
"base_url": "your-zep-base-url", # not applicable if using Zep Cloud
|
243
|
+
},
|
244
|
+
}
|
245
|
+
```
|
246
|
+
|
247
|
+
## Plugins
|
243
248
|
|
244
249
|
Plugins like Solana Agent Kit (sakit) integrate automatically with Solana Agent.
|
245
250
|
|
246
251
|
`pip install sakit`
|
247
252
|
|
248
|
-
|
253
|
+
### Internet Search
|
249
254
|
```python
|
250
255
|
from solana_agent import SolanaAgent
|
251
256
|
|
@@ -281,7 +286,7 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
281
286
|
print(response, end="")
|
282
287
|
```
|
283
288
|
|
284
|
-
|
289
|
+
### MCP
|
285
290
|
```python
|
286
291
|
from solana_agent import SolanaAgent
|
287
292
|
|
@@ -321,6 +326,8 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
321
326
|
|
322
327
|
To create a plugin like Solana Agent Kit - read the [code](https://github.com/truemagic-coder/solana-agent-kit)
|
323
328
|
|
329
|
+
## Advanced
|
330
|
+
|
324
331
|
### Custom Inline Tools
|
325
332
|
|
326
333
|
```python
|
@@ -29,7 +29,7 @@ solana_agent/services/__init__.py,sha256=ab_NXJmwYUCmCrCzuTlZ47bJZINW0Y0F5jfQ9Oo
|
|
29
29
|
solana_agent/services/agent.py,sha256=MdSPIC81JNuP2hfzXNGWOnRfe7OxwYHgDVZAphVCCo8,16450
|
30
30
|
solana_agent/services/query.py,sha256=QduAeiltFTwNDlAbC_emu544U4XGNioj-OauRGt9HSY,11070
|
31
31
|
solana_agent/services/routing.py,sha256=PMCSG5m3uLMaHMj3dxNvNfcFZaeaDi7kMr7AEBCzwDE,6499
|
32
|
-
solana_agent-20.1.
|
33
|
-
solana_agent-20.1.
|
34
|
-
solana_agent-20.1.
|
35
|
-
solana_agent-20.1.
|
32
|
+
solana_agent-20.1.5.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
33
|
+
solana_agent-20.1.5.dist-info/METADATA,sha256=d4O8A4zphlKMiD4jEUIOQ6slbXlDbmMfAAk0e1_ZLs4,15150
|
34
|
+
solana_agent-20.1.5.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
35
|
+
solana_agent-20.1.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|