mezoAgent 0.4.1__tar.gz → 0.4.2__tar.gz

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.4.1
3
+ Version: 0.4.2
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.4.1
3
+ Version: 0.4.2
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
@@ -1,12 +1,12 @@
1
1
  from .transaction import mezo_agent_transaction_btc, mezo_agent_musd_transaction
2
2
  from .swap_musd_btc import mezo_agent_swap_musd_btc
3
- from .chat import mezo_chat, mezo_agent_chat_tool
3
+ from .chat import mezo_character_chat # Corrected function name
4
4
  from .characters import get_character_prompt
5
5
 
6
6
  __all__ = [
7
7
  "mezo_agent_transaction_btc",
8
8
  "mezo_agent_musd_transaction",
9
9
  "mezo_agent_swap_musd_btc",
10
- "mezo_agent_chat", # Updated function name from mezo_chat
10
+ "mezo_character_chat", # Corrected function name
11
11
  "get_character_prompt"
12
12
  ]
@@ -7,7 +7,7 @@ from .config import OPENAI_API_KEY
7
7
  llm = ChatOpenAI(temperature=0, openai_api_key=OPENAI_API_KEY)
8
8
 
9
9
  @tool
10
- def mezo_chat(prompt: str, character: str = "DigAIJoe") -> str:
10
+ def mezo_character_chat(prompt: str, character: str = "DigAIJoe") -> str:
11
11
  """
12
12
  Generates a chatbot response based on the user's input and the selected AI character.
13
13
 
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mezoAgent",
5
- version="0.4.1",
5
+ version="0.4.2",
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  package_data={
File without changes
File without changes
File without changes