Skip to content

Commit

Permalink
Flash thinking
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Dec 19, 2024
1 parent eae8290 commit 7d5ceee
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 7d5ceee

Please sign in to comment.