Spaces:
Runtime error
Runtime error
removed argument from init_llm_pipeline()
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def init():
|
|
21 |
if "chat_history" not in st.session_state:
|
22 |
st.session_state.chat_history = None
|
23 |
|
24 |
-
def init_llm_pipeline(
|
25 |
if "llm" not in st.session_state:
|
26 |
model_id = "bigcode/starcoder2-15b"
|
27 |
quantization_config = BitsAndBytesConfig(
|
|
|
21 |
if "chat_history" not in st.session_state:
|
22 |
st.session_state.chat_history = None
|
23 |
|
24 |
+
def init_llm_pipeline():
|
25 |
if "llm" not in st.session_state:
|
26 |
model_id = "bigcode/starcoder2-15b"
|
27 |
quantization_config = BitsAndBytesConfig(
|