solana-agent 0.0.12__tar.gz → 0.0.13__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-0.0.12 → solana_agent-0.0.13}/PKG-INFO +1 -1
- {solana_agent-0.0.12 → solana_agent-0.0.13}/pyproject.toml +1 -1
- {solana_agent-0.0.12 → solana_agent-0.0.13}/solana_agent/ai.py +5 -5
- {solana_agent-0.0.12 → solana_agent-0.0.13}/LICENSE +0 -0
- {solana_agent-0.0.12 → solana_agent-0.0.13}/README.md +0 -0
- {solana_agent-0.0.12 → solana_agent-0.0.13}/solana_agent/__init__.py +0 -0
|
@@ -13,7 +13,7 @@ import inspect
|
|
|
13
13
|
import requests
|
|
14
14
|
from zep_cloud.client import AsyncZep
|
|
15
15
|
from zep_cloud.client import Zep
|
|
16
|
-
from zep_cloud.types import Message
|
|
16
|
+
from zep_cloud.types import Message
|
|
17
17
|
import pandas as pd
|
|
18
18
|
from pinecone import Pinecone
|
|
19
19
|
|
|
@@ -696,12 +696,12 @@ class AI:
|
|
|
696
696
|
messages = [
|
|
697
697
|
Message(
|
|
698
698
|
role="user",
|
|
699
|
-
role_type=
|
|
699
|
+
role_type="user",
|
|
700
700
|
content=user_text,
|
|
701
701
|
),
|
|
702
702
|
Message(
|
|
703
703
|
role="assistant",
|
|
704
|
-
role_type=
|
|
704
|
+
role_type="assistant",
|
|
705
705
|
content=full_response,
|
|
706
706
|
),
|
|
707
707
|
]
|
|
@@ -810,12 +810,12 @@ class AI:
|
|
|
810
810
|
messages = [
|
|
811
811
|
Message(
|
|
812
812
|
role="user",
|
|
813
|
-
role_type=
|
|
813
|
+
role_type="user",
|
|
814
814
|
content=transcript,
|
|
815
815
|
),
|
|
816
816
|
Message(
|
|
817
817
|
role="assistant",
|
|
818
|
-
role_type=
|
|
818
|
+
role_type="assistant",
|
|
819
819
|
content=full_response,
|
|
820
820
|
),
|
|
821
821
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|