solana-agent 20.1.1__tar.gz → 20.1.3__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.
Files changed (35) hide show
  1. {solana_agent-20.1.1 → solana_agent-20.1.3}/PKG-INFO +69 -7
  2. {solana_agent-20.1.1 → solana_agent-20.1.3}/README.md +68 -6
  3. {solana_agent-20.1.1 → solana_agent-20.1.3}/pyproject.toml +1 -1
  4. {solana_agent-20.1.1 → solana_agent-20.1.3}/LICENSE +0 -0
  5. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/__init__.py +0 -0
  6. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/adapters/llm_adapter.py +0 -0
  8. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/adapters/mongodb_adapter.py +0 -0
  9. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/client/__init__.py +0 -0
  10. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/client/solana_agent.py +0 -0
  11. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/domains/__init__.py +0 -0
  12. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/domains/agent.py +0 -0
  13. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/domains/routing.py +0 -0
  14. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/factories/__init__.py +0 -0
  15. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/factories/agent_factory.py +0 -0
  16. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/services/query.py +0 -0
  35. {solana_agent-20.1.1 → solana_agent-20.1.3}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 20.1.1
3
+ Version: 20.1.3
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -48,6 +48,7 @@ Build your AI business in three lines of code!
48
48
  * Extensible Tooling
49
49
  * Simple Business Definition
50
50
  * Tested & Secure
51
+ * Support for MCP
51
52
  * Built in Python
52
53
  * Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
53
54
 
@@ -61,6 +62,7 @@ Build your AI business in three lines of code!
61
62
  * Powerful tool integration using standard Python packages and/or inline classes
62
63
  * Assigned tools are utilized by agents automatically and effectively
63
64
  * Simple business definition using JSON
65
+ * Ability to access any MCP via a URL
64
66
 
65
67
  ## Stack
66
68
 
@@ -77,13 +79,11 @@ You can install Solana Agent using pip:
77
79
 
78
80
  ## Usage
79
81
 
80
- ### Text/Text Streaming
82
+ ### Business Alignment Config - Optional
81
83
 
82
84
  ```python
83
- from solana_agent import SolanaAgent
84
-
85
85
  config = {
86
- "business": { # optional
86
+ "business": {
87
87
  "mission": "To provide users with a one-stop shop for their queries.",
88
88
  "values": {
89
89
  "Friendliness": "Users must be treated fairly, openly, and with friendliness.",
@@ -94,14 +94,37 @@ config = {
94
94
  ],
95
95
  "voice": "The voice of the brand is that of a research business."
96
96
  },
97
- "mongo": { # optional
97
+ }
98
+ ```
99
+
100
+ ### Conversational History Config - Optional
101
+
102
+ ```python
103
+ config = {
104
+ "mongo": {
98
105
  "connection_string": "mongodb://localhost:27017",
99
106
  "database": "solana_agent"
100
107
  },
101
- "zep": { # optional
108
+ }
109
+ ```
110
+
111
+ ### Conversational Memory Config - Optional
112
+
113
+ ```python
114
+ config = {
115
+ "zep": {
102
116
  "api_key": "your-zep-api-key",
103
117
  "base_url": "your-zep-base-url", # not applicable if using Zep Cloud
104
118
  },
119
+ }
120
+ ```
121
+
122
+ ### Text/Text Streaming
123
+
124
+ ```python
125
+ from solana_agent import SolanaAgent
126
+
127
+ config = {
105
128
  "openai": {
106
129
  "api_key": "your-openai-api-key",
107
130
  },
@@ -222,6 +245,7 @@ Plugins like Solana Agent Kit (sakit) integrate automatically with Solana Agent.
222
245
 
223
246
  `pip install sakit`
224
247
 
248
+ #### Internet Search
225
249
  ```python
226
250
  from solana_agent import SolanaAgent
227
251
 
@@ -257,6 +281,44 @@ async for response in solana_agent.process("user123", "What are the latest AI de
257
281
  print(response, end="")
258
282
  ```
259
283
 
284
+ #### MCP
285
+ ```python
286
+ from solana_agent import SolanaAgent
287
+
288
+ config = {
289
+ "openai": {
290
+ "api_key": "your-openai-api-key",
291
+ },
292
+ "tools": {
293
+ "mcp": {
294
+ "server_urls": [
295
+ "http://mcp-server1.com/mcp",
296
+ "http://mcp-server2.com/mcp",
297
+ "http://mcp-server3.com/mcp"
298
+ ]
299
+ }
300
+ },
301
+ "agents": [
302
+ {
303
+ "name": "research_specialist",
304
+ "instructions": "You are an expert researcher who synthesizes complex information clearly.",
305
+ "specialization": "Research and knowledge synthesis",
306
+ "tools": ["mcp"],
307
+ },
308
+ {
309
+ "name": "customer_support",
310
+ "instructions": "You provide friendly, helpful customer support responses.",
311
+ "specialization": "Customer inquiries",
312
+ }
313
+ ],
314
+ }
315
+
316
+ solana_agent = SolanaAgent(config=config)
317
+
318
+ async for response in solana_agent.process("user123", "What are the latest AI developments?"):
319
+ print(response, end="")
320
+ ```
321
+
260
322
  To create a plugin like Solana Agent Kit - read the [code](https://github.com/truemagic-coder/solana-agent-kit)
261
323
 
262
324
  ### Custom Inline Tools
@@ -23,6 +23,7 @@ Build your AI business in three lines of code!
23
23
  * Extensible Tooling
24
24
  * Simple Business Definition
25
25
  * Tested & Secure
26
+ * Support for MCP
26
27
  * Built in Python
27
28
  * Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
28
29
 
@@ -36,6 +37,7 @@ Build your AI business in three lines of code!
36
37
  * Powerful tool integration using standard Python packages and/or inline classes
37
38
  * Assigned tools are utilized by agents automatically and effectively
38
39
  * Simple business definition using JSON
40
+ * Ability to access any MCP via a URL
39
41
 
40
42
  ## Stack
41
43
 
@@ -52,13 +54,11 @@ You can install Solana Agent using pip:
52
54
 
53
55
  ## Usage
54
56
 
55
- ### Text/Text Streaming
57
+ ### Business Alignment Config - Optional
56
58
 
57
59
  ```python
58
- from solana_agent import SolanaAgent
59
-
60
60
  config = {
61
- "business": { # optional
61
+ "business": {
62
62
  "mission": "To provide users with a one-stop shop for their queries.",
63
63
  "values": {
64
64
  "Friendliness": "Users must be treated fairly, openly, and with friendliness.",
@@ -69,14 +69,37 @@ config = {
69
69
  ],
70
70
  "voice": "The voice of the brand is that of a research business."
71
71
  },
72
- "mongo": { # optional
72
+ }
73
+ ```
74
+
75
+ ### Conversational History Config - Optional
76
+
77
+ ```python
78
+ config = {
79
+ "mongo": {
73
80
  "connection_string": "mongodb://localhost:27017",
74
81
  "database": "solana_agent"
75
82
  },
76
- "zep": { # optional
83
+ }
84
+ ```
85
+
86
+ ### Conversational Memory Config - Optional
87
+
88
+ ```python
89
+ config = {
90
+ "zep": {
77
91
  "api_key": "your-zep-api-key",
78
92
  "base_url": "your-zep-base-url", # not applicable if using Zep Cloud
79
93
  },
94
+ }
95
+ ```
96
+
97
+ ### Text/Text Streaming
98
+
99
+ ```python
100
+ from solana_agent import SolanaAgent
101
+
102
+ config = {
80
103
  "openai": {
81
104
  "api_key": "your-openai-api-key",
82
105
  },
@@ -197,6 +220,7 @@ Plugins like Solana Agent Kit (sakit) integrate automatically with Solana Agent.
197
220
 
198
221
  `pip install sakit`
199
222
 
223
+ #### Internet Search
200
224
  ```python
201
225
  from solana_agent import SolanaAgent
202
226
 
@@ -232,6 +256,44 @@ async for response in solana_agent.process("user123", "What are the latest AI de
232
256
  print(response, end="")
233
257
  ```
234
258
 
259
+ #### MCP
260
+ ```python
261
+ from solana_agent import SolanaAgent
262
+
263
+ config = {
264
+ "openai": {
265
+ "api_key": "your-openai-api-key",
266
+ },
267
+ "tools": {
268
+ "mcp": {
269
+ "server_urls": [
270
+ "http://mcp-server1.com/mcp",
271
+ "http://mcp-server2.com/mcp",
272
+ "http://mcp-server3.com/mcp"
273
+ ]
274
+ }
275
+ },
276
+ "agents": [
277
+ {
278
+ "name": "research_specialist",
279
+ "instructions": "You are an expert researcher who synthesizes complex information clearly.",
280
+ "specialization": "Research and knowledge synthesis",
281
+ "tools": ["mcp"],
282
+ },
283
+ {
284
+ "name": "customer_support",
285
+ "instructions": "You provide friendly, helpful customer support responses.",
286
+ "specialization": "Customer inquiries",
287
+ }
288
+ ],
289
+ }
290
+
291
+ solana_agent = SolanaAgent(config=config)
292
+
293
+ async for response in solana_agent.process("user123", "What are the latest AI developments?"):
294
+ print(response, end="")
295
+ ```
296
+
235
297
  To create a plugin like Solana Agent Kit - read the [code](https://github.com/truemagic-coder/solana-agent-kit)
236
298
 
237
299
  ### Custom Inline Tools
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "20.1.1"
3
+ version = "20.1.3"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes