Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithdark-git committed Mar 15, 2024
1 parent 051db57 commit 080bc94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ def main():
"GPT-4 Turbo": "gpt-4-turbo"
}

selected_model_display_name = st.selectbox("DarkGPT", list(models.keys()), index=0)
with st.header("DarkGPT"):
selected_model_display_name = st.selectbox("", list(models.keys()), index=0)

selected_model = models[selected_model_display_name]
selected_model = models[selected_model_display_name]

# st.header("DarkGPT")

Expand Down

0 comments on commit 080bc94

Please sign in to comment.