rohitashva commited on
Commit
f4e8301
·
verified ·
1 Parent(s): b31eb8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ Simply input your query, and the model will provide contextually relevant answer
11
  # Load the model
12
  @st.cache_resource
13
  def load_qa_pipeline():
14
- model_name = "rohitashva/dementia--chatbot-llm-model" # Replace with your Hugging Face model repo name
15
  qa_pipeline = pipeline("text-generation", model=model_name)
16
  return qa_pipeline
17
 
 
11
  # Load the model
12
  @st.cache_resource
13
  def load_qa_pipeline():
14
+ model_name = "rohitashva/dementia-chatbot-llm-model" # Replace with your Hugging Face model repo name
15
  qa_pipeline = pipeline("text-generation", model=model_name)
16
  return qa_pipeline
17