
- 新增 prompt_store 模块,使用 TinyDB 存储 prompt 模板 - 在全局变量中添加 prompt_store 实例 - 更新 main.py,初始化 prompt 存储 - 新增 prompt 模板的 Pydantic 模型 - 更新 requirements.txt,添加 tinydb 依赖
26 lines
943 B
Python
26 lines
943 B
Python
import gradio as gr
|
|
from frontend.setting_page import setting_page
|
|
from frontend import *
|
|
from db import initialize_sqlite_db,initialize_prompt_store
|
|
from global_var import sql_engine,prompt_store
|
|
|
|
if __name__ == "__main__":
|
|
initialize_sqlite_db(sql_engine)
|
|
initialize_prompt_store(prompt_store)
|
|
with gr.Blocks() as app:
|
|
gr.Markdown("# 基于文档驱动的自适应编码大模型微调框架")
|
|
with gr.Tabs():
|
|
with gr.TabItem("模型推理"):
|
|
chat_page()
|
|
with gr.TabItem("模型微调"):
|
|
train_page()
|
|
with gr.TabItem("数据集生成"):
|
|
dataset_generate_page()
|
|
with gr.TabItem("数据集管理"):
|
|
dataset_manage_page()
|
|
with gr.TabItem("提示词模板管理"):
|
|
prompt_manage_page()
|
|
with gr.TabItem("设置"):
|
|
setting_page()
|
|
|
|
app.launch() |