solana-agent 1.0.0__tar.gz → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Build self-learning AI Agents
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents
@@ -45,7 +45,7 @@ Unlike traditional AI assistants that forget conversations after each session, S
45
45
  - 🏢 **Enterprise-Ready**: Scales from personal to organization-wide deployment
46
46
  - 🛡️ **Secure**: Secure and private memory and data storage
47
47
 
48
- **"It's not just an AI assistant - it's your organization's evolving intelligence layer."**
48
+ **Experience Agentic IQ!**
49
49
 
50
50
  ## Features
51
51
 
@@ -19,7 +19,7 @@ Unlike traditional AI assistants that forget conversations after each session, S
19
19
  - 🏢 **Enterprise-Ready**: Scales from personal to organization-wide deployment
20
20
  - 🛡️ **Secure**: Secure and private memory and data storage
21
21
 
22
- **"It's not just an AI assistant - it's your organization's evolving intelligence layer."**
22
+ **Experience Agentic IQ!**
23
23
 
24
24
  ## Features
25
25
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "1.0.0"
3
+ version = "1.0.2"
4
4
  description = "Build self-learning AI Agents"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -215,7 +215,7 @@ class AI:
215
215
  user_id="user123",
216
216
  query="How many cats do I have?"
217
217
  )
218
- # Returns: [{"fact": "user123 has 4 cats", ...}]
218
+ # Returns: [{"fact": "user123 has 4 cats", "timestamp": "2022-01-01T12:00:00Z"}]
219
219
  ```
220
220
 
221
221
  Note:
@@ -232,8 +232,9 @@ class AI:
232
232
  limit=limit,
233
233
  )
234
234
  for result in results.results:
235
- fact = result.fact
236
- facts.append(fact)
235
+ fact = result.fact.fact
236
+ timestamp = result.fact.created_at
237
+ facts.append({"fact": fact, "timestamp": timestamp})
237
238
  return json.dumps(facts)
238
239
  except Exception as e:
239
240
  return f"Failed to search facts. Error: {e}"
File without changes