Model and SearxNG comments

This commit is contained in:
Mark Sze
2026-02-15 19:39:05 +11:00
parent 3c8138bb4f
commit 0e793d45b2
2 changed files with 5 additions and 3 deletions

View File

@@ -48,5 +48,5 @@ These are optional and not required to run this example.
## Notes
- Web fallback uses the SearxNG public instance at `https://searxng.site/search`.
- Default model is set to `gpt-5-nano`, following AG2 documentation examples.
- Default model used is `gpt-5-nano`. You can change it in the sidebar before running a query.
- Web fallback uses the SearxNG public instance at `https://searxng.site/search`. This instance may be rate-limited.

View File

@@ -18,7 +18,9 @@ with st.sidebar:
api_key = st.text_input("OpenAI API Key", type="password")
model = st.text_input("Model", value=DEFAULT_MODEL)
web_enabled = st.toggle("Enable Web Fallback", value=True)
st.markdown("Web fallback uses SearxNG.")
st.markdown(
"Web fallback uses a public SearxNG instance, which may be rate-limited."
)
st.subheader("1. Upload Local Documents")
files = st.file_uploader(