Compare commits

..

No commits in common. "d40f5b1f24e184c363e0ebaf7d7365b3e6683cf7" and "841e14a0931df9b6205d74ad1de02b3df2858a98" have entirely different histories.

View File

@ -17,52 +17,19 @@ def setting_page():
for p in providers
]
def add_provider(model_id, base_url, api_key):
try:
with Session(engine) as session:
new_provider = APIProvider(
model_id=model_id if model_id else None,
base_url=base_url if base_url else None,
api_key=api_key if api_key else None
)
session.add(new_provider)
session.commit()
session.refresh(new_provider)
return get_providers()
except Exception as e:
# 抛出错误提示
raise gr.Error(f"添加失败: {str(e)}")
with gr.Blocks() as demo:
gr.Markdown("## API Provider 管理")
with gr.Row():
with gr.Column(scale=1):
model_id_input = gr.Textbox(label="Model ID")
base_url_input = gr.Textbox(label="Base URL")
api_key_input = gr.Textbox(label="API Key")
add_button = gr.Button("添加新API")
# API Provider列表
with gr.Column(scale=3):
with gr.Column(scale=2):
provider_table = gr.DataFrame(
headers=["id" , "model id", "base URL", "API Key"],
headers=["id" , "model id", "URL", "API Key"],
datatype=["number","str", "str", "str"],
interactive=True,
value=get_providers(),
wrap=True,
col_count=(4, "auto")
col_count=(4, "fixed")
)
with gr.Row():
edit_button = gr.Button("编辑选中行")
delete_button = gr.Button("删除选中行")
add_button.click(
fn=add_provider,
inputs=[model_id_input, base_url_input, api_key_input],
outputs=[provider_table]
)
return demo