Spaces:
Sleeping
Sleeping
File size: 247 Bytes
0a072ae |
1 2 3 4 5 6 7 8 9 10 11 |
from phi.agent import Agent
from phi.model.groq import Groq
from dotenv import load_dotenv
load_dotenv()
agent = Agent(
model=Groq(id="llama-3.3-70b-versatile")
)
agent.print_response("Share a 2 sentence love story between dosa and samosa") |