upperwal commited on
Commit
2a7ac71
·
verified ·
1 Parent(s): 6765ac7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -48,7 +48,17 @@ def generate_response(transcription):
48
  {"role": "system", "content": " you are a friendly bot to help the user"},
49
  {"role": "user", "content": transcription},
50
  ]
51
- tokenized_chat = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt")
 
 
 
 
 
 
 
 
 
 
52
  input_ids = tokenized_chat[0].to(device)
53
  if len(input_ids.shape) == 1:
54
  input_ids = input_ids.unsqueeze(0)
 
48
  {"role": "system", "content": " you are a friendly bot to help the user"},
49
  {"role": "user", "content": transcription},
50
  ]
51
+
52
+ # tokenized_chat = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt")
53
+
54
+ sys_prompt = 'You are Pragna, an AI built by Soket AI Labs. You should never lie and always tell facts. Help the user as much as you can and be open to say I dont know this if you are not sure of the answer'
55
+
56
+ eos_token = tokenizer.eos_token
57
+
58
+ tokenized_chat = f'<|system|>\n{sys_prompt}{eos_token}<|user|>\n{transcription}{eos_token}<|assistant|>\n'
59
+
60
+ print(tokenized_chat)
61
+
62
  input_ids = tokenized_chat[0].to(device)
63
  if len(input_ids.shape) == 1:
64
  input_ids = input_ids.unsqueeze(0)