abhi1nandy2 commited on
Commit
8a1e454
·
verified ·
1 Parent(s): 45b07b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -35,6 +35,7 @@ client = InferenceClient("QuantFactory/Meta-Llama-3-8B-Instruct-GGUF")#("Hugging
35
  SYSTEM_MESSAGE = "You are a QA chatbot to answer queries on my homepage that has the following information -\n\n" + "\n\n".join(text_list)
36
 
37
  def respond(
 
38
  history: list[tuple[str, str]],
39
  system_message=SYSTEM_MESSAGE,
40
  max_tokens=200,
 
35
  SYSTEM_MESSAGE = "You are a QA chatbot to answer queries on my homepage that has the following information -\n\n" + "\n\n".join(text_list)
36
 
37
  def respond(
38
+ message,
39
  history: list[tuple[str, str]],
40
  system_message=SYSTEM_MESSAGE,
41
  max_tokens=200,