Skip to content

Commit

Permalink
fix: recruiter agent fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Prat011 committed Dec 20, 2024
1 parent 6355298 commit 6ce83a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/examples/advanced_agents/recruiter_agent/.env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
OPENAI_API_KEY=KEY
COMPOSIO_API_KEY=KEY
COMPOSIO_API_KEY=KEY
AGENTOPS_API_KEY=KEY
5 changes: 5 additions & 0 deletions python/examples/advanced_agents/recruiter_agent/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
from dotenv import load_dotenv
import os


load_dotenv()
import agentops
agentops.init(os.getenv("AGENTOPS_API_KEY"))


toolset = ComposioToolSet(api_key=os.getenv("COMPOSIO_API_KEY"))
tools = toolset.get_tools(apps=[App.PEOPLEDATALABS, App.GOOGLESHEETS])

Expand Down

0 comments on commit 6ce83a5

Please sign in to comment.