|
import gradio as gr |
|
from openai import OpenAI |
|
|
|
|
|
client = OpenAI( |
|
api_key="sk-a02694cf3c8640c9ae60428ee2c5a62e", |
|
base_url="https://api.deepseek.com" |
|
) |
|
|
|
def chat_with_deepseek(user_message, history): |
|
""" |
|
user_message: строка, введённая пользователем. |
|
history: список словарей [{"role":"user"|"assistant","content":"..."}], |
|
формат Gradio Chatbot (type="messages"). |
|
|
|
Возвращает (new_history, new_history, ""), где: |
|
- new_history — обновлённая история (чат) в формате messages |
|
- "" — чтобы очистить поле ввода |
|
""" |
|
|
|
messages = [] |
|
for h in history: |
|
messages.append({"role": h["role"], "content": h["content"]}) |
|
|
|
|
|
messages.append({"role": "user", "content": user_message}) |
|
|
|
|
|
try: |
|
response = client.chat.completions.create( |
|
model="deepseek-reasoner", |
|
messages=messages |
|
) |
|
assistant_content = response.choices[0].message.content |
|
except Exception as e: |
|
assistant_content = f"Ошибка при обращении к API: {e}" |
|
|
|
|
|
new_history = history + [ |
|
{"role": "user", "content": user_message}, |
|
{"role": "assistant", "content": assistant_content} |
|
] |
|
|
|
return new_history, new_history, "" |
|
|
|
with gr.Blocks( |
|
theme=gr.themes.Base( |
|
primary_hue="slate", |
|
secondary_hue="blue", |
|
neutral_hue="slate", |
|
text_size="md", |
|
font=["Arial", "sans-serif"] |
|
), |
|
css=""" |
|
/* Фон приложения чёрный */ |
|
body { |
|
background-color: #000000 !important; |
|
} |
|
.block.block--main { |
|
background-color: #000000 !important; |
|
} |
|
.gradio-container { |
|
color: #ffffff !important; |
|
} |
|
/* Фон области чата */ |
|
#chatbot { |
|
background-color: #111111 !important; |
|
} |
|
""" |
|
) as demo: |
|
|
|
|
|
gr.HTML(""" |
|
<h1 style="text-align:center; color:#ffffff;">Чат с deepseek-reasoner</h1> |
|
<p style="text-align:center; color:#cccccc;"> |
|
<b>Enter</b> — отправить, <b>Ctrl+Enter</b> — новая строка |
|
</p> |
|
""") |
|
|
|
|
|
chatbot = gr.Chatbot( |
|
label="Диалог", |
|
height=400, |
|
type="messages", |
|
elem_id="chatbot" |
|
) |
|
|
|
|
|
msg = gr.Textbox( |
|
label="Ваш вопрос", |
|
placeholder="Введите сообщение...", |
|
lines=2, |
|
elem_id="user_input", |
|
) |
|
|
|
|
|
hidden_send_btn = gr.Button( |
|
"Скрытая кнопка", |
|
visible=False, |
|
elem_id="hidden_send_btn" |
|
) |
|
|
|
|
|
state = gr.State([]) |
|
|
|
|
|
hidden_send_btn.click( |
|
fn=chat_with_deepseek, |
|
inputs=[msg, state], |
|
outputs=[chatbot, state, msg], |
|
scroll_to_output=True |
|
) |
|
|
|
|
|
|
|
|
|
custom_js = """ |
|
<script> |
|
window.addEventListener('load', function() { |
|
const userInput = document.querySelector('#user_input textarea'); |
|
const sendButton = document.querySelector('#hidden_send_btn button'); |
|
|
|
if (userInput && sendButton) { |
|
userInput.addEventListener('keydown', function(e) { |
|
if (e.key === 'Enter') { |
|
if (e.ctrlKey) { |
|
// Ctrl+Enter => новая строка |
|
e.preventDefault(); |
|
const start = userInput.selectionStart; |
|
const end = userInput.selectionEnd; |
|
userInput.value = userInput.value.substring(0, start) + "\\n" |
|
+ userInput.value.substring(end); |
|
userInput.selectionStart = userInput.selectionEnd = start + 1; |
|
} else { |
|
// Enter => отправка |
|
e.preventDefault(); |
|
sendButton.click(); |
|
} |
|
} |
|
}); |
|
} |
|
}); |
|
</script> |
|
""" |
|
gr.HTML(custom_js) |
|
|
|
|
|
if __name__ == "__main__": |
|
demo.launch(server_name="0.0.0.0", server_port=7860) |
|
|