solana-agent 20.1.1__tar.gz → 20.1.2__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-20.1.1 → solana_agent-20.1.2}/PKG-INFO +28 -7
- {solana_agent-20.1.1 → solana_agent-20.1.2}/README.md +27 -6
- {solana_agent-20.1.1 → solana_agent-20.1.2}/pyproject.toml +1 -1
- {solana_agent-20.1.1 → solana_agent-20.1.2}/LICENSE +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/adapters/llm_adapter.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/client/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/domains/agent.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/domains/routing.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/services/__init__.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/services/agent.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/solana_agent/services/query.py +0 -0
- {solana_agent-20.1.1 → solana_agent-20.1.2}/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.
|
3
|
+
Version: 20.1.2
|
4
4
|
Summary: Agentic IQ
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -77,13 +77,11 @@ You can install Solana Agent using pip:
|
|
77
77
|
|
78
78
|
## Usage
|
79
79
|
|
80
|
-
###
|
80
|
+
### Business Alignment Config - Optional
|
81
81
|
|
82
82
|
```python
|
83
|
-
from solana_agent import SolanaAgent
|
84
|
-
|
85
83
|
config = {
|
86
|
-
"business": {
|
84
|
+
"business": {
|
87
85
|
"mission": "To provide users with a one-stop shop for their queries.",
|
88
86
|
"values": {
|
89
87
|
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
@@ -94,14 +92,37 @@ config = {
|
|
94
92
|
],
|
95
93
|
"voice": "The voice of the brand is that of a research business."
|
96
94
|
},
|
97
|
-
|
95
|
+
}
|
96
|
+
```
|
97
|
+
|
98
|
+
### Conversational History Config - Optional
|
99
|
+
|
100
|
+
```python
|
101
|
+
config = {
|
102
|
+
"mongo": {
|
98
103
|
"connection_string": "mongodb://localhost:27017",
|
99
104
|
"database": "solana_agent"
|
100
105
|
},
|
101
|
-
|
106
|
+
}
|
107
|
+
```
|
108
|
+
|
109
|
+
### Conversational Memory Config - Optional
|
110
|
+
|
111
|
+
```python
|
112
|
+
config = {
|
113
|
+
"zep": {
|
102
114
|
"api_key": "your-zep-api-key",
|
103
115
|
"base_url": "your-zep-base-url", # not applicable if using Zep Cloud
|
104
116
|
},
|
117
|
+
}
|
118
|
+
```
|
119
|
+
|
120
|
+
### Text/Text Streaming
|
121
|
+
|
122
|
+
```python
|
123
|
+
from solana_agent import SolanaAgent
|
124
|
+
|
125
|
+
config = {
|
105
126
|
"openai": {
|
106
127
|
"api_key": "your-openai-api-key",
|
107
128
|
},
|
@@ -52,13 +52,11 @@ You can install Solana Agent using pip:
|
|
52
52
|
|
53
53
|
## Usage
|
54
54
|
|
55
|
-
###
|
55
|
+
### Business Alignment Config - Optional
|
56
56
|
|
57
57
|
```python
|
58
|
-
from solana_agent import SolanaAgent
|
59
|
-
|
60
58
|
config = {
|
61
|
-
"business": {
|
59
|
+
"business": {
|
62
60
|
"mission": "To provide users with a one-stop shop for their queries.",
|
63
61
|
"values": {
|
64
62
|
"Friendliness": "Users must be treated fairly, openly, and with friendliness.",
|
@@ -69,14 +67,37 @@ config = {
|
|
69
67
|
],
|
70
68
|
"voice": "The voice of the brand is that of a research business."
|
71
69
|
},
|
72
|
-
|
70
|
+
}
|
71
|
+
```
|
72
|
+
|
73
|
+
### Conversational History Config - Optional
|
74
|
+
|
75
|
+
```python
|
76
|
+
config = {
|
77
|
+
"mongo": {
|
73
78
|
"connection_string": "mongodb://localhost:27017",
|
74
79
|
"database": "solana_agent"
|
75
80
|
},
|
76
|
-
|
81
|
+
}
|
82
|
+
```
|
83
|
+
|
84
|
+
### Conversational Memory Config - Optional
|
85
|
+
|
86
|
+
```python
|
87
|
+
config = {
|
88
|
+
"zep": {
|
77
89
|
"api_key": "your-zep-api-key",
|
78
90
|
"base_url": "your-zep-base-url", # not applicable if using Zep Cloud
|
79
91
|
},
|
92
|
+
}
|
93
|
+
```
|
94
|
+
|
95
|
+
### Text/Text Streaming
|
96
|
+
|
97
|
+
```python
|
98
|
+
from solana_agent import SolanaAgent
|
99
|
+
|
100
|
+
config = {
|
80
101
|
"openai": {
|
81
102
|
"api_key": "your-openai-api-key",
|
82
103
|
},
|
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-20.1.1 → solana_agent-20.1.2}/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
|