-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eae8290
commit 7d5ceee
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |