AlanRobotics commited on
Commit
3da6d60
1 Parent(s): b43a8fb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -2
README.md CHANGED
@@ -36,7 +36,6 @@ response = openai.ChatCompletion.create(
36
  max_tokens=2048,
37
  top_p=0.9, # 0.1 is also allowed
38
  messages=[
39
- {"role": "system", "content": "Ты — ИИ-помощник. Тебе дано задание: необходимо сгенерировать подробный и развернутый ответ."},
40
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
41
  ]
42
  )
@@ -52,7 +51,6 @@ from transformers import pipeline
52
  pipe = pipeline("text-generation", model="MTSAIR/Cotype-Nano", device="cuda")
53
 
54
  messages = [
55
- {"role": "system", "content": "Ты — ИИ-помощник. Тебе дано задание: необходимо сгенерировать подробный и развернутый ответ."},
56
  {"role": "user", "content": "Расскажи мне про ИИ"},
57
  ]
58
 
 
36
  max_tokens=2048,
37
  top_p=0.9, # 0.1 is also allowed
38
  messages=[
 
39
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
40
  ]
41
  )
 
51
  pipe = pipeline("text-generation", model="MTSAIR/Cotype-Nano", device="cuda")
52
 
53
  messages = [
 
54
  {"role": "user", "content": "Расскажи мне про ИИ"},
55
  ]
56