ag-mach commited on
Commit
b76a7a5
·
1 Parent(s): d8369f5

removed argument from init_llm_pipeline()

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(openai_key):
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(