Locon213 commited on
Commit
fbed061
1 Parent(s): d2017a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -27
app.py CHANGED
@@ -1,11 +1,8 @@
1
  import gradio as gr
2
- from huggingface_hub import InferenceClient
3
-
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
 
 
9
 
10
  def respond(
11
  message,
@@ -15,30 +12,31 @@ def respond(
15
  temperature,
16
  top_p,
17
  ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
  for val in history:
21
  if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
  if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
  temperature=temperature,
35
  top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
41
-
 
42
 
43
  """
44
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
@@ -59,6 +57,5 @@ demo = gr.ChatInterface(
59
  ],
60
  )
61
 
62
-
63
  if __name__ == "__main__":
64
- demo.launch()
 
1
  import gradio as gr
2
+ from transformers import pipeline
 
 
 
 
 
3
 
4
+ # Загрузка модели Marco-o1
5
+ pipe = pipeline("text-generation", model="AIDC-AI/Marco-o1")
6
 
7
  def respond(
8
  message,
 
12
  temperature,
13
  top_p,
14
  ):
15
+ messages = [system_message]
16
+
17
  for val in history:
18
  if val[0]:
19
+ messages.append(val[0])
20
  if val[1]:
21
+ messages.append(val[1])
22
+
23
+ messages.append(message)
24
+
25
+ # Объединяем все сообщения в одну строку для передачи в модель
26
+ input_text = "\n".join(messages)
27
+
28
+ response = pipe(
29
+ input_text,
30
+ max_length=max_tokens + len(input_text),
31
  temperature=temperature,
32
  top_p=top_p,
33
+ num_return_sequences=1
34
+ )[0]['generated_text']
35
+
36
+ # Извлекаем новый ответ, исключая входные сообщения
37
+ new_response = response[len(input_text):].strip()
38
+
39
+ yield new_response
40
 
41
  """
42
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
 
57
  ],
58
  )
59
 
 
60
  if __name__ == "__main__":
61
+ demo.launch()