solana-agent 20.1.1__py3-none-any.whl → 20.1.2__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.1.dist-info → solana_agent-20.1.2.dist-info}/METADATA +28 -7
- {solana_agent-20.1.1.dist-info → solana_agent-20.1.2.dist-info}/RECORD +4 -4
- {solana_agent-20.1.1.dist-info → solana_agent-20.1.2.dist-info}/LICENSE +0 -0
- {solana_agent-20.1.1.dist-info → solana_agent-20.1.2.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.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
|
},
|
@@ -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.2.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
33
|
+
solana_agent-20.1.2.dist-info/METADATA,sha256=y7oFOfQr9TJPAAHWslK14bhQkbtER9y4V1wMIaVvagY,13966
|
34
|
+
solana_agent-20.1.2.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
35
|
+
solana_agent-20.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|