Skip to content

Commit

Permalink
feat: Add print statement to display the model being used in assistan…
Browse files Browse the repository at this point in the history
…t function
  • Loading branch information
onuratakan committed Dec 18, 2024
1 parent a562f2c commit fc4877c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_computer_assistant/agent/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def assistant(
msg = {"messages": llm_history + [the_message]}
time.sleep(1)
else:

print("The model:", the_model)
msg = get_agent_executor().invoke(
{"messages": llm_history + [the_message]}, config=config
)
Expand Down

0 comments on commit fc4877c

Please sign in to comment.