Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,9 @@ import logging
|
|
13 |
# Setup logging
|
14 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
15 |
|
|
|
|
|
|
|
16 |
# Model Selection
|
17 |
st.header("Model Selection")
|
18 |
model_choice = st.selectbox("Select LLM Provider", ["Groq-based LLM", "OpenAI Model"])
|
|
|
13 |
# Setup logging
|
14 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
15 |
|
16 |
+
# Initialize LLM
|
17 |
+
llm = None
|
18 |
+
|
19 |
# Model Selection
|
20 |
st.header("Model Selection")
|
21 |
model_choice = st.selectbox("Select LLM Provider", ["Groq-based LLM", "OpenAI Model"])
|