Update app.py
Browse files
app.py
CHANGED
@@ -1,43 +1,31 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import pipeline
|
3 |
|
4 |
-
#
|
5 |
-
|
6 |
-
generator = pipeline('text-generation', model=model_name, tokenizer=model_name)
|
7 |
-
|
8 |
-
def generate(message, chat_history, model, system_prompt):
|
9 |
-
"""Generates a response using the model."""
|
10 |
-
# Объединяем системный промпт и сообщение пользователя для контекста
|
11 |
-
prompt = system_prompt + "\n" + message
|
12 |
-
|
13 |
-
# Генерация ответа моделью
|
14 |
-
responses = generator(prompt, max_length=150, num_return_sequences=1)
|
15 |
-
response = responses[0]['generated_text'].split(prompt)[1] # Извлечение только сгенерированного ответа
|
16 |
-
|
17 |
-
# Обновление истории чата
|
18 |
-
chat_history.append((message, response))
|
19 |
-
return chat_history, ""
|
20 |
|
|
|
21 |
DEFAULT_SYSTEM_PROMPT = """
|
22 |
You are a helpful assistant in normal conversation.
|
23 |
When given a problem to solve, you are an expert problem-solving assistant.
|
24 |
Your task is to provide a detailed, step-by-step solution to a given question.
|
25 |
"""
|
26 |
|
|
|
27 |
def clear_chat():
|
28 |
return [], ""
|
29 |
|
|
|
30 |
with gr.Blocks() as demo:
|
31 |
gr.Markdown("# Custom Chat Interface")
|
32 |
|
33 |
with gr.Row():
|
34 |
-
model_dropdown = gr.Dropdown(choices=[
|
35 |
|
36 |
system_prompt = gr.Textbox(value=DEFAULT_SYSTEM_PROMPT, lines=5, label="System Prompt")
|
37 |
chatbot = gr.Chatbot(label="Chat")
|
38 |
msg = gr.Textbox(label="Type your message here...", placeholder="Enter your message...")
|
39 |
|
40 |
-
msg.submit(
|
41 |
gr.Button("Clear Chat").click(clear_chat, inputs=None, outputs=[chatbot, msg])
|
42 |
|
43 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
+
# Загрузка Gradio интерфейса из Hugging Face Spaces
|
4 |
+
interface = gr.load("models/Mixtral-8x7B-Instruct-v0.1")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
+
# Настройка системного промпта
|
7 |
DEFAULT_SYSTEM_PROMPT = """
|
8 |
You are a helpful assistant in normal conversation.
|
9 |
When given a problem to solve, you are an expert problem-solving assistant.
|
10 |
Your task is to provide a detailed, step-by-step solution to a given question.
|
11 |
"""
|
12 |
|
13 |
+
# Определение функции для очистки чата
|
14 |
def clear_chat():
|
15 |
return [], ""
|
16 |
|
17 |
+
# Создание интерфейса с пользовательскими элементами
|
18 |
with gr.Blocks() as demo:
|
19 |
gr.Markdown("# Custom Chat Interface")
|
20 |
|
21 |
with gr.Row():
|
22 |
+
model_dropdown = gr.Dropdown(choices=["Mixtral-8x7B-Instruct-v0.1"], label="Select Model", value="Mixtral-8x7B-Instruct-v0.1")
|
23 |
|
24 |
system_prompt = gr.Textbox(value=DEFAULT_SYSTEM_PROMPT, lines=5, label="System Prompt")
|
25 |
chatbot = gr.Chatbot(label="Chat")
|
26 |
msg = gr.Textbox(label="Type your message here...", placeholder="Enter your message...")
|
27 |
|
28 |
+
msg.submit(interface, inputs=[msg, chatbot, model_dropdown, system_prompt], outputs=[chatbot, msg])
|
29 |
gr.Button("Clear Chat").click(clear_chat, inputs=None, outputs=[chatbot, msg])
|
30 |
|
31 |
demo.launch()
|