Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
-
from
|
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 = [
|
19 |
-
|
20 |
for val in history:
|
21 |
if val[0]:
|
22 |
-
messages.append(
|
23 |
if val[1]:
|
24 |
-
messages.append(
|
25 |
-
|
26 |
-
messages.append(
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
temperature=temperature,
|
35 |
top_p=top_p,
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
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()
|