Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Nov 6, 2023
1 parent 4064917 commit 877ab59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/packages/gizmo-agent/gizmo_agent/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def __init__(
_agent = get_openai_function_agent(tools, system_message)
elif agent == GizmoAgentType.GPT_35_TURBO:
_agent = get_openai_function_agent(tools, system_message, gpt_4=True)
elif agent == GizmoAgentType.AZURE_OPENAI:
_agent = get_openai_function_agent(tools, system_message, azure=True)
# elif agent == GizmoAgentType.AZURE_OPENAI:
# _agent = get_openai_function_agent(tools, system_message, azure=True)
elif agent == GizmoAgentType.CLAUDE2:
_agent = get_xml_agent(tools, system_message)
else:
Expand Down

0 comments on commit 877ab59

Please sign in to comment.