vortex123 commited on
Commit
43ef72c
·
verified ·
1 Parent(s): 4497e26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +100 -50
app.py CHANGED
@@ -1,64 +1,114 @@
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,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
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
45
- """
46
- demo = gr.ChatInterface(
47
- respond,
48
- additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
- gr.Slider(
53
- minimum=0.1,
54
- maximum=1.0,
55
- value=0.95,
56
- step=0.05,
57
- label="Top-p (nucleus sampling)",
58
- ),
59
- ],
60
- )
 
 
 
 
61
 
 
 
 
 
 
 
 
62
 
 
63
  if __name__ == "__main__":
64
- demo.launch()
 
1
  import gradio as gr
2
+ from openai import OpenAI
3
 
4
+ # Инициализация клиента для DeepSeek (укажите ваш ключ!)
5
+ client = OpenAI(
6
+ api_key="sk-a02694cf3c8640c9ae60428ee2c5a62e", # <-- ЗАМЕНИТЕ на свой ключ
7
+ base_url="https://api.deepseek.com"
8
+ )
9
 
10
+ # Функция, которая будет вызываться при каждом новом сообщении
11
+ # Она принимает текущее сообщение пользователя и "history" — историю чата
12
+ # в формате Gradio (список кортежей).
13
+ def chat_with_deepseek(user_message, history):
14
+ """
15
+ :param user_message: текст последнего сообщения от пользователя
16
+ :param history: список кортежей ([(user_msg, bot_msg), ...]),
17
+ где хранится вся история переписки
18
+ :return: обновлённая история с добавленным ответом от deepseek-reasoner
19
+ """
20
 
21
+ # Преобразуем history из формата Gradio в формат messages для DeepSeek
22
+ messages = []
23
+ for user_msg, bot_msg in history:
24
+ if user_msg:
25
+ messages.append({"role": "user", "content": user_msg})
26
+ if bot_msg:
27
+ messages.append({"role": "assistant", "content": bot_msg})
 
 
28
 
29
+ # Добавляем новое пользовательское сообщение
30
+ messages.append({"role": "user", "content": user_message})
 
 
 
31
 
32
+ # Обращаемся к deepseek-reasoner, передавая всю историю
33
+ try:
34
+ response = client.chat.completions.create(
35
+ model="deepseek-reasoner",
36
+ messages=messages
37
+ )
38
+ bot_reply = response.choices[0].message.content
39
+ except Exception as e:
40
+ bot_reply = f"Ошибка при обращении к API: {str(e)}"
41
 
42
+ # Возвращаем историю, дополнив её ответом бота
43
+ history.append((user_message, bot_reply))
44
+ return history, history
45
 
46
+ # Настраиваем интерфейс Gradio
47
+ # - elem_id / css / theme позволяют стилизовать под "тёмный" чат
48
+ # - "chatbot" виджет в Gradio уже отображает историю в виде «баблов»
49
+ with gr.Blocks(
50
+ theme=gr.themes.Base(
51
+ primary_hue="slate", # оттенок для кнопок
52
+ secondary_hue="blue", # оттенок для второстепенных элементов
53
+ neutral_hue="slate",
54
+ text_size="md",
55
+ font=["Arial", "sans-serif"],
56
+ ),
57
+ css="""
58
+ body {
59
+ background-color: #111111 !important;
60
+ }
61
+ .block.block--main {
62
+ background-color: #111111 !important;
63
+ }
64
+ .gradio-container {
65
+ color: #ffffff !important;
66
+ }
67
+ /* Дополнительные правки под темный фон */
68
+ #chatbot {
69
+ background-color: #222222 !important;
70
+ }
71
+ """) as demo:
72
 
73
+ gr.Markdown(
74
+ "<h1 style='text-align: center; color: #ffffff;'>Чат с deepseek-reasoner</h1>"
75
+ "<p style='text-align: center; color: #bbbbbb;'>Тёмная тема, многошаговый диалог</p>"
76
+ )
77
 
78
+ # Компонент Chatbot для отображения диалога
79
+ chatbot = gr.Chatbot(label="Диалог").style(height=400)
80
 
81
+ # Поле для ввода текста
82
+ msg = gr.Textbox(
83
+ label="Ваш вопрос",
84
+ placeholder="Напишите сообщение...",
85
+ lines=3
86
+ )
87
+
88
+ # Кнопка отправки
89
+ send_btn = gr.Button("Отправить", variant="primary")
90
+
91
+ # state для хранения истории
92
+ state = gr.State([]) # пустой список истории
93
+
94
+ # Привязываем функцию chat_with_deepseek к нажатию кнопки "Отправить"
95
+ # input: user_message (msg), history (state)
96
+ # output: (chatbot, state) — обновлённая история чата
97
+ send_btn.click(
98
+ fn=chat_with_deepseek,
99
+ inputs=[msg, state],
100
+ outputs=[chatbot, state],
101
+ scroll_to_output=True
102
+ )
103
 
104
+ # Также можно отправлять сообщение, нажав Enter в Textbox
105
+ msg.submit(
106
+ fn=chat_with_deepseek,
107
+ inputs=[msg, state],
108
+ outputs=[chatbot, state],
109
+ scroll_to_output=True
110
+ )
111
 
112
+ # Запуск
113
  if __name__ == "__main__":
114
+ demo.launch(server_name="0.0.0.0", server_port=7860)