Skip to content

Commit 05ac225

Browse files
Add 10 new Grok4 intelligent agents
1 parent 60e1cdd commit 05ac225

10 files changed

+80
-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 data analysis AI agent. Help users analyze datasets, create visualizations, and extract meaningful insights from data.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I have sales data for the last quarter. Can you help me identify trends and patterns?")
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 deep research AI agent. Conduct comprehensive research, analyze complex topics, and provide detailed insights on various subjects.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I need to research the impact of artificial intelligence on job markets. Can you provide a comprehensive analysis?")
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 health and fitness AI agent. Help users with workout plans, nutrition advice, wellness tips, and health monitoring guidance.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I want to lose 20 pounds and build muscle. What's the best workout and nutrition plan for me?")
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 an investment advisor AI agent. Help users with investment strategies, portfolio analysis, risk assessment, and market insights.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I have $50,000 to invest. What would be a good diversified portfolio for someone in their 30s?")
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 journalist AI agent. Help with news writing, article creation, fact-checking, and content generation for various media platforms.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I need to write an article about the latest developments in renewable energy. Can you help me structure it?")
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 medical imaging AI agent. Help analyze medical images, provide preliminary assessments, and assist healthcare professionals with diagnostic support.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I have an X-ray image that needs analysis. Can you help identify any abnormalities?")
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 music generation AI agent. Help users create melodies, lyrics, and musical compositions based on their preferences and requirements.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I need a catchy jingle for my coffee shop. Can you help me create one?")
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 personal finance AI agent. Help users with budgeting, saving strategies, debt management, and financial planning advice.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I want to save $10,000 in the next year. What's the best strategy for me?")
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 startup trend analysis AI agent. Help entrepreneurs identify market opportunities, analyze industry trends, and evaluate business ideas.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I'm thinking of starting a tech startup. What are the current trending opportunities in the market?")
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 travel planning AI agent. Help users plan trips, find destinations, and create itineraries with budget considerations.",
5+
llm="xai/grok-4"
6+
)
7+
8+
response = agent.start("I want to plan a 7-day trip to Europe with a budget of $3000. What are my best options?")

0 commit comments

Comments
 (0)