Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sshh12 committed Aug 17, 2023
1 parent b193d85 commit 4dfa789
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/person_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def fetch_internet_content(name) -> str:
GATHER_PROMPT.format(name=name),
build_web_agent_func=lambda: build_web_agent(name),
deep_dive_topics=10,
deep_dive_rounds=1,
deep_dive_rounds=2,
name=name,
)
return "\n\n".join(knowlege_chunks)
Expand Down
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", request_timeout=120, max_retries=10, temperature=0.9)
default_llm_options = dict(model_name="gpt-4", request_timeout=120, max_retries=10, temperature=0.9)
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)


def get_default_fast_llm() -> LLMModel:
Expand Down

0 comments on commit 4dfa789

Please sign in to comment.