Skip to content

Commit

Permalink
Update oai_base.py
Browse files Browse the repository at this point in the history
Attempt at a resolution for #14 . After replicating the issue today
  • Loading branch information
MrXandbadas committed Apr 7, 2024
1 parent f7dff77 commit 505fee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assistant_manager/oai_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import List, Optional
from openai import OpenAI
from openai._types import NotGiven, NOT_GIVEN
from openai.types.beta.threads import ThreadMessage
from openai.types.beta.threads import Message as ThreadMessage
from assistant_manager.interface_base import InterfaceBase


Expand Down Expand Up @@ -580,4 +580,4 @@ def submit_tool_outputs(self, thread_id, run_id, tool_outputs):
)
self.logger.debug(f"Submitted tool outputs for run {run_id}")

return run
return run

0 comments on commit 505fee9

Please sign in to comment.