solana-agent 22.0.5__tar.gz → 22.0.6__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-22.0.5 → solana_agent-22.0.6}/PKG-INFO +12 -20
- {solana_agent-22.0.5 → solana_agent-22.0.6}/README.md +11 -19
- {solana_agent-22.0.5 → solana_agent-22.0.6}/pyproject.toml +1 -1
- {solana_agent-22.0.5 → solana_agent-22.0.6}/LICENSE +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/adapters/llm_adapter.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/client/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/domains/agent.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/domains/routing.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/services/__init__.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/services/agent.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/services/query.py +0 -0
- {solana_agent-22.0.5 → solana_agent-22.0.6}/solana_agent/services/routing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: solana-agent
|
|
3
|
-
Version: 22.0.
|
|
3
|
+
Version: 22.0.6
|
|
4
4
|
Summary: Agentic IQ
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
|
@@ -262,7 +262,12 @@ async for response in solana_agent.process("user123", audio_content, output_form
|
|
|
262
262
|
|
|
263
263
|
Tools can be used from plugins like Solana Agent Kit (sakit) or via custom inline tools. Tools available via plugins integrate automatically with Solana Agent.
|
|
264
264
|
|
|
265
|
-
|
|
265
|
+
* Agents can only call one tool per response
|
|
266
|
+
* Agents choose the best tool for the job
|
|
267
|
+
* Tools do not use OpenAI function calling
|
|
268
|
+
* Tools are async functions
|
|
269
|
+
|
|
270
|
+
### Tool Usage Example
|
|
266
271
|
|
|
267
272
|
`pip install sakit`
|
|
268
273
|
|
|
@@ -379,11 +384,13 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
|
379
384
|
print(response, end="")
|
|
380
385
|
```
|
|
381
386
|
|
|
382
|
-
## Training
|
|
387
|
+
## Agent Training
|
|
383
388
|
|
|
384
389
|
Many use-cases for Solana Agent require training your agents on your company data.
|
|
385
390
|
|
|
386
|
-
This can be accomplished via runtime prompt injection. Integrations that work well with this method are
|
|
391
|
+
This can be accomplished via runtime prompt injection. Integrations that work well with this method are vector stores like Pinecone and FAQs.
|
|
392
|
+
|
|
393
|
+
This knowledge applies to all your AI agents.
|
|
387
394
|
|
|
388
395
|
```python
|
|
389
396
|
from solana_agent import SolanaAgent
|
|
@@ -393,11 +400,6 @@ config = {
|
|
|
393
400
|
"api_key": "your-openai-api-key",
|
|
394
401
|
},
|
|
395
402
|
"agents": [
|
|
396
|
-
{
|
|
397
|
-
"name": "research_specialist",
|
|
398
|
-
"instructions": "You are an expert researcher who synthesizes complex information clearly.",
|
|
399
|
-
"specialization": "Research and knowledge synthesis",
|
|
400
|
-
},
|
|
401
403
|
{
|
|
402
404
|
"name": "customer_support",
|
|
403
405
|
"instructions": "You provide friendly, helpful customer support responses.",
|
|
@@ -408,7 +410,7 @@ config = {
|
|
|
408
410
|
|
|
409
411
|
solana_agent = SolanaAgent(config=config)
|
|
410
412
|
|
|
411
|
-
async for response in solana_agent.process("user123", "
|
|
413
|
+
async for response in solana_agent.process("user123", "How do replace the latch on my dishwasher?", "This is my corporate appliance fixing FAQ"):
|
|
412
414
|
print(response, end="")
|
|
413
415
|
```
|
|
414
416
|
|
|
@@ -455,16 +457,6 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
|
455
457
|
print(response, end="")
|
|
456
458
|
```
|
|
457
459
|
|
|
458
|
-
## Notes
|
|
459
|
-
* Solana Agent agents can only call one tool per response.
|
|
460
|
-
* Solana Agent agents choose the best tool for the job.
|
|
461
|
-
* Solana Agent tools do not use OpenAI function calling.
|
|
462
|
-
* Solana Agent tools are async functions.
|
|
463
|
-
|
|
464
|
-
## Local Setup
|
|
465
|
-
|
|
466
|
-
A Docker Compose and Zep Config file is available at the root of this project
|
|
467
|
-
|
|
468
460
|
## API Documentation
|
|
469
461
|
|
|
470
462
|
The official up-to-date documentation site
|
|
@@ -238,7 +238,12 @@ async for response in solana_agent.process("user123", audio_content, output_form
|
|
|
238
238
|
|
|
239
239
|
Tools can be used from plugins like Solana Agent Kit (sakit) or via custom inline tools. Tools available via plugins integrate automatically with Solana Agent.
|
|
240
240
|
|
|
241
|
-
|
|
241
|
+
* Agents can only call one tool per response
|
|
242
|
+
* Agents choose the best tool for the job
|
|
243
|
+
* Tools do not use OpenAI function calling
|
|
244
|
+
* Tools are async functions
|
|
245
|
+
|
|
246
|
+
### Tool Usage Example
|
|
242
247
|
|
|
243
248
|
`pip install sakit`
|
|
244
249
|
|
|
@@ -355,11 +360,13 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
|
355
360
|
print(response, end="")
|
|
356
361
|
```
|
|
357
362
|
|
|
358
|
-
## Training
|
|
363
|
+
## Agent Training
|
|
359
364
|
|
|
360
365
|
Many use-cases for Solana Agent require training your agents on your company data.
|
|
361
366
|
|
|
362
|
-
This can be accomplished via runtime prompt injection. Integrations that work well with this method are
|
|
367
|
+
This can be accomplished via runtime prompt injection. Integrations that work well with this method are vector stores like Pinecone and FAQs.
|
|
368
|
+
|
|
369
|
+
This knowledge applies to all your AI agents.
|
|
363
370
|
|
|
364
371
|
```python
|
|
365
372
|
from solana_agent import SolanaAgent
|
|
@@ -369,11 +376,6 @@ config = {
|
|
|
369
376
|
"api_key": "your-openai-api-key",
|
|
370
377
|
},
|
|
371
378
|
"agents": [
|
|
372
|
-
{
|
|
373
|
-
"name": "research_specialist",
|
|
374
|
-
"instructions": "You are an expert researcher who synthesizes complex information clearly.",
|
|
375
|
-
"specialization": "Research and knowledge synthesis",
|
|
376
|
-
},
|
|
377
379
|
{
|
|
378
380
|
"name": "customer_support",
|
|
379
381
|
"instructions": "You provide friendly, helpful customer support responses.",
|
|
@@ -384,7 +386,7 @@ config = {
|
|
|
384
386
|
|
|
385
387
|
solana_agent = SolanaAgent(config=config)
|
|
386
388
|
|
|
387
|
-
async for response in solana_agent.process("user123", "
|
|
389
|
+
async for response in solana_agent.process("user123", "How do replace the latch on my dishwasher?", "This is my corporate appliance fixing FAQ"):
|
|
388
390
|
print(response, end="")
|
|
389
391
|
```
|
|
390
392
|
|
|
@@ -431,16 +433,6 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
|
431
433
|
print(response, end="")
|
|
432
434
|
```
|
|
433
435
|
|
|
434
|
-
## Notes
|
|
435
|
-
* Solana Agent agents can only call one tool per response.
|
|
436
|
-
* Solana Agent agents choose the best tool for the job.
|
|
437
|
-
* Solana Agent tools do not use OpenAI function calling.
|
|
438
|
-
* Solana Agent tools are async functions.
|
|
439
|
-
|
|
440
|
-
## Local Setup
|
|
441
|
-
|
|
442
|
-
A Docker Compose and Zep Config file is available at the root of this project
|
|
443
|
-
|
|
444
436
|
## API Documentation
|
|
445
437
|
|
|
446
438
|
The official up-to-date documentation site
|
|
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-22.0.5 → solana_agent-22.0.6}/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
|