Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -38,7 +38,7 @@ api_key = st.text_input("Enter your Groq API key:", type="password")
|
|
| 38 |
|
| 39 |
## Check if Groq API key is provided
|
| 40 |
if api_key:
|
| 41 |
-
llm = ChatGroq(groq_api_key=api_key, model_name="
|
| 42 |
|
| 43 |
## Chat interface
|
| 44 |
session_id = st.text_input("Session ID", value="default_session")
|
|
|
|
| 38 |
|
| 39 |
## Check if Groq API key is provided
|
| 40 |
if api_key:
|
| 41 |
+
llm = ChatGroq(groq_api_key=api_key, model_name="llama-3.1-8b-instant")
|
| 42 |
|
| 43 |
## Chat interface
|
| 44 |
session_id = st.text_input("Session ID", value="default_session")
|