-
-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathcohere_example.py
More file actions
36 lines (28 loc) · 1.08 KB
/
cohere_example.py
File metadata and controls
36 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""
Basic example of using Cohere with PraisonAI
"""
from praisonaiagents import Agent
# Initialize Agent with Cohere
agent = Agent(
instructions="You are a helpful assistant",
llm="cohere/command-r-plus",
)
# Example conversation
response = agent.start("Hello! Can you help me with a business analysis task?")
# Example with business analysis
business_task = """
Analyze the potential market opportunities for a new AI-powered
productivity tool targeting remote workers. Include market size,
competitive landscape, and go-to-market strategy recommendations.
"""
response = agent.start(business_task)
# Example with document summarization
summary_task = """
Summarize the key points from this business proposal:
Our company proposes to develop an AI-powered customer service chatbot
that can handle 80% of common customer inquiries automatically. The system
will integrate with existing CRM platforms and provide 24/7 support.
Expected ROI is 300% within the first year, with implementation taking
6 months and requiring a team of 5 developers.
"""
response = agent.start(summary_task)