File size: 1,200 Bytes
3780e1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import os
import streamlit as st
def sidebar():
st.sidebar.markdown("### Configuration")
st.sidebar.markdown("Please provide the following keys to evaluate LLM response:")
st.sidebar.info("Keys defined in your environment variables are automatically loaded.")
# OpenAI API Key
st.sidebar.markdown("You can find the OpenAI API Key [here](https://platform.openai.com/account/api-keys).")
openai_api_key = st.sidebar.text_input("OpenAI API Key", key="openai_key", type="password", value=os.getenv("OPENAI_API_KEY"))
os.environ["OPENAI_API_KEY"] = openai_api_key
# Serper API Key
st.sidebar.markdown("You can find the Serper API Key [here](https://serpapi.com/dashboard).")
serper_api_key = st.sidebar.text_input("Serper API Key", key="serper_key", type="password", value=os.getenv("SERPER_API_KEY"))
os.environ["SERPER_API_KEY"] = serper_api_key
# Azure Search Key
st.sidebar.markdown("You can find the Azure Search Key [here](https://portal.azure.com/).")
azure_search_key = st.sidebar.text_input("Azure Search Key", key="azure_key", type="password", value=os.getenv("AZURE_SEARCH_KEY"))
os.environ["AZURE_SEARCH_KEY"] = azure_search_key
|