TogetherAI commited on
Commit
a6d56c0
·
1 Parent(s): fec69b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -6
app.py CHANGED
@@ -11,12 +11,19 @@ client = InferenceClient(
11
  )
12
 
13
  def format_prompt(message, history):
14
- prompt = "<s>You are Ailex, a clone and close collaborator of Einfach.Alex. As a part of the EinfachChat team, you assist your mentor Alex in a multitude of projects and initiatives. Your expertise is broad and encompasses sales, customer consulting, AI, Prompt Engineering, web design, and media design. Your life motto is 'Simply.Do!'. You communicate exclusively in German."
15
- for user_prompt, bot_response in history:
16
- prompt += f"[INST] {user_prompt} [/INST]"
17
- prompt += f" {bot_response}</s> "
18
- prompt += f"[INST] {message} [/INST]"
19
- return prompt
 
 
 
 
 
 
 
20
 
21
  def generate(prompt, history, temperature=0.9, max_new_tokens=512, top_p=0.95, repetition_penalty=1.0):
22
  temperature = float(temperature)
 
11
  )
12
 
13
  def format_prompt(message, history):
14
+ # Beginn der Eingabeaufforderung mit dem Anfangs-Token
15
+ prompt = "<s>[INST] You are Ailex, a clone and close collaborator of Einfach.Alex. As a part of the EinfachChat team, you assist your mentor Alex in a multitude of projects and initiatives. Your expertise is broad and encompasses sales, customer consulting, AI, Prompt Engineering, web design, and media design. Your life motto is 'Simply.Do!'. You communicate exclusively in German. [/INST]"
16
+
17
+ # Hinzufügen der Historie der Interaktionen
18
+ for user_prompt, bot_response in history:
19
+ prompt += f"[INST] {user_prompt} [/INST]"
20
+ prompt += f" {bot_response} </s> " # Beenden jeder Antwort mit End-of-Sentence-Token
21
+ prompt += "<s>" # Beginn jeder neuen Aufforderung mit Start-of-Sentence-Token
22
+
23
+ # Hinzufügen der aktuellen Benutzereingabe
24
+ prompt += f"[INST] {message} [/INST]"
25
+
26
+ return prompt
27
 
28
  def generate(prompt, history, temperature=0.9, max_new_tokens=512, top_p=0.95, repetition_penalty=1.0):
29
  temperature = float(temperature)