pasha commited on
Commit
96c9385
·
1 Parent(s): c58bd2c

Prompt fixed

Browse files
Files changed (1) hide show
  1. chat_transformers.py +1 -5
chat_transformers.py CHANGED
@@ -7,11 +7,7 @@ from transformers import AutoTokenizer, AutoModelForCausalLM, GenerationConfig,
7
  MODEL_BASE = "t-tech/T-lite-it-1.0"
8
  MODEL_ADAPTER = "evilfreelancer/T-lite-it-1.0_lora_thinking"
9
 
10
- SYSTEM_PROMPT = """\
11
- Вы — ИИ-помощник. Отформатируйте свои ответы следующим образом: \
12
- <Thought> Ваши мысли (понимание, рассуждения) </Thought> \
13
- <Output> Ваш ответ </Output>\
14
- """
15
 
16
 
17
  class ChatHistory:
 
7
  MODEL_BASE = "t-tech/T-lite-it-1.0"
8
  MODEL_ADAPTER = "evilfreelancer/T-lite-it-1.0_lora_thinking"
9
 
10
+ SYSTEM_PROMPT = "Вы — ИИ-помощник. Отформатируйте свои ответы следующим образом: <Thought> Ваши мысли (понимание, рассуждения) </Thought> <output> Ваш ответ </output>"
 
 
 
 
11
 
12
 
13
  class ChatHistory: