From 744759704d1f72a0e26dc58138b7ad94e43b64e3 Mon Sep 17 00:00:00 2001 From: binary-husky Date: Mon, 29 Apr 2024 23:53:41 +0800 Subject: [PATCH] allow personal docx api access --- crazy_functions/PDF批量翻译.py | 3 ++- request_llms/bridge_all.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/crazy_functions/PDF批量翻译.py b/crazy_functions/PDF批量翻译.py index dddc8f2..485864e 100644 --- a/crazy_functions/PDF批量翻译.py +++ b/crazy_functions/PDF批量翻译.py @@ -74,7 +74,8 @@ def 解析PDF_DOC2X_单文件(fp, project_folder, llm_kwargs, plugin_kwargs, cha import requests, json, os markdown_dir = get_log_folder(plugin_name="pdf_ocr") doc2x_api_key = DOC2X_API_KEY - url = "https://api.doc2x.noedgeai.com/api/v1/pdf" + # url = "https://api.doc2x.noedgeai.com/api/v1/pdf" + url = "https://api.doc2x.noedgeai.com/api/platform/pdf" chatbot.append((None, "加载PDF文件,发送至DOC2X解析...")) yield from update_ui(chatbot=chatbot, history=history) # 刷新界面 diff --git a/request_llms/bridge_all.py b/request_llms/bridge_all.py index d20e033..7213c52 100644 --- a/request_llms/bridge_all.py +++ b/request_llms/bridge_all.py @@ -797,6 +797,7 @@ for model in [m for m in AVAIL_LLM_MODELS if m.startswith("one-api-")]: model: { "fn_with_ui": chatgpt_ui, "fn_without_ui": chatgpt_noui, + "can_multi_thread": True, "endpoint": openai_endpoint, "max_token": max_token_tmp, "tokenizer": tokenizer_gpt35,