Skip to content

Commit 60e1cdd

Browse files
Add grok4_intelligent_agents with 5 agent scripts
1 parent 8f3e0e4 commit 60e1cdd

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from praisonaiagents import Agent
2+
3+
agent = Agent(
4+
instructions="You are a customer support AI agent for TechGadgets.com, an online electronics store. Answer customer queries helpfully.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("How to return an item?")
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from praisonaiagents import Agent
2+
3+
agent = Agent(
4+
instructions="You are a lead generation AI agent for RealEstatePro.com. Help identify and qualify potential real estate leads.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I'm looking to buy a house in the suburbs with 3 bedrooms and a garden.")
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from praisonaiagents import Agent
2+
3+
agent = Agent(
4+
instructions="You are a meeting productivity AI agent. Help optimize meeting efficiency and follow-up actions.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I have a team meeting tomorrow. How can I make it more productive?")
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from praisonaiagents import Agent
2+
3+
agent = Agent(
4+
instructions="You are a mental wellbeing AI advisor. Provide supportive guidance and wellness tips.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I've been feeling stressed at work lately. Any tips for managing stress?")
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from praisonaiagents import Agent
2+
3+
agent = Agent(
4+
instructions="You are a multimodal reasoning AI agent. Analyze images and text to provide comprehensive insights.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("Can you help me analyze a chart showing sales data for Q1 2024?")

0 commit comments

Comments
 (0)