Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ if "history" not in st.session_state:
|
|
10 |
|
11 |
st.sidebar.markdown("## Configuration")
|
12 |
API_KEY = st.sidebar.text_input("Enter your OpenAI API key")
|
13 |
-
models = ['text-davinci-003', 'text-curie-001', 'text-babbage-001', 'text-ada-001']
|
14 |
model = st.sidebar.selectbox("Select a model", models, index=0)
|
15 |
|
16 |
temperature = st.sidebar.slider("Temperature", 0.0, 1.0, 0.7)
|
|
|
10 |
|
11 |
st.sidebar.markdown("## Configuration")
|
12 |
API_KEY = st.sidebar.text_input("Enter your OpenAI API key")
|
13 |
+
models = ['text-davinci-003', 'text-curie-001', 'text-babbage-001 (WIP)', 'text-ada-001 (WIP)']
|
14 |
model = st.sidebar.selectbox("Select a model", models, index=0)
|
15 |
|
16 |
temperature = st.sidebar.slider("Temperature", 0.0, 1.0, 0.7)
|