Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cursorrules
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ If needed, you can further use the `web_scraper.py` file to scrape the web page
- Add debug information to stderr while keeping the main output clean in stdout for better pipeline integration
- When using seaborn styles in matplotlib, use 'seaborn-v0_8' instead of 'seaborn' as the style name due to recent seaborn version changes
- Use 'gpt-4o' as the model name for OpenAI's GPT-4 with vision capabilities
- When searching for recent news, use the current year (2025) instead of previous years, or simply use the "recent" keyword to get the latest information

# Scratchpad
6 changes: 3 additions & 3 deletions tools/llm_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ def query_llm(prompt: str, client=None, model=None, provider="openai", image_pat
elif provider == "siliconflow":
model = "deepseek-ai/DeepSeek-R1"
elif provider == "anthropic":
model = "claude-3-sonnet-20240229"
model = "claude-3-7-sonnet-20250219"
elif provider == "gemini":
model = "gemini-pro"
model = "gemini-2.0-flash-exp"
elif provider == "local":
model = "Qwen/Qwen2.5-32B-Instruct-AWQ"

Expand Down Expand Up @@ -255,7 +255,7 @@ def main():
elif args.provider == "siliconflow":
args.model = "deepseek-ai/DeepSeek-R1"
elif args.provider == 'anthropic':
args.model = "claude-3-5-sonnet-20241022"
args.model = "claude-3-7-sonnet-20250219"
elif args.provider == 'gemini':
args.model = "gemini-2.0-flash-exp"
elif args.provider == 'azure':
Expand Down