abhi1nandy2 commited on
Commit
5d46e47
·
verified ·
1 Parent(s): 9d9824e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -35,9 +35,8 @@ 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
- message = SYSTEM_MESSAGE,
39
  history: list[tuple[str, str]],
40
- system_message,
41
  max_tokens=200,
42
  temperature=0.7,
43
  top_p=0.95,
 
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,
41
  temperature=0.7,
42
  top_p=0.95,