Added new example
This commit is contained in:
parent
5318443ac4
commit
2cac446ffd
2 changed files with 29 additions and 0 deletions
29
web_search_ai_assistant/claude_websearch.py
Normal file
29
web_search_ai_assistant/claude_websearch.py
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
# Import the required libraries
|
||||||
|
import streamlit as st
|
||||||
|
from phi.assistant import Assistant
|
||||||
|
from phi.tools.duckduckgo import DuckDuckGo
|
||||||
|
from phi.llm.anthropic import Claude
|
||||||
|
|
||||||
|
# Set up the Streamlit app
|
||||||
|
st.title("Claude Sonnet + AI Web Search 🤖")
|
||||||
|
st.caption("This app allows you to search the web using Claude Sonnet 3.5")
|
||||||
|
|
||||||
|
# Get Anthropic API key from user
|
||||||
|
anthropic_api_key = st.text_input("Anthropic's Claude API Key", type="password")
|
||||||
|
|
||||||
|
# If Anthropic API key is provided, create an instance of Assistant
|
||||||
|
if anthropic_api_key:
|
||||||
|
assistant = Assistant(
|
||||||
|
llm=Claude(
|
||||||
|
model="claude-3-5-sonnet-20240620",
|
||||||
|
max_tokens=1024,
|
||||||
|
temperature=0.9,
|
||||||
|
api_key=anthropic_api_key) , tools=[DuckDuckGo()], show_tool_calls=True
|
||||||
|
)
|
||||||
|
# Get the search query from the user
|
||||||
|
query= st.text_input("Enter the Search Query", type="default")
|
||||||
|
|
||||||
|
if query:
|
||||||
|
# Search the web using the AI Assistant
|
||||||
|
response = assistant.run(query, stream=False)
|
||||||
|
st.write(response)
|
||||||
Loading…
Reference in a new issue