Tonic commited on
Commit
f69da4b
·
1 Parent(s): ce60335

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,7 +22,7 @@ def multimodal_prompt(user_input, system_prompt="You are an expert medical analy
22
  A string containing the generated text.
23
  """
24
  # Combine user input and system prompt
25
- formatted_input = f"Question: {system_prompt} {user_input} \n Mini :"
26
 
27
  # Encode the input text
28
  encodeds = tokenizer(formatted_input, return_tensors="pt", add_special_tokens=False)
@@ -87,7 +87,7 @@ class ChatBot:
87
 
88
  def predict(self, user_input, system_prompt="You are an expert medical analyst:"):
89
  # Combine the user's input with the system prompt
90
- formatted_input = f"Question: {system_prompt} {user_input} Mini:"
91
 
92
  # Encode the formatted input using the tokenizer
93
  user_input_ids = tokenizer.encode(formatted_input, return_tensors="pt")
 
22
  A string containing the generated text.
23
  """
24
  # Combine user input and system prompt
25
+ formatted_input = f"{{{ {system_prompt} }}} \n User: {user_input} \n Falcon:"
26
 
27
  # Encode the input text
28
  encodeds = tokenizer(formatted_input, return_tensors="pt", add_special_tokens=False)
 
87
 
88
  def predict(self, user_input, system_prompt="You are an expert medical analyst:"):
89
  # Combine the user's input with the system prompt
90
+ formatted_input = f"{{{ {system_prompt} }}} \n User: {user_input} \n Falcon:"
91
 
92
  # Encode the formatted input using the tokenizer
93
  user_input_ids = tokenizer.encode(formatted_input, return_tensors="pt")