Skip to content
Open
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
6 changes: 6 additions & 0 deletions Crewai-agents/Blood-Report-Analysis-Agent/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Agentverse API key used when registering the uAgent adapter
AGENTVERSE_API_KEY=your_agentverse_api_key_here

# LLM and web search providers used by the CrewAI agents
OPENAI_API_KEY=your_openai_api_key_here
SERPER_API_KEY=your_serper_api_key_here
17 changes: 7 additions & 10 deletions Crewai-agents/Blood-Report-Analysis-Agent/scripts/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
FileReadTool,
SerperDevTool,
WebsiteSearchTool,
PDFSearchTool
PDFSearchTool,
)
import os
os.environ["SERPER_API_KEY"] = "b924f60ae1564e450f297dc464410ff7190abb85"


class BloodReportAgents:
def blood_report_analyst(self):
return Agent(
Expand All @@ -24,12 +24,9 @@ def blood_report_analyst(self):
"You are adept at translating complex medical data into clear, actionable insights for healthcare "
"professionals and patients alike."
),
tools=[
PDFSearchTool(),
DirectoryReadTool(directory="input")
],
tools=[PDFSearchTool(), DirectoryReadTool(directory="input")],
allow_delegation=False,
verbose=True
verbose=True,
)

def health_advisor(self):
Expand All @@ -53,8 +50,8 @@ def health_advisor(self):
SerperDevTool(),
WebsiteSearchTool(),
FileReadTool(),
DirectoryReadTool(directory="output")
DirectoryReadTool(directory="output"),
],
allow_delegation=False,
verbose=True
verbose=True,
)
7 changes: 0 additions & 7 deletions Crewai-agents/trip_planner/.env

This file was deleted.

10 changes: 10 additions & 0 deletions Crewai-agents/trip_planner/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Agentverse API key used by main_uagents.py
AV_API_KEY=your_agentverse_api_key_here

# LLM and search providers used by the CrewAI tools
OPENAI_API_KEY=your_openai_api_key_here
SERPER_API_KEY=your_serper_api_key_here
BROWSERLESS_API_KEY=your_browserless_api_key_here

# Optional: used by SearchTools.fetch_weather
OPENWEATHER_API_KEY=your_openweather_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Required by weather_agent unless GOOGLE_GENAI_USE_VERTEXAI is TRUE
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_GENAI_USE_VERTEXAI=FALSE

# Optional remote agent endpoints used by host_agent/routing_agent.py
AIR_AGENT_URL=http://localhost:9001
WEA_AGENT_URL=http://localhost:10001
PER_AGENT_URL=http://localhost:9002
FIN_AGENT_URL=http://localhost:8002
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Required for the coordinator and specialist agents
ASI1_API_KEY=your_asi1_api_key_here

# Optional model configuration
MODEL=asi1-mini
BASE_URL=https://api.asi1.ai/v1/chat/completions
ASI1_API_URL=https://api.asi1.ai/v1/chat/completions
ASI1_MODEL=asi1-mini
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GOOGLE_API_KEY=your_google_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BRAVE_API_KEY=your_brave_search_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GOOGLE_API_KEY=your_google_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
GOOGLE_API_KEY=your_google_api_key_here

# Optional uAgent timeout override
UAGENT_MESSAGE_TIMEOUT=300
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Default path uses Google.
GOOGLE_API_KEY=your_google_api_key_here
model_source=google

# Optional OpenAI-compatible tool LLM settings
TOOL_LLM_NAME=
API_KEY=
TOOL_LLM_URL=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GOOGLE_API_KEY=your_google_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OPENAI_API_KEY=your_openai_api_key_here
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Agent identity and Agentverse routing
AGENT_SECRET_KEY_1=your_agent_seed_here
AGENTVERSE_API_KEY=your_agentverse_api_key_here
USE_MAILBOX=true
AGENT_PORT=8000
AGENT_ENDPOINT_URL=

# Listing search
REPLIERS_API_KEY=your_repliers_api_key_here

# Optional ASI:One / OpenAI helpers
ASI1_API_KEY=your_asi1_api_key_here
ASI_ONE_API_KEY=
OPENAI_API_KEY=
OPENAI_MODEL=gpt-4.1-mini

# Optional Stripe embedded checkout
STRIPE_SECRET_KEY=
STRIPE_PUBLISHABLE_KEY=
STRIPE_AMOUNT_CENTS=50
STRIPE_CURRENCY=usd
STRIPE_PRODUCT_NAME=Listing details
STRIPE_SUCCESS_URL=https://agentverse.ai
STRIPE_CHECKOUT_EXPIRES_SECONDS=1800

# Optional wishlist email export
EMAIL_API_KEY=
EMAIL_TO=
Loading