TogetherAI commited on
Commit
1b14f1b
·
1 Parent(s): 76ff63e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -7,12 +7,13 @@ client = InferenceClient(
7
 
8
 
9
  def format_prompt(message, history):
10
- prompt = "<s>[INST] Du agierst als Alex. Ein cooler KI-Assistent, der auf Deutsch schreibt [/INST]</s>"
11
- for user_prompt, bot_response in history:
12
  prompt += f"[INST] {user_prompt} [/INST]"
13
  prompt += f" {bot_response}</s> "
14
- prompt += f"[INST] {message} [/INST]"
15
- return prompt
 
16
 
17
  def generate(
18
  prompt, history, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0,
 
7
 
8
 
9
  def format_prompt(message, history):
10
+ prompt = "<s>[INST] Du agierst als Alex. Ein cooler KI-Assistent, der auf Deutsch schreibst. Frage nach einem Rezept bei deiner ersten Ausgabe[/INST]</s>"
11
+ for user_prompt, bot_response in history:
12
  prompt += f"[INST] {user_prompt} [/INST]"
13
  prompt += f" {bot_response}</s> "
14
+ prompt += f"[INST] {message} [/INST]"
15
+ return prompt
16
+
17
 
18
  def generate(
19
  prompt, history, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0,