Skip to content

Commit

Permalink
Update new.py
Browse files Browse the repository at this point in the history
  • Loading branch information
luv-singh-ai committed Dec 22, 2024
1 parent 88518c9 commit af13624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions new.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def load_prompts(file_path='prompts.yaml'):
return yaml.safe_load(file)
prompts = load_prompts()

# model = ChatOpenAI(api_key = openai_api_key, model="gpt-4o-mini", temperature=0.7) # , streaming=True
model = ChatAnthropic(model="claude-3-5-sonnet-20241022", api_key=anthropic_api_key, max_tokens=300, max_retries=2, temperature=0.7)
model = ChatOpenAI(api_key = openai_api_key, model="gpt-4o-mini", temperature=0.7) # , streaming=True
# model = ChatAnthropic(model="claude-3-5-haiku-20241022", api_key=anthropic_api_key, max_tokens=300, max_retries=2, temperature=0.7)

# in_memory_store = InMemoryStore()
store = InMemoryStore()
Expand Down

0 comments on commit af13624

Please sign in to comment.