| from langchain_anthropic import ChatAnthropic | |
| from langchain_groq import ChatGroq | |
| from dotenv import load_dotenv | |
| load_dotenv() | |
| anthropic_model = ChatAnthropic( | |
| model="claude-3-7-sonnet-20250219", | |
| temperature=0.7 | |
| ) | |
| groq_model = ChatGroq( | |
| model="qwen-qwq-32b", | |
| temperature=0 | |
| ) |