Skip to content

Commit

Permalink
Adds todo
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrofelnik committed Apr 18, 2024
1 parent bf43f06 commit a4a131c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oracles/src/domain/llm/generate_response_use_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ async def _generate_openai_with_params(chat: Chat) -> Optional[ChatCompletion]:
presence_penalty=chat.config.presence_penalty,
response_format=chat.config.response_format,
seed=chat.config.seed,
stop=chat.config.stop,
# TODO gpt-4-turbo currently broken, keep the default for now
#stop=chat.config.stop,
temperature=chat.config.temperature,
top_p=chat.config.top_p,
tools=chat.config.tools,
Expand Down

0 comments on commit a4a131c

Please sign in to comment.