solana-agent 23.0.5__py3-none-any.whl → 23.0.7__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-23.0.5.dist-info → solana_agent-23.0.7.dist-info}/METADATA +14 -5
- {solana_agent-23.0.5.dist-info → solana_agent-23.0.7.dist-info}/RECORD +4 -4
- {solana_agent-23.0.5.dist-info → solana_agent-23.0.7.dist-info}/LICENSE +0 -0
- {solana_agent-23.0.5.dist-info → solana_agent-23.0.7.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 23.0.
|
3
|
+
Version: 23.0.7
|
4
4
|
Summary: Agentic IQ
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -70,11 +70,20 @@ Build your AI business in three lines of code!
|
|
70
70
|
|
71
71
|
## Stack
|
72
72
|
|
73
|
+
### Tech
|
74
|
+
|
73
75
|
* [Python](https://python.org) - Programming Language
|
74
76
|
* [OpenAI](https://openai.com) - LLM Provider
|
75
77
|
* [MongoDB](https://mongodb.com) - Conversational History (optional)
|
76
78
|
* [Zep Cloud](https://getzep.com) - Conversational Memory (optional)
|
77
79
|
|
80
|
+
### LLMs
|
81
|
+
|
82
|
+
* [gpt-4o-mini](https://platform.openai.com/docs/models/gpt-4o-mini)
|
83
|
+
* [gpt-4o-mini-tts](https://platform.openai.com/docs/models/gpt-4o-mini-tts)
|
84
|
+
* [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe)
|
85
|
+
* [gpt-4o-mini-search-preview](https://platform.openai.com/docs/models/gpt-4o-mini-search-preview)
|
86
|
+
|
78
87
|
## Installation
|
79
88
|
|
80
89
|
You can install Solana Agent using pip:
|
@@ -89,7 +98,7 @@ An agent can have multiple tools and will choose the best one to answer the user
|
|
89
98
|
|
90
99
|
Routing is determined by optimal domain expertise of the agent for the user query.
|
91
100
|
|
92
|
-
When the agent uses a tool it feeds the tool output back
|
101
|
+
When the agent uses a tool it feeds the tool output back to itself to generate the final response.
|
93
102
|
|
94
103
|
This is important as tools generally output unstructured and unformatted data that the agent needs to prepare for the user.
|
95
104
|
|
@@ -348,11 +357,11 @@ API Calls:
|
|
348
357
|
|
349
358
|
This mode is great for text output where the default response from OpenAI is enough.
|
350
359
|
|
351
|
-
|
360
|
+
It is not suitable for audio as the OpenAI search results contain links and markdown.
|
352
361
|
|
353
|
-
|
362
|
+
Also it may not call tools when they should be called as it thinks the search results answer the user query.
|
354
363
|
|
355
|
-
|
364
|
+
It is much faster than calling `search_internet` from `sakit` as it saves 2 API calls.
|
356
365
|
|
357
366
|
```python
|
358
367
|
async for response in solana_agent.process("user123", "What is the latest news on Canada?", internet_search=True):
|
@@ -29,7 +29,7 @@ solana_agent/services/__init__.py,sha256=ab_NXJmwYUCmCrCzuTlZ47bJZINW0Y0F5jfQ9Oo
|
|
29
29
|
solana_agent/services/agent.py,sha256=-u2rtu6w_0BQoHPFU3GdLuZLinQzQ0cpktOUsCRcbUU,20048
|
30
30
|
solana_agent/services/query.py,sha256=6K5RcxoHXaKMvxmDPo_WInRYtjOKJ8In4BgdLhzc_98,11363
|
31
31
|
solana_agent/services/routing.py,sha256=PMCSG5m3uLMaHMj3dxNvNfcFZaeaDi7kMr7AEBCzwDE,6499
|
32
|
-
solana_agent-23.0.
|
33
|
-
solana_agent-23.0.
|
34
|
-
solana_agent-23.0.
|
35
|
-
solana_agent-23.0.
|
32
|
+
solana_agent-23.0.7.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
33
|
+
solana_agent-23.0.7.dist-info/METADATA,sha256=D4x8ji7WuLa_OSYx5gtfTKFFOkZKki5ptvOUYfTqE8M,20857
|
34
|
+
solana_agent-23.0.7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
35
|
+
solana_agent-23.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|