瀏覽代碼

chore: requirements

Timothy Jaeryang Baek 5 月之前
父節點
當前提交
d68aa5c708
共有 3 個文件被更改,包括 6 次插入7 次删除
  1. 2 3
      backend/open_webui/apps/retrieval/main.py
  2. 2 2
      backend/requirements.txt
  3. 2 2
      pyproject.toml

+ 2 - 3
backend/open_webui/apps/retrieval/main.py

@@ -1060,10 +1060,9 @@ def process_youtube_video(form_data: ProcessUrlForm, user=Depends(get_verified_u
             collection_name = calculate_sha256_string(form_data.url)[:63]
             collection_name = calculate_sha256_string(form_data.url)[:63]
 
 
         loader = YoutubeLoader.from_youtube_url(
         loader = YoutubeLoader.from_youtube_url(
-            form_data.url,
-            language=app.state.config.YOUTUBE_LOADER_LANGUAGE,
-            translation=app.state.YOUTUBE_LOADER_TRANSLATION,
+            form_data.url, language=app.state.config.YOUTUBE_LOADER_LANGUAGE
         )
         )
+
         docs = loader.load()
         docs = loader.load()
         content = " ".join([doc.page_content for doc in docs])
         content = " ".join([doc.page_content for doc in docs])
         log.debug(f"text_content: {content}")
         log.debug(f"text_content: {content}")

+ 2 - 2
backend/requirements.txt

@@ -37,8 +37,8 @@ anthropic
 google-generativeai==0.7.2
 google-generativeai==0.7.2
 tiktoken
 tiktoken
 
 
-langchain==0.3.5
-langchain-community==0.3.3
+langchain==0.3.7
+langchain-community==0.3.7
 langchain-chroma==0.1.4
 langchain-chroma==0.1.4
 
 
 fake-useragent==1.5.1
 fake-useragent==1.5.1

+ 2 - 2
pyproject.toml

@@ -44,8 +44,8 @@ dependencies = [
     "google-generativeai==0.7.2",
     "google-generativeai==0.7.2",
     "tiktoken",
     "tiktoken",
 
 
-    "langchain==0.3.5",
-    "langchain-community==0.3.3",
+    "langchain==0.3.7",
+    "langchain-community==0.3.7",
     "langchain-chroma==0.1.4",
     "langchain-chroma==0.1.4",
 
 
     "fake-useragent==1.5.1",
     "fake-useragent==1.5.1",