-
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.
change-knowledge_base-to-knowledge-phi-2000
- Loading branch information
Showing
17 changed files
with
79 additions
and
301 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 |
---|---|---|
@@ -1,44 +1,22 @@ | ||
import typer | ||
from rich.prompt import Prompt | ||
from typing import Optional | ||
|
||
from phi.agent import Agent | ||
from phi.knowledge.pdf import PDFUrlKnowledgeBase | ||
from phi.vectordb.chroma import ChromaDb | ||
|
||
|
||
knowledge_base = PDFUrlKnowledgeBase( | ||
urls=["https://phi-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf"], | ||
vector_db=ChromaDb(collection="recipes"), | ||
) | ||
|
||
# Comment out after first run | ||
knowledge_base.load(recreate=False) | ||
|
||
agent = Agent( | ||
knowledge=knowledge_base, | ||
# Show tool calls in the response | ||
show_tool_calls=True, | ||
# Enable the agent to search the knowledge base | ||
search_knowledge=True, | ||
# Enable the agent to read the chat history | ||
read_chat_history=True, | ||
) | ||
|
||
def pdf_agent(user: str = "user"): | ||
run_id: Optional[str] = None | ||
|
||
agent = Agent( | ||
run_id=run_id, | ||
user_id=user, | ||
knowledge_base=knowledge_base, | ||
use_tools=True, | ||
show_tool_calls=True, | ||
debug_mode=True, | ||
) | ||
if run_id is None: | ||
run_id = agent.run_id | ||
print(f"Started Run: {run_id}\n") | ||
else: | ||
print(f"Continuing Run: {run_id}\n") | ||
|
||
while True: | ||
message = Prompt.ask(f"[bold] :sunglasses: {user} [/bold]") | ||
if message in ("exit", "bye"): | ||
break | ||
agent.print_response(message) | ||
|
||
|
||
if __name__ == "__main__": | ||
typer.run(pdf_agent) | ||
agent.print_response("How do I make pad thai?", markdown=True) |
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
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.