diff --git a/implementation/agent.py b/implementation/agent.py index 2d6bc8a..f694cbc 100644 --- a/implementation/agent.py +++ b/implementation/agent.py @@ -42,15 +42,19 @@ def process_call(tool_call): output = tool_dict[function_name](**function_arguments) return output - thread = client.beta.threads.create( - messages=[ - { - "role": "user", - "content": message.text, - } - ] - ) - - ##TODO: Implement your message checking logic here + # thread = client.beta.threads.create( + # messages=[ + # { + # "role": "user", + # "content": message.text, + # } + # ] + # ) + + # run = client.beta.threads.runs.create( + # thread_id=thread.id, + # assistant_id="TO FILL", + # ) + return Vote(category="unsure", truthScore=None) #change this \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 21991c4..6cec342 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,5 @@ pydantic~=2.6.1 requests~=2.31.0 google-auth~=2.28.1 openai~=1.12.0 -langchain~=0.1.9 \ No newline at end of file +langchain~=0.1.9 +google-api-python-client~=2.119.0 \ No newline at end of file