claude model changed

This commit is contained in:
Madhu 2025-01-26 22:20:24 +05:30
parent 5450e8c9fa
commit f33f147783
2 changed files with 36 additions and 1 deletions

View file

@ -8,7 +8,7 @@ import re
async def generate_meme(query: str, api_key: str) -> None:
llm = ChatAnthropic(
model="claude-3-5-sonnet-20240620",
model="claude-3-5-sonnet-20241022",
api_key=api_key
)

View file

@ -0,0 +1,35 @@
import asyncio
import os
from dotenv import load_dotenv
from langchain_openai import ChatOpenAI
from pydantic import SecretStr
from browser_use import Agent
# dotenv
load_dotenv()
api_key = os.getenv('DEEPSEEK_API_KEY', '')
if not api_key:
raise ValueError('DEEPSEEK_API_KEY is not set')
async def run_search():
agent = Agent(
task=('go to amazon.com, search for laptop, sort by best rating, and give me the price of the first result'),
llm=ChatOpenAI(
base_url='https://api.deepseek.com/v1',
model='deepseek-reasoner',
api_key=SecretStr(api_key),
),
use_vision=False,
max_failures=2,
max_actions_per_step=1,
)
await agent.run()
if __name__ == '__main__':
asyncio.run(run_search())