DrishtiSharma commited on
Commit
71e4423
·
verified ·
1 Parent(s): 20d3775

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -30,7 +30,8 @@ llm = None
30
 
31
  # Model Selection
32
  #st.header("Model Selection")
33
- model_choice = st.selectbox("Select LLM", ["OpenAI Model","Groq-based LLM"])
 
34
 
35
  # API Key Validation and LLM Initialization
36
  groq_api_key = os.getenv("GROQ_API_KEY")
 
30
 
31
  # Model Selection
32
  #st.header("Model Selection")
33
+ model_choice = st.radio("Select LLM", ["OpenAI Model", "Groq-based LLM"], index=0)
34
+
35
 
36
  # API Key Validation and LLM Initialization
37
  groq_api_key = os.getenv("GROQ_API_KEY")