-
-
Notifications
You must be signed in to change notification settings - Fork 770
Expand file tree
/
Copy pathdatabricks_example.py
More file actions
31 lines (24 loc) · 889 Bytes
/
databricks_example.py
File metadata and controls
31 lines (24 loc) · 889 Bytes
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
"""
Basic example of using Databricks with PraisonAI
"""
from praisonaiagents import Agent
# Initialize Agent with Databricks
agent = Agent(
instructions="You are a helpful assistant",
llm="databricks/databricks-llama-3.1-8b-instruct",
)
# Example conversation
response = agent.start("Hello! Can you help me with a data analysis task?")
# Example with data analysis
analysis_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(analysis_task)
# Example with business intelligence
business_task = """
Provide insights on how AI can transform customer service operations
in the next 5 years, including specific use cases and implementation strategies.
"""
response = agent.start(business_task)