mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 13:40:55 +00:00
feat: reset rag template
This commit is contained in:
parent
a31feccd64
commit
07b451995e
@ -172,7 +172,9 @@ class RAGTemplateForm(BaseModel):
|
|||||||
@app.post("/template/update")
|
@app.post("/template/update")
|
||||||
async def update_rag_template(form_data: RAGTemplateForm, user=Depends(get_admin_user)):
|
async def update_rag_template(form_data: RAGTemplateForm, user=Depends(get_admin_user)):
|
||||||
# TODO: check template requirements
|
# TODO: check template requirements
|
||||||
app.state.RAG_TEMPLATE = form_data.template
|
app.state.RAG_TEMPLATE = (
|
||||||
|
form_data.template if form_data.template != "" else RAG_TEMPLATE
|
||||||
|
)
|
||||||
return {"status": True, "template": app.state.RAG_TEMPLATE}
|
return {"status": True, "template": app.state.RAG_TEMPLATE}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user