Skip to content

Commit

Permalink
Nicer form
Browse files Browse the repository at this point in the history
  • Loading branch information
JunShern authored Mar 12, 2024
1 parent c8f5ee9 commit 48c3d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evals/solvers/openai_assistants_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(
registry: Any = None,
):
self.model = model
self.thread = client.beta.threads.create() if not thread else thread
self.thread = thread if thread else client.beta.threads.create()
self.tools = tools
self.all_uploaded_files = []
if not assistant:
Expand Down

0 comments on commit 48c3d6b

Please sign in to comment.