fixed tool use

This commit is contained in:
2024-08-19 12:54:13 -05:00
parent 6536acd647
commit 19ead08efb
3 changed files with 33 additions and 91 deletions
+22 -6
View File
@@ -1,14 +1,17 @@
import importlib
import os
import json
import logging
import inspect
from abc import ABC, abstractmethod
from tools.base_tool import BaseTool
class BaseTelegramInferenceBot(ABC):
def __init__(self):
self.conversation_history = {}
self.processing_status = {}
self.system_prompt = self.load_system_prompt()
self.functions = self.load_functions()
self.tools, self.functions = self.load_functions()
@staticmethod
def load_system_prompt():
@@ -17,8 +20,21 @@ class BaseTelegramInferenceBot(ABC):
@staticmethod
def load_functions():
# Implement function loading logic here
return []
tools = []
tools_dir = os.path.join(os.path.dirname(__file__), 'tools')
for filename in os.listdir(tools_dir):
if filename.endswith('.py') and filename != '__init__.py' and filename != 'base_tool.py':
module_name = f'tools.{filename[:-3]}'
module = importlib.import_module(module_name)
for name, obj in inspect.getmembers(module):
if inspect.isclass(obj) and issubclass(obj, BaseTool) and obj != BaseTool:
tools.append(obj())
# Collect all function definitions
functions = []
for tool in tools:
functions.extend(tool.get_functions())
return tools, functions
@abstractmethod
def get_chat_response(self, messages):
@@ -32,9 +48,9 @@ class BaseTelegramInferenceBot(ABC):
if user_id in self.conversation_history:
del self.conversation_history[user_id]
def call_tool(self, function_call):
function_name = function_call.name
function_args = json.loads(function_call.arguments)
def call_tool(self, function_call_name, function_call_arguments):
function_name = function_call_name
function_args = json.loads(function_call_arguments if function_call_arguments is not None else "{}")
for tool in self.tools:
if function_name in [f["name"] for f in tool.get_functions()]:
return tool.execute(function_name, **function_args)