Skip to content

Commit

Permalink
Merge branch 'main' into fix/ollama-model-copy-for-playground
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkbrnd authored Dec 20, 2024
2 parents 96893ae + ff1bca0 commit 4f417f6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cookbook/providers/google/flash_thinking.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from phi.agent import Agent
from phi.model.google import Gemini

task = (
"Three missionaries and three cannibals need to cross a river. "
"They have a boat that can carry up to two people at a time. "
"If, at any time, the cannibals outnumber the missionaries on either side of the river, the cannibals will eat the missionaries. "
"How can all six people get across the river safely? Provide a step-by-step solution and show the solutions as an ascii diagram"
)

agent = Agent(model=Gemini(id="gemini-2.0-flash-thinking-exp-1219"), markdown=True)
agent.print_response(task, stream=True)

0 comments on commit 4f417f6

Please sign in to comment.