You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Add self-hosted server option
* update faq
* typo
* Add env vars and expose port to dockerfile
* Update src/pages/03_FAQ.py
---------
Co-authored-by: Ivan Carvalho <8753214+IvanIsCoding@users.noreply.github.com>
Copy file name to clipboardExpand all lines: src/pages/03_FAQ.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,14 @@
12
12
withst.expander("**Do I need an OpenAI/Gemini API Key to run ResuLLMe?**"):
13
13
st.markdown(
14
14
"""
15
-
**Yes**, as we currently only support ChatGPT and Google Gemini. You can obtain your key [openai](https://platform.openai.com/account/api-keys)/[Gemini](https://aistudio.google.com/ ).
15
+
**No**, Resullme is able to use any OpenAPI-compatible endpoint, such as [Ollama](https://github.com/ollama/ollama). If you intend on using ChatGPT or Google Gemini, an API key is required. You can obtain your key [openai](https://platform.openai.com/account/api-keys)/[Gemini](https://aistudio.google.com/ ).
16
16
"""
17
17
)
18
18
19
19
withst.expander("**Can I store my OpenAI/Gemini API Key instead of manually re-entering it?**"):
20
20
st.markdown(
21
21
"""
22
-
**Yes**, you can store your key in an environment variable`OPENAI_API_KEY` for openAI or `GEMINI_API_KEY` for Google Gemini, but if the environment variable `OPENAI_API_KEY`/`GEMINI_API_KEY` is not defined, ResuLLMe will prompt the user for a key.
22
+
**Yes**, you can store your key in an environment variable. Use `OPENAI_API_KEY` for openAI, `GEMINI_API_KEY` for Google Gemini, and either for self-hosted. If the environment variable `OPENAI_API_KEY`/`GEMINI_API_KEY` is not defined, ResuLLMe will prompt the user for a key.
0 commit comments