Spaces:
Runtime error
Runtime error
Muhammad Abdullah commited on
Commit ·
805fd73
1
Parent(s): c7fc09a
updating
Browse files
app.py
CHANGED
|
@@ -178,9 +178,7 @@ setup_tab, terms_tab, upload_tab, query_tab = st.tabs(
|
|
| 178 |
with setup_tab:
|
| 179 |
st.subheader("LLM Setup")
|
| 180 |
api_key = st.text_input("Enter your OpenAI API key here", type="password")
|
| 181 |
-
llm_name = st.selectbox(
|
| 182 |
-
"Choose an LLM", ["text-davinci-003", "gpt-3.5-turbo", "gpt-4"]
|
| 183 |
-
)
|
| 184 |
model_temperature = st.slider(
|
| 185 |
"Model Temperature", min_value=0.0, max_value=1.0, value=0.0, step=0.1
|
| 186 |
)
|
|
|
|
| 178 |
with setup_tab:
|
| 179 |
st.subheader("LLM Setup")
|
| 180 |
api_key = st.text_input("Enter your OpenAI API key here", type="password")
|
| 181 |
+
llm_name = st.selectbox("Choose an LLM", ["gpt-3.5-turbo", "gpt-4"])
|
|
|
|
|
|
|
| 182 |
model_temperature = st.slider(
|
| 183 |
"Model Temperature", min_value=0.0, max_value=1.0, value=0.0, step=0.1
|
| 184 |
)
|