File size: 4,245 Bytes
f92a51b
 
6eccccd
ec1e4af
11a668a
066c7fe
 
 
 
 
11a668a
8567dc1
 
 
 
 
 
4e195d5
2e6be27
 
05c35aa
8567dc1
 
d8abe74
6eccccd
23a6746
d8abe74
c8178ad
6eccccd
066c7fe
814439a
daec028
2e6be27
d8abe74
c8178ad
74428c3
2e6be27
 
2ed3994
2e6be27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74428c3
 
2e6be27
 
 
 
11a668a
3837476
a375e7b
3837476
 
 
4cbfdb5
11a668a
8567dc1
 
 
066c7fe
74428c3
876e43d
74428c3
 
 
90b0f48
cf9abb6
8567dc1
 
5f5f7cc
8567dc1
74428c3
 
 
404a58d
ef00cd5
8567dc1
209e895
74428c3
066c7fe
11a668a
da2ddf3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import gradio as gr
import requests
import json
import os

# Функция для загрузки системной роли из JSON файла
def load_system_role(role_name):
    with open('system_roles.json', 'r', encoding='utf-8') as file:
        roles = json.load(file)
    return roles.get(role_name, "Ты помощник по умолчанию.")

def load_role_names():
    with open('system_roles.json', 'r', encoding='utf-8') as file:
        roles = json.load(file)
    return list(roles.keys())

def generate(description, system_role_name, max_tokens):
    if not description:
        yield None, None
        return

    system_role = load_system_role(system_role_name)

    headers = {
        'Content-Type': 'application/json',
        'Authorization': f'Bearer {os.getenv("API_KEY")}'
    }

    payload = {
        'messages': [{'role': 'system', 'content': system_role}, {'role': 'user', 'content': description}],
        'max_tokens': max_tokens,
        'model': "gemini-2.0-flash",
        'stream': True
    }

    try:
        response = requests.post(os.getenv("BASE_URL"), headers=headers, json=payload, stream=True, timeout=200)
        response.raise_for_status()

        full_text = ""
        for chunk in response.iter_lines():
            if chunk:
                try:
                    chunk = chunk.decode('utf-8').replace("data: ", "")
                    if chunk == "[DONE]":
                        break
                    chunk_data = json.loads(chunk)
                    if 'choices' in chunk_data and len(chunk_data['choices']) > 0:
                        text_chunk = chunk_data['choices'][0]['delta'].get('content', "")
                        full_text += text_chunk
                        yield full_text, full_text
                except json.JSONDecodeError:
                    continue
        if not full_text:
            yield "**Не удалось получить ответ от сервера.**", "Не удалось получить ответ от сервера."
    except requests.exceptions.RequestException as e:
        print(f"Ошибка запроса: {e}")
        yield f"**Ошибка запроса!**\n\n```\n{e}\n```", f"Ошибка запроса!\n\n{e}"
    except Exception as e:
        print(f"Ошибка: {str(e)}")
        yield "Произошла ошибка при генерации", "Произошла ошибка при генерации"

# Ссылка на файл CSS
css_url = "https://neurixyufi-aihub.static.hf.space/style.css"

# Получение CSS по ссылке
response = requests.get(css_url)
css = response.text + ".gradio-container{max-width: 700px !important} h1{text-align:center}"

# Загрузка названий ролей из JSON файла
role_names = load_role_names()

# UI
with gr.Blocks(css=css) as demo:
    gr.Markdown("# EasyGemini")
    with gr.Tab("Запрос"):
        with gr.Row():
            promt = gr.Textbox(show_label=True, label="Запрос", lines=3)
        with gr.Row():
            with gr.Accordion(label="Помощник", open=False):
                helper_role = gr.Radio(show_label=True, label="Выберите помощника", interactive=True, choices=role_names, value=role_names[0])
    with gr.Tab("Настройки"):
        with gr.Row():
            max_tokens = gr.Slider(show_label=True, label="Максимальное количество символов", minimum=100, maximum=8000, value=4000, step=1)
    with gr.Row():
        text_button = gr.Button("Генерация", variant='primary')
    with gr.Row():
        with gr.Tab("Ответ"):
            text_output = gr.Markdown(show_label=False, value="**Здравствуйте!** Чем я могу Вам помочь сегодня?", container=True)
            with gr.Accordion(label="Без форматирования", open=False):
                text_output_nm = gr.Textbox(show_label=False, value="**Здравствуйте!** Чем я могу Вам помочь сегодня?", lines=3)

    text_button.click(generate, inputs=[promt, helper_role, max_tokens], outputs=[text_output, text_output_nm])

demo.queue(max_size=250, api_open=False).launch()