Skip to content

Commit

Permalink
Update llm.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BaLaurent authored Aug 20, 2024
1 parent 4a5c680 commit 81c44be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llm_osint/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

LLMModel = BaseChatModel

default_fast_llm_options = dict(model_name="gpt-3.5-turbo-16k-0613", request_timeout=120, max_retries=10, temperature=0.7)
default_llm_options = dict(model_name="gpt-4-0613", request_timeout=120, max_retries=10, temperature=0.7)
default_fast_llm_options = dict(model_name="gpt-4o-mini", request_timeout=120, max_retries=10, temperature=0.7)
default_llm_options = dict(model_name="gpt-4o", request_timeout=120, max_retries=10, temperature=0.7)


def get_default_fast_llm() -> LLMModel:
Expand Down

0 comments on commit 81c44be

Please sign in to comment.