-
-
Notifications
You must be signed in to change notification settings - Fork 781
Expand file tree
/
Copy pathgoogle_gemini_example.py
More file actions
30 lines (23 loc) · 806 Bytes
/
google_gemini_example.py
File metadata and controls
30 lines (23 loc) · 806 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
"""
Basic example of using Google Gemini with PraisonAI
"""
from praisonaiagents import Agent
# Initialize Agent with Google Gemini
agent = Agent(
instructions="You are a helpful assistant",
llm="google/gemini-1.5-pro",
)
# Example conversation
response = agent.start("Hello! Can you help me with a research task?")
# Example with research and analysis
research_task = """
Research and provide insights on the latest developments in
renewable energy technology, focusing on solar and wind power innovations.
"""
response = agent.start(research_task)
# Example with multimodal capabilities (text-based for now)
multimodal_task = """
Describe how you would analyze an image of a city skyline
and provide insights about urban development patterns.
"""
response = agent.start(multimodal_task)