mezoAgent 0.6.0__py3-none-any.whl → 0.6.1__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.
- {mezoAgent-0.6.0.dist-info → mezoAgent-0.6.1.dist-info}/METADATA +1 -1
- {mezoAgent-0.6.0.dist-info → mezoAgent-0.6.1.dist-info}/RECORD +6 -6
- mezo_agent/token_balance_tool.py +1 -1
- mezo_agent/token_price_tool.py +2 -1
- {mezoAgent-0.6.0.dist-info → mezoAgent-0.6.1.dist-info}/WHEEL +0 -0
- {mezoAgent-0.6.0.dist-info → mezoAgent-0.6.1.dist-info}/top_level.txt +0 -0
@@ -4,12 +4,12 @@ mezo_agent/chat.py,sha256=ZtNurUDV7UzJjbFyU96DNGy37hO3gl0osn19mRu7ER8,859
|
|
4
4
|
mezo_agent/config.py,sha256=6xFgk80eiBLTasKGW73Ne8hNhMtx8BbQ_Ef79YOyDlc,3233
|
5
5
|
mezo_agent/parsing.py,sha256=dnS5Qw9V8qvSA_IPgn6nCUnyEfZP9TphO8DnH8oUuiM,5080
|
6
6
|
mezo_agent/swap_musd_btc.py,sha256=Co-XcfK73spm94VC6qzGY0VYoGwsMDKKHM8ToGh2JxU,4289
|
7
|
-
mezo_agent/token_balance_tool.py,sha256=
|
8
|
-
mezo_agent/token_price_tool.py,sha256=
|
7
|
+
mezo_agent/token_balance_tool.py,sha256=vWWvZxJWPFX05ENIcr5mCwW6r8OVzV21iDrXRKkRBRc,1463
|
8
|
+
mezo_agent/token_price_tool.py,sha256=MAJsRv0xJcmpIatxoXI6_hoBPVPXcJMEyzSoX-p9l-Q,916
|
9
9
|
mezo_agent/transaction.py,sha256=YpfWrkEaf0YGM_Kc4cFwlT9GmBGZkeJHWm0VGHs9Gks,4199
|
10
10
|
mezo_agent/utils.py,sha256=XRq--PRJbWlG9kpz99QHWu7mLpYY4MYblm38U1xK4YE,2381
|
11
11
|
mezo_agent/data/new_router.json,sha256=A8U-NVfe1F-hDyR90_SuH8jDAxmzyyHWdJW62j9TZsc,26756
|
12
|
-
mezoAgent-0.6.
|
13
|
-
mezoAgent-0.6.
|
14
|
-
mezoAgent-0.6.
|
15
|
-
mezoAgent-0.6.
|
12
|
+
mezoAgent-0.6.1.dist-info/METADATA,sha256=g1ynqIcb6yxweH0v-kFIBtS9nFgnsUVI7jtBj_bGNec,273
|
13
|
+
mezoAgent-0.6.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
14
|
+
mezoAgent-0.6.1.dist-info/top_level.txt,sha256=rrAci_NyTR9z6w_BrQhQrAhzMW_A0NYhVa0x2USl0nQ,11
|
15
|
+
mezoAgent-0.6.1.dist-info/RECORD,,
|
mezo_agent/token_balance_tool.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
from langchain.tools import tool
|
2
2
|
from mezo_agent.config import web3_instance, sender_address, ERC20_ABI
|
3
3
|
from mezo_agent.parsing import extract_balance_details
|
4
|
-
from mezo_agent.utils import get_token_address_by_symbol
|
5
4
|
|
6
5
|
@tool
|
7
6
|
def mezo_agent_token_balance_tool(balance_prompt: str) -> str:
|
@@ -11,6 +10,7 @@ def mezo_agent_token_balance_tool(balance_prompt: str) -> str:
|
|
11
10
|
:param balance_prompt: User query containing the token symbol.
|
12
11
|
:return: Token balance for the sender's address.
|
13
12
|
"""
|
13
|
+
from mezo_agent.utils import get_token_address_by_symbol
|
14
14
|
details = extract_balance_details(balance_prompt)
|
15
15
|
|
16
16
|
if isinstance(details, str): # Handle extraction errors
|
mezo_agent/token_price_tool.py
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
from langchain.tools import tool
|
2
2
|
from mezo_agent.config import query_graph
|
3
|
-
from mezo_agent.utils import get_token_address_by_symbol, get_token_price
|
4
3
|
from mezo_agent.parsing import extract_price_details
|
5
4
|
|
6
5
|
@tool
|
@@ -10,7 +9,9 @@ def mezo_agent_token_price_tool(price_prompt: str) -> str:
|
|
10
9
|
|
11
10
|
:param price_prompt: User query containing the token symbol.
|
12
11
|
:return: Token price details.
|
12
|
+
|
13
13
|
"""
|
14
|
+
from mezo_agent.utils import get_token_price
|
14
15
|
details = extract_price_details(price_prompt)
|
15
16
|
|
16
17
|
if isinstance(details, str): # Handle extraction errors
|
File without changes
|
File without changes
|