From aca498128600823d0f7c3f0ac5c4898bde6aa883 Mon Sep 17 00:00:00 2001 From: w5688414 Date: Mon, 22 Apr 2024 13:14:13 +0000 Subject: [PATCH 1/5] Add pipelines documentation --- pipelines/.readthedocs.yaml | 20 +++++ pipelines/docs/package/agents/agents.md | 22 +++++ .../docs/package/docstore/elasticsearch.md | 8 ++ pipelines/docs/package/docstore/faiss.md | 8 ++ pipelines/docs/package/docstore/milvus2.md | 8 ++ pipelines/docs/package/nodes/ranker.md | 8 ++ pipelines/docs/package/nodes/reader.md | 8 ++ pipelines/docs/package/nodes/retriever.md | 52 ++++++++++++ .../package/pipelines/standard_pipelines.md | 8 ++ .../docs/package/rest_api/application.md | 8 ++ pipelines/docs/package/rest_api/controller.md | 36 +++++++++ pipelines/docs/package/rest_api/schema.md | 8 ++ pipelines/docs/requirements.txt | 8 ++ pipelines/mkdocs.yml | 81 +++++++++++++++++++ pipelines/pipelines/nodes/retriever/dense.py | 1 - 15 files changed, 283 insertions(+), 1 deletion(-) create mode 100644 pipelines/.readthedocs.yaml create mode 100644 pipelines/docs/package/agents/agents.md create mode 100644 pipelines/docs/package/docstore/elasticsearch.md create mode 100644 pipelines/docs/package/docstore/faiss.md create mode 100644 pipelines/docs/package/docstore/milvus2.md create mode 100644 pipelines/docs/package/nodes/ranker.md create mode 100644 pipelines/docs/package/nodes/reader.md create mode 100644 pipelines/docs/package/nodes/retriever.md create mode 100644 pipelines/docs/package/pipelines/standard_pipelines.md create mode 100644 pipelines/docs/package/rest_api/application.md create mode 100644 pipelines/docs/package/rest_api/controller.md create mode 100644 pipelines/docs/package/rest_api/schema.md create mode 100644 pipelines/docs/requirements.txt create mode 100644 pipelines/mkdocs.yml diff --git a/pipelines/.readthedocs.yaml b/pipelines/.readthedocs.yaml new file mode 100644 index 000000000000..e7e5e27fc3cf --- /dev/null +++ b/pipelines/.readthedocs.yaml @@ -0,0 +1,20 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +mkdocs: + configuration: mkdocs.yml + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file diff --git a/pipelines/docs/package/agents/agents.md b/pipelines/docs/package/agents/agents.md new file mode 100644 index 000000000000..8ebc8c3c5f6d --- /dev/null +++ b/pipelines/docs/package/agents/agents.md @@ -0,0 +1,22 @@ +# Agent Module + +::: pipelines.agents.base + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + members: + - Agent + - ToolsManager + - Tool + + +::: pipelines.agents.agent_step + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + members: + - AgentStep diff --git a/pipelines/docs/package/docstore/elasticsearch.md b/pipelines/docs/package/docstore/elasticsearch.md new file mode 100644 index 000000000000..67af4bad8052 --- /dev/null +++ b/pipelines/docs/package/docstore/elasticsearch.md @@ -0,0 +1,8 @@ +# Elasticsearch Module + +::: pipelines.document_stores.elasticsearch + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/docstore/faiss.md b/pipelines/docs/package/docstore/faiss.md new file mode 100644 index 000000000000..5b70ea088f92 --- /dev/null +++ b/pipelines/docs/package/docstore/faiss.md @@ -0,0 +1,8 @@ +# FAISS Module + +::: pipelines.document_stores.faiss + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/docstore/milvus2.md b/pipelines/docs/package/docstore/milvus2.md new file mode 100644 index 000000000000..767c3fed1cda --- /dev/null +++ b/pipelines/docs/package/docstore/milvus2.md @@ -0,0 +1,8 @@ +# Milvus2 Module + +::: pipelines.document_stores.milvus2 + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/ranker.md b/pipelines/docs/package/nodes/ranker.md new file mode 100644 index 000000000000..0221a53864c5 --- /dev/null +++ b/pipelines/docs/package/nodes/ranker.md @@ -0,0 +1,8 @@ +# Ranker Module + +::: pipelines.nodes.ranker.ernie_ranker + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/reader.md b/pipelines/docs/package/nodes/reader.md new file mode 100644 index 000000000000..0612c6922848 --- /dev/null +++ b/pipelines/docs/package/nodes/reader.md @@ -0,0 +1,8 @@ +# Reader Module + +::: pipelines.nodes.reader.ernie_dureader + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/retriever.md b/pipelines/docs/package/nodes/retriever.md new file mode 100644 index 000000000000..b514a746f0a0 --- /dev/null +++ b/pipelines/docs/package/nodes/retriever.md @@ -0,0 +1,52 @@ +# Retriever Module + +::: pipelines.nodes.retriever.dense + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.retriever.embedder + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.retriever.ernie_encoder + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.retriever.multimodal_retriever + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.retriever.parallel_retriever + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.retriever.sparse + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.retriever.web + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/pipelines/standard_pipelines.md b/pipelines/docs/package/pipelines/standard_pipelines.md new file mode 100644 index 000000000000..f96b01f434d3 --- /dev/null +++ b/pipelines/docs/package/pipelines/standard_pipelines.md @@ -0,0 +1,8 @@ +# Pipeline Module + +::: pipelines.pipelines.standard_pipelines + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/rest_api/application.md b/pipelines/docs/package/rest_api/application.md new file mode 100644 index 000000000000..63a92a3a1897 --- /dev/null +++ b/pipelines/docs/package/rest_api/application.md @@ -0,0 +1,8 @@ +# Application Module + +::: rest_api.application + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/rest_api/controller.md b/pipelines/docs/package/rest_api/controller.md new file mode 100644 index 000000000000..fed96c36ea58 --- /dev/null +++ b/pipelines/docs/package/rest_api/controller.md @@ -0,0 +1,36 @@ +# Controller Module + +::: rest_api.controller.document + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: rest_api.controller.feedback + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: rest_api.controller.file_upload + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: rest_api.controller.router + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: rest_api.controller.search + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/rest_api/schema.md b/pipelines/docs/package/rest_api/schema.md new file mode 100644 index 000000000000..72cbb376c2a8 --- /dev/null +++ b/pipelines/docs/package/rest_api/schema.md @@ -0,0 +1,8 @@ +# Schema Module + +::: rest_api.schema + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/requirements.txt b/pipelines/docs/requirements.txt new file mode 100644 index 000000000000..0f055ea8190a --- /dev/null +++ b/pipelines/docs/requirements.txt @@ -0,0 +1,8 @@ +mkdocs +mkdocstrings[python] +mkdocstrings-python +mkdocs-material +mkdocs-jupyter +griffe +mkdocs-rss-plugin +mkdocs-material[imaging] \ No newline at end of file diff --git a/pipelines/mkdocs.yml b/pipelines/mkdocs.yml new file mode 100644 index 000000000000..da15c8a459ba --- /dev/null +++ b/pipelines/mkdocs.yml @@ -0,0 +1,81 @@ +site_name: PaddleNLP-Pipelines +repo_url: https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines +repo_name: PaddleNLP-Pipelines +site_url: https://ernie-bot-agent.readthedocs.io/zh-cn/latest/ +site_description: provides an easy-to-use paddlenlp application tool suite. + +nav: +- Pipelines module: + - Pipeline: 'package/pipelines/standard_pipelines.md' + +- Nodes module: + - retriever: 'package/nodes/retriever.md' + - ranker: 'package/nodes/ranker.md' + - reader: 'package/nodes/reader.md' + +- Memory module: + - faiss: 'package/docstore/faiss.md' + - elasticsearch: 'package/docstore/elasticsearch.md' + - milvus2: 'package/docstore/milvus2.md' + +- Agents: 'package/agents/agents.md' + +- Server module: + - application: 'package/rest_api/application.md' + - controller: 'package/rest_api/controller.md' + - schema: 'package/rest_api/schema.md' + + +copyright: Copyright © 2023 - Now PaddlePaddle Community + + +theme: + language: zh + name: material + features: + - navigation.tabs.sticky + - toc.integrate + - navigation.footer + - navigation.indexes + - navigation.sections + - navigation.tabs + - navigation.top + - navigation.tracking + font: + text: Noto Serif Simplified Chinese + code: Noto Serif Simplified Chinese + +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + line_spans: __span + pygments_lang_class: true + - pymdownx.inlinehilite + - pymdownx.superfences + - admonition + - pymdownx.details + - admonition + - pymdownx.snippets: + check_paths: true + - pymdownx.tabbed + - toc: + permalink: true + + +plugins: + - search + - mkdocs-jupyter: + ignore_h1_titles: True + - mkdocstrings: + default_handler: python + handlers: + python: + options: + show_bases: false + show_root_heading: true + docstring_style: sphinx + paths: [] + selection: + filters: + - "^__init__$" # but always include __init__ modules and methods + \ No newline at end of file diff --git a/pipelines/pipelines/nodes/retriever/dense.py b/pipelines/pipelines/nodes/retriever/dense.py index 4daa2f655cba..3cd7ea120719 100644 --- a/pipelines/pipelines/nodes/retriever/dense.py +++ b/pipelines/pipelines/nodes/retriever/dense.py @@ -85,7 +85,6 @@ def __init__( | query_embedding_model="model_directory/question-encoder", | passage_embedding_model="model_directory/context-encoder") ``` - :param document_store: An instance of DocumentStore from which to retrieve documents. :param query_embedding_model: Local path or remote name of question encoder checkpoint. The format equals the one used by paddlenlp transformers' models From 301bde30f50ac31fdd322b363f7e078c67c01e33 Mon Sep 17 00:00:00 2001 From: w5688414 Date: Mon, 22 Apr 2024 13:26:07 +0000 Subject: [PATCH 2/5] Update pipeline docs --- pipelines/docs/package/rest_api/schema.md | 8 -------- pipelines/mkdocs.yml | 7 ++++--- 2 files changed, 4 insertions(+), 11 deletions(-) delete mode 100644 pipelines/docs/package/rest_api/schema.md diff --git a/pipelines/docs/package/rest_api/schema.md b/pipelines/docs/package/rest_api/schema.md deleted file mode 100644 index 72cbb376c2a8..000000000000 --- a/pipelines/docs/package/rest_api/schema.md +++ /dev/null @@ -1,8 +0,0 @@ -# Schema Module - -::: rest_api.schema - options: - summary: true - separate_signature: true - show_signature_annotations: true - line_length: 60 diff --git a/pipelines/mkdocs.yml b/pipelines/mkdocs.yml index da15c8a459ba..f2954c2e49c6 100644 --- a/pipelines/mkdocs.yml +++ b/pipelines/mkdocs.yml @@ -18,15 +18,16 @@ nav: - elasticsearch: 'package/docstore/elasticsearch.md' - milvus2: 'package/docstore/milvus2.md' -- Agents: 'package/agents/agents.md' +- Agents module: + - agent: 'package/agents/agents.md' + - memory: 'package/agents/memory.md' - Server module: - application: 'package/rest_api/application.md' - controller: 'package/rest_api/controller.md' - - schema: 'package/rest_api/schema.md' -copyright: Copyright © 2023 - Now PaddlePaddle Community +copyright: Copyright © 2024 - Now PaddlePaddle Community theme: From 94154302d94e0d617d907b332e41d302850485a1 Mon Sep 17 00:00:00 2001 From: w5688414 Date: Mon, 22 Apr 2024 13:30:32 +0000 Subject: [PATCH 3/5] remove rss module --- pipelines/docs/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/pipelines/docs/requirements.txt b/pipelines/docs/requirements.txt index 0f055ea8190a..e75d8dcda73c 100644 --- a/pipelines/docs/requirements.txt +++ b/pipelines/docs/requirements.txt @@ -4,5 +4,4 @@ mkdocstrings-python mkdocs-material mkdocs-jupyter griffe -mkdocs-rss-plugin mkdocs-material[imaging] \ No newline at end of file From debca2b86fc3f020e7e25821b24a7c3d353bd79b Mon Sep 17 00:00:00 2001 From: w5688414 Date: Mon, 22 Apr 2024 23:43:32 +0000 Subject: [PATCH 4/5] Update docs --- .../docs/package/nodes/answer_extractor.md | 29 +++++++++++++++ .../package/nodes/document_intelligence.md | 15 ++++++++ .../docs/package/nodes/file_converter.md | 37 +++++++++++++++++++ pipelines/docs/package/nodes/llm.md | 34 +++++++++++++++++ pipelines/docs/package/nodes/other.md | 30 +++++++++++++++ pipelines/docs/package/nodes/preprocessor.md | 15 ++++++++ .../docs/package/nodes/question_generator.md | 8 ++++ pipelines/docs/package/nodes/search_engine.md | 15 ++++++++ .../docs/package/nodes/sentiment_analysis.md | 23 ++++++++++++ pipelines/mkdocs.yml | 10 +++++ 10 files changed, 216 insertions(+) create mode 100644 pipelines/docs/package/nodes/answer_extractor.md create mode 100644 pipelines/docs/package/nodes/document_intelligence.md create mode 100644 pipelines/docs/package/nodes/file_converter.md create mode 100644 pipelines/docs/package/nodes/llm.md create mode 100644 pipelines/docs/package/nodes/other.md create mode 100644 pipelines/docs/package/nodes/preprocessor.md create mode 100644 pipelines/docs/package/nodes/question_generator.md create mode 100644 pipelines/docs/package/nodes/search_engine.md create mode 100644 pipelines/docs/package/nodes/sentiment_analysis.md diff --git a/pipelines/docs/package/nodes/answer_extractor.md b/pipelines/docs/package/nodes/answer_extractor.md new file mode 100644 index 000000000000..391501dda858 --- /dev/null +++ b/pipelines/docs/package/nodes/answer_extractor.md @@ -0,0 +1,29 @@ +# Answer Extractor Module + +::: pipelines.nodes.answer_extractor.answer_extractor_preprocessor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.answer_extractor.answer_extractor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.answer_extractor.qa_filter_postprocessor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.answer_extractor.qa_filter + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/document_intelligence.md b/pipelines/docs/package/nodes/document_intelligence.md new file mode 100644 index 000000000000..9c2003bc8322 --- /dev/null +++ b/pipelines/docs/package/nodes/document_intelligence.md @@ -0,0 +1,15 @@ +# Document Intelligence Module + +::: pipelines.nodes.document.document_intelligence + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.document.document_preprocessor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/file_converter.md b/pipelines/docs/package/nodes/file_converter.md new file mode 100644 index 000000000000..230c75ac4abd --- /dev/null +++ b/pipelines/docs/package/nodes/file_converter.md @@ -0,0 +1,37 @@ +# File Converter Module + +::: pipelines.nodes.file_converter.docx + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.file_converter.image + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.file_converter.markdown + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.file_converter.pdf + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.file_converter.txt + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/llm.md b/pipelines/docs/package/nodes/llm.md new file mode 100644 index 000000000000..739da3cd5873 --- /dev/null +++ b/pipelines/docs/package/nodes/llm.md @@ -0,0 +1,34 @@ +# LLM Module + +::: pipelines.nodes.llm.chatglm + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.llm.ernie_bot + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.llm.history + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.llm.prompt_template + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + members: + - LLMPromptTemplate diff --git a/pipelines/docs/package/nodes/other.md b/pipelines/docs/package/nodes/other.md new file mode 100644 index 000000000000..32e7163613bb --- /dev/null +++ b/pipelines/docs/package/nodes/other.md @@ -0,0 +1,30 @@ +# Other Module + +::: pipelines.nodes.other.docs2answers + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.other.join_answers + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.other.join_docs + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.other.route_documents + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/preprocessor.md b/pipelines/docs/package/nodes/preprocessor.md new file mode 100644 index 000000000000..af19b708df19 --- /dev/null +++ b/pipelines/docs/package/nodes/preprocessor.md @@ -0,0 +1,15 @@ +# Preprocesssor Module + +::: pipelines.nodes.preprocessor.preprocessor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.preprocessor.text_splitter + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/question_generator.md b/pipelines/docs/package/nodes/question_generator.md new file mode 100644 index 000000000000..823dc7a1025f --- /dev/null +++ b/pipelines/docs/package/nodes/question_generator.md @@ -0,0 +1,8 @@ +# Question Generator Module + +::: pipelines.nodes.question_generator.question_generator + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/search_engine.md b/pipelines/docs/package/nodes/search_engine.md new file mode 100644 index 000000000000..fb2144224e21 --- /dev/null +++ b/pipelines/docs/package/nodes/search_engine.md @@ -0,0 +1,15 @@ +# Search Engine Module + +::: pipelines.nodes.search_engine.providers + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.search_engine.web + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/docs/package/nodes/sentiment_analysis.md b/pipelines/docs/package/nodes/sentiment_analysis.md new file mode 100644 index 000000000000..8b598f923366 --- /dev/null +++ b/pipelines/docs/package/nodes/sentiment_analysis.md @@ -0,0 +1,23 @@ +# Sentiment Analysis Module + +::: pipelines.nodes.sentiment_analysis.senta_preprocessor + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + + +::: pipelines.nodes.sentiment_analysis.senta_visualization + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 + +::: pipelines.nodes.sentiment_analysis.senta + options: + summary: true + separate_signature: true + show_signature_annotations: true + line_length: 60 diff --git a/pipelines/mkdocs.yml b/pipelines/mkdocs.yml index f2954c2e49c6..ad2e720cd858 100644 --- a/pipelines/mkdocs.yml +++ b/pipelines/mkdocs.yml @@ -12,6 +12,16 @@ nav: - retriever: 'package/nodes/retriever.md' - ranker: 'package/nodes/ranker.md' - reader: 'package/nodes/reader.md' + - preprocessor: 'package/nodes/preprocessor.md' + - file_converter: 'package/nodes/file_converter.md' + - document_intelligence: 'package/nodes/document_intelligence.md' + - llm: 'package/nodes/llm.md' + - quetion_generator: 'package/nodes/question_generator.md' + - search_engine: 'package/nodes/search_engine.md' + - sentiment_analysis: 'package/nodes/sentiment_analysis.md' + - answer_extractor: 'package/nodes/answer_extractor.md' + - other: 'package/nodes/other.md' + - Memory module: - faiss: 'package/docstore/faiss.md' From 4369ce0e010332030aa9f48792f0e31b2e9641a0 Mon Sep 17 00:00:00 2001 From: w5688414 Date: Mon, 22 Apr 2024 23:48:46 +0000 Subject: [PATCH 5/5] Update site url --- pipelines/mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/mkdocs.yml b/pipelines/mkdocs.yml index ad2e720cd858..8037d9775069 100644 --- a/pipelines/mkdocs.yml +++ b/pipelines/mkdocs.yml @@ -1,7 +1,7 @@ site_name: PaddleNLP-Pipelines repo_url: https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines repo_name: PaddleNLP-Pipelines -site_url: https://ernie-bot-agent.readthedocs.io/zh-cn/latest/ +site_url: https://paddlenlp-pipelines.readthedocs.io/zh-cn/latest/ site_description: provides an easy-to-use paddlenlp application tool suite. nav: