Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -7,7 +7,7 @@ from google.genai import types
|
|
7 |
from dotenv import load_dotenv
|
8 |
|
9 |
load_dotenv(); logging.basicConfig(level=logging.ERROR)
|
10 |
-
MODEL,APP_NAME,USER_ID = "gemini-2.0-flash-
|
11 |
agent = Agent(name="search_assistant", model=MODEL, instruction="You are a helpful assistant Answer user questions using Google Search when needed.", description="An assistant that can search the web.", tools=[google_search])
|
12 |
|
13 |
@st.cache_resource
|
|
|
7 |
from dotenv import load_dotenv
|
8 |
|
9 |
load_dotenv(); logging.basicConfig(level=logging.ERROR)
|
10 |
+
MODEL,APP_NAME,USER_ID = "gemini-2.0-flash-lite", "search_assistant_app", "streamlit_user_search"
|
11 |
agent = Agent(name="search_assistant", model=MODEL, instruction="You are a helpful assistant Answer user questions using Google Search when needed.", description="An assistant that can search the web.", tools=[google_search])
|
12 |
|
13 |
@st.cache_resource
|