mezoAgent 0.6.0__py3-none-any.whl → 0.6.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: A Python package for Mezo Agent transactions with LangChain tools
5
5
  Author: Dreadwulf, Duck, Digi
6
6
  Requires-Dist: python-dotenv
@@ -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=OvdpEr3Vy_LU1-dg2hOt4IJR6B8Rmql_NQCuVy3cqqg,1459
8
- mezo_agent/token_price_tool.py,sha256=AKpAaON79S8etVQEp2XIuhLd0B2GNIG4EqU8-6Tijsw,935
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.0.dist-info/METADATA,sha256=gC8MZDIQ7ku-nLGOHcBSN8MqxYdgxhxlzvelLLCHF_0,273
13
- mezoAgent-0.6.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
14
- mezoAgent-0.6.0.dist-info/top_level.txt,sha256=rrAci_NyTR9z6w_BrQhQrAhzMW_A0NYhVa0x2USl0nQ,11
15
- mezoAgent-0.6.0.dist-info/RECORD,,
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,,
@@ -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
@@ -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