Navyssh commited on
Commit
99a6c8b
·
verified ·
1 Parent(s): e14c9d1

Upload agent.py

Browse files
Files changed (1) hide show
  1. agent.py +2 -1
agent.py CHANGED
@@ -34,7 +34,8 @@ rate_limiter = InMemoryRateLimiter(
34
  llm = init_chat_model(
35
  model_provider="google_genai",
36
  model="gemini-2.5-flash",
37
- rate_limiter=rate_limiter
 
38
  ).bind_tools(TOOLS)
39
 
40
 
 
34
  llm = init_chat_model(
35
  model_provider="google_genai",
36
  model="gemini-2.5-flash",
37
+ rate_limiter=rate_limiter,
38
+ api_key=os.getenv("GOOGLE_API_KEY")
39
  ).bind_tools(TOOLS)
40
 
41