Skip to content

docs: improve translation and replace images with English versions #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: i18n/en
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,019 changes: 498 additions & 521 deletions docs/changelog.md

Large diffs are not rendered by default.

20 changes: 0 additions & 20 deletions docs/contact.md

This file was deleted.

42 changes: 20 additions & 22 deletions docs/dev_manual/APIKey_chat.md
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
!!! Abstract ""
MaxKB 社区版提供系统应用 API 以及兼容 OpenAI 标准格式进行对话,专业版提供系统级别 API,详细情况见:[系统API ](../user_manual/X-Pack/system_API.md)
The MaxKB community edition provides system application APIs and supports conversation in a format compatible with the OpenAI standard. The professional edition offers system-level APIs. For more details, refer to: [System API](../user_manual/X-Pack/system_API.md).

## 1 应用API
## 1 Application API

### 1.1 打开API文档
### 1.1 Open API Documentation

!!! Abstract ""
在应用信息中复制并访问 swagger 地址。
Copy and access the swagger address from the application information.

![API doc](../img/dev/app_swaagger.png)
![API doc](../img/dev/app_swagger.png)

### 1.2 API Key Authentication

### 1.2 API Key认证

![APIKEY](../img/dev/app_apikey.png)

### 1.3 获取应用信息
### 1.3 Retrieve Application Information

!!! Abstract ""
调用 profile 接口,获取应用详细信息(应用 id、name等)。
![ profile](../img/dev/app_profile.png)
Call the profile interface to get detailed application information (such as application ID, name, etc.).

![profile](../img/dev/app_profile.png)

### 1.4 打开会话
### 1.4 Open a Session

!!! Abstract ""
调用打开会话接口,输入上述步骤获取的应用 id,打开会话并获取会话 id。
Call the open session interface, enter the application ID obtained in the steps above, open a session, and obtain a session ID.

![appid](../img/dev/chat_open.png)

### 1.5 进行对话
### 1.5 Conduct a Conversation

!!! Abstract ""
调用对话接口,输入会话 id 进行对话。
Call the conversation interface, and enter the session ID to conduct a conversation.

![chatid](../img/dev/app_chat.png)

## 2 标准OpenAI 格式
## 2 Standard OpenAI Format

!!! Abstract ""
MaxKB 应用兼容 OpenAI API 格式,在OpenAI API 原有调用方式的基础上替换为 MaxKB 应用提供的 Base URL 以及 API Key 即可。
The MaxKB application is compatible with the OpenAI API format. You can replace the original OpenAI API Base URL and API Key with those provided by the MaxKB application.

![API doc](../img/dev/openai_baseurl.png)

!!! Abstract ""

```
# 将url 和 Authorization 替换为 MaxKB 应用实际真实的 Base URL API Key
# Replace the URL and Authorization with the actual Base URL and API Key from the MaxKB application.

curl https://maxkb.fit2cloud.com/api/application/xxxxxxxx-8c56-11ef-a99e-0242ac140003/chat/completions \
-H "Content-Type: application/json" \
Expand All @@ -54,11 +54,9 @@
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "你是杭州飞致云信息科技有限公司旗下产品 MaxKB 知识库问答系统的智能小助手,你的工作是帮助 MaxKB 用户解答使用中遇到的问题,用户找你回答问题时,你要把主题放在 MaxKB 知识库问答系统身上。",
"content": "MaxKB 是什么?"
"role": "You are the intelligent assistant of MaxKB, a product under Hangzhou Fit2Cloud Technology. Your job is to assist MaxKB users in solving problems they encounter during usage. When users come to you with questions, make sure to focus on the MaxKB Q&A system.",
"content": "What is MaxKB?"
}
]
}'
```


29 changes: 14 additions & 15 deletions docs/faq/GPU_runOllama.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,47 @@
# 如何让Ollama使用GPU运行LLM模型
# How to Run LLM Models on Ollama Using GPU

!!! Abstract ""
NVIDIA 为例,说明 Ollama GPU 模式运行大模型的具体操作。
Using NVIDIA as an example, this guide explains the specific steps to run large models on Ollama in GPU mode.


## 1 安装英伟达容器安装包
## 1 Install NVIDIA Container Toolkit

!!! Abstract ""
Ubuntu 22.04 为例(其它系统请参考:[英伟达官方文档](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/arch-overview.html)
Using Ubuntu 22.04 as an example (for other systems, please refer to the [NVIDIA official documentation](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/arch-overview.html))

- 配置 apt
- Configure the apt source
```
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
&& curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
```
- 更新源
- Update the source
```
sudo apt-get update
```
- 安装工具包
- Install the toolkit
```
sudo apt-get install -y nvidia-container-toolkit
```

## 2 使用 GPU 运行 Ollama
## 2 Run Ollama Using GPU

!!! Abstract ""
```
# 以后台模式运行 ollama 容器,并允许容器访问主机上所有可用的 NVIDIA GPU
# Run the Ollama container in the background mode and allow the container to access all available NVIDIA GPUs on the host
docker run --gpus all -d -v /opt/ai/ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
```

## 3 使用 Ollama 下载模型
## 3 Download Models Using Ollama

!!! Abstract ""
```
# 在线下载并运行模型
# Download and run models online
docker exec -it ollama ollama run qwen:7b
```

## 4 在 MaxKB 中添加 Ollama 模型
## 4 Add Ollama Models in MaxKB

!!! Abstract ""
下载完成并运行模型服务后,即可在 MaxKB 中添加对应的模型并使用。
![添加模型](../img/FAQ/addmodel.png)
Once the models are downloaded and the model service is running, you can add the corresponding models in MaxKB and use them.
![Add Model](../img/FAQ/addmodel.png)
81 changes: 81 additions & 0 deletions docs/faq/MaxKB_VS_Dify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
!!! Abstract ""

MaxKB and Dify are both open-source projects based on large language model technology, with differences in product positioning and capabilities:

- Different product positioning: Dify is positioned as a development platform for large model applications, falling into the middleware category; MaxKB is positioned as an intelligent Q&A assistant based on large models and RAG, serving as an out-of-the-box final application.
- Product capability comparison: The following table is a capability comparison with LangChain, Flowise and other products provided by Dify's official documentation; MaxKB is an application built on LangChain that fills the gaps in enterprise-level features such as Workflow and SSO that LangChain lacks.

<table style="width: 100%;height: 80%;">
<tr>
<th align="center">Features</th>
<th align="center">Dify.AI</th>
<th align="center">LangChain</th>
<th align="center">Flowise</th>
<th align="center">OpenAI Assistant API</th>
<th align="center">MaxKB(Built on LangChain)</th>
</tr>
<tr>
<td align="center">Programming Method</td>
<td align="center">API + Application-oriented</td>
<td align="center">Python Code</td>
<td align="center">Application-oriented</td>
<td align="center">API-oriented</td>
<td align="center">API + Application-oriented</td>
</tr>
<tr>
<td align="center">Supported LLMs</td>
<td align="center">Rich variety</td>
<td align="center">Rich variety</td>
<td align="center">Rich variety</td>
<td align="center">OpenAI only</td>
<td align="center">Rich variety</td>
</tr>
<tr>
<td align="center">RAG Engine</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">✅</td>
</tr>
<tr>
<td align="center">Agent</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">✅</td>
<td align="center">✅</td>
</tr>
<tr>
<td align="center">Workflow</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">✅</td>
</tr>
<tr>
<td align="center">Observability</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">❌</td>
<td align="center">✅</td>
</tr>
<tr>
<td align="center">Enterprise Features (SSO/Access Control)</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">❌</td>
<td align="center">❌</td>
<td align="center">✅</td>
</tr>
<tr>
<td align="center">Self-hosted Deployment</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">❌</td>
<td align="center">✅</td>
</tr>
</table>
38 changes: 18 additions & 20 deletions docs/faq/Offline_install_OllamaModel.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
# 如何使用Ollama离线部署LLM大语言模型
# How to Deploy LLM Large Language Models Offline Using Ollama

!!! Abstract ""
Using the qwen:0.5b model as an example, this guide details the process and steps for deploying LLM large language models offline with Ollama.

!!! Abstract ""
以 qwen:0.5b 模型为例,详细说明 Ollama 离线部署 LLM 大语言模型的过程和步骤。

### 1 下载模型
### 1 Download the Model

!!! Abstract ""
访问 huggingface 并下载 qwen1_5-0_5b-chat-q5_k_m.gguf 模型文件。
Visit Hugging Face and download the qwen1_5-0_5b-chat-q5_k_m.gguf model file.
```
https://huggingface.co/Qwen/Qwen1.5-0.5B-Chat-GGUF/tree/main
```
![下载模型](../img/FAQ/downModel.png)
![Download Model](../img/FAQ/downModel.png)

### 2 上传模型
### 2 Upload the Model

!!! Abstract ""
将下载好的 Qwen1.5-0.5B-Chat-GGUF 模型文件上传到 Ollama 所在服务器。
Upload the downloaded Qwen1.5-0.5B-Chat-GGUF model file to the server where Ollama is located.

### 3 创建Ollama Modelfile
### 3 Create Ollama Modelfile

!!! Abstract ""
创建一个名为 Modelfile 的文件,内容如下:
Create a file named Modelfile with the following content:
```
FROM ./qwen1_5-0_5b-chat-q5_k_m.gguf

Expand All @@ -34,25 +33,24 @@
PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
```
说明:不同模型的 Modelfile 内容不同,可参考 Ollama 官网 [参数设置](https://ollama.com/library/qwen:0.5b) 。

![模型参数模版](../img/FAQ/modelSetting.png)
Note: The content of the Modelfile varies for different models. You can refer to the Ollama official website for [parameter settings](https://ollama.com/library/qwen:0.5b).

![Model Parameter Template](../img/FAQ/modelSetting.png)

## 4 在 Ollama 中创建模型
## 4 Create the Model in Ollama

!!! Abstract ""
执行以下命令,创建模型:
Execute the following command to create the model:
```
ollama create qwen:0.5b -f Modelfile
```
执行以下命令,确认模型创建成功:
Execute the following command to confirm successful model creation:
```
ollama list
```

![ollama查看模型列表](../img/FAQ/ollamaList.png)
![View Model List in Ollama](../img/FAQ/ollamaList.png)

## 5 在 MaxKB 中添加已创建的私有模型
## 5 Add the Created Private Model in MaxKB

![MaxKB中添加模型](../img/FAQ/MaxKBaddModel.png)
![Add Model in MaxKB](../img/FAQ/MaxKBaddModel.png)
8 changes: 4 additions & 4 deletions docs/faq/maxkb_In_halo.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MaxKB 小助手集成到 Halo 中
# Integrate MaxKB Assistant into Halo

!!! Abstract ""
[Halo](https://github.com/halo-dev/halo) [ˈheɪloʊ],强大易用的开源建站工具。通过 MaxKB 小助手插件,可以将文章内容同步至 MaxKB 知识库,并可通过浮窗模式为网站提供智能问答。
有关 MaxKB 小助手插件的使用说明,请查看 [官方文档](https://www.halo.run/store/apps/app-aWHcE)
[Halo](https://github.com/halo-dev/halo) [ˈheɪloʊ] is a powerful and user-friendly open-source site-building tool. Through the MaxKB Assistant plugin, you can synchronize article content to the MaxKB knowledge base and provide intelligent Q&A on the website through a floating window mode.
For instructions on using the MaxKB Assistant plugin, please refer to the [official documentation](https://www.halo.run/store/apps/app-aWHcE).

![halo](../img/FAQ/halo.png)
![halo](../img/FAQ/halo.png)
Binary file modified docs/img/FAQ/MaxKBaddModel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/FAQ/addmodel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/img/app/Access restrictions.png
Binary file not shown.
Binary file modified docs/img/app/QA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/app/access_restrictions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/ai_chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app-closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_auth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_export.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_function.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_hittesting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_import.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_password1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_password2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_setting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_subapp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/app_workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/audio2text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/auto_save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/condition_statement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/dataset_search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/defult_workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/direct_reply.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/doc_extract.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/app/embed.png
Binary file modified docs/img/app/exec_detail.png
Binary file modified docs/img/app/form.png
Binary file modified docs/img/app/log_detail.png
Binary file modified docs/img/app/log_details_edit.png
Binary file modified docs/img/app/loglist.png
Binary file modified docs/img/app/node_condition.png
Binary file modified docs/img/app/picture_extract.png
Binary file modified docs/img/app/question_opt.png
Binary file modified docs/img/app/rerank.png
Binary file modified docs/img/app/selectAppType.png
Binary file modified docs/img/app/start_node.png
Binary file modified docs/img/app/text2audio.png
Binary file modified docs/img/app/upload_config.png
Binary file modified docs/img/app/user_input.png
Binary file modified docs/img/app/view_setting.png
Binary file modified docs/img/app/vision_gen.png
Binary file modified docs/img/app/workflow.png
Binary file modified docs/img/app/workflow_view.png
Binary file removed docs/img/dataset/DataEase_doc.png
Diff not rendered.
Binary file modified docs/img/dataset/add_segmentation.png
Binary file modified docs/img/dataset/advanced_segmentation.png
Binary file modified docs/img/dataset/auto_paragraph.png
Binary file modified docs/img/dataset/automatic_paragraphing.png
Binary file modified docs/img/dataset/create.jpg
Binary file modified docs/img/dataset/create_offline_dataset.png
Binary file modified docs/img/dataset/create_problem.png
Binary file modified docs/img/dataset/dataset_actions.png
Binary file modified docs/img/dataset/dataset_del.png
Binary file modified docs/img/dataset/dataset_embedding.png
Binary file modified docs/img/dataset/dataset_export.png
Binary file modified docs/img/dataset/dataset_file_export.png
Binary file modified docs/img/dataset/dataset_setting.png
Binary file modified docs/img/dataset/del_segmentation.png
Binary file modified docs/img/dataset/doc_delete.png
Binary file modified docs/img/dataset/doc_enable.png
Binary file modified docs/img/dataset/doc_setting.png
Binary file modified docs/img/dataset/edit_segmentation.png
Binary file modified docs/img/dataset/gen_question.png
Binary file modified docs/img/dataset/hittesting.png
Binary file modified docs/img/dataset/move_segmentation.png
Binary file modified docs/img/dataset/move_web_doc.png
Binary file modified docs/img/dataset/preview_segmentation.png
Binary file modified docs/img/dataset/problem_detail.png
Binary file modified docs/img/dataset/problem_list.png
Binary file modified docs/img/dataset/problem_segmentation.png
Binary file modified docs/img/dataset/processing.png
Binary file modified docs/img/dataset/segmentation_management.png
Binary file modified docs/img/dataset/sysn_dataset.png
Binary file modified docs/img/dataset/sysn_web_doc.png
Binary file modified docs/img/dataset/titel_set_question.png
Binary file modified docs/img/dataset/upload_web_doc.png
Binary file modified docs/img/dataset/view_edit.png
Binary file removed docs/img/dataset/web_ sync.png
Diff not rendered.
Binary file modified docs/img/dataset/web_dataset.png
Binary file modified docs/img/dataset/web_doc.png
Binary file added docs/img/dataset/web_doc_content_area.png
Binary file added docs/img/dataset/web_sync.png
Binary file modified docs/img/dev/app_apikey.png
Binary file modified docs/img/dev/app_chat.png
Binary file modified docs/img/dev/app_profile.png
Binary file removed docs/img/dev/app_swaagger.png
Diff not rendered.
Binary file added docs/img/dev/app_swagger.png
Binary file modified docs/img/dev/chat_open.png
Binary file modified docs/img/dev/openai_baseurl.png
Binary file modified docs/img/fx/add_fx.png
Binary file modified docs/img/fx/copy_fx.jpg
Binary file modified docs/img/fx/del_fx.png
Binary file modified docs/img/fx/fx_debug.png
Binary file modified docs/img/fx/use_del_fx.png
Binary file modified docs/img/fx/use_fx.png
Binary file modified docs/img/index/1panel.jpg
Binary file modified docs/img/index/1panel_maxkb.jpg
Binary file modified docs/img/index/UI.jpg
Binary file modified docs/img/index/login.jpg
Binary file modified docs/img/index/maxkb-start.jpg
Binary file modified docs/img/index/maxkb_setting.jpg
Binary file modified docs/img/model/AWS_LLM.png
Binary file removed docs/img/model/aliyun_bailian_apikey.png
Diff not rendered.
Binary file removed docs/img/model/aliyun_bailian_model.png
Diff not rendered.
Binary file modified docs/img/model/aws_embed.png
Binary file modified docs/img/model/azure_model.png
Binary file removed docs/img/model/bailian_asr.png
Diff not rendered.
Binary file removed docs/img/model/bailian_embed.png
Diff not rendered.
Binary file removed docs/img/model/bailian_llm.png
Diff not rendered.
Binary file removed docs/img/model/bailian_reranker.png
Diff not rendered.
Binary file removed docs/img/model/bailian_tts.png
Diff not rendered.
Binary file removed docs/img/model/bailian_vision.png
Diff not rendered.
Binary file removed docs/img/model/bailian_vision_gen1.png
Diff not rendered.
Binary file removed docs/img/model/bailian_vision_gen2.png
Diff not rendered.
Binary file removed docs/img/model/doubao_APIkey.jpg
Diff not rendered.
Binary file removed docs/img/model/doubao_LLM.jpg
Diff not rendered.
Binary file removed docs/img/model/doubao_gen1.png
Diff not rendered.
Binary file removed docs/img/model/doubao_gen2.png
Diff not rendered.
Binary file removed docs/img/model/doubao_jieru.jpg
Diff not rendered.
Binary file removed docs/img/model/doubao_jieru.png
Diff not rendered.
Binary file removed docs/img/model/doubao_llm.png
Diff not rendered.
Binary file removed docs/img/model/doubao_llm_apikey.png
Diff not rendered.
Binary file removed docs/img/model/doubao_stt.png
Diff not rendered.
Binary file removed docs/img/model/doubao_stt_model.png
Diff not rendered.
Binary file removed docs/img/model/doubao_tts.png
Diff not rendered.
Binary file removed docs/img/model/doubao_tts_model.png
Diff not rendered.
Binary file removed docs/img/model/doubao_vision.png
Diff not rendered.
Binary file modified docs/img/model/gemini_llm.png
Binary file removed docs/img/model/hunyuan_LLM.jpg
Diff not rendered.
Binary file removed docs/img/model/hunyuan_LLM.png
Diff not rendered.
Binary file removed docs/img/model/hunyuan_embed.png
Diff not rendered.
Binary file removed docs/img/model/hunyuan_vision.png
Diff not rendered.
Binary file removed docs/img/model/hunyuan_vision_gen1.png
Diff not rendered.
Binary file removed docs/img/model/hunyuan_vision_gen2.png
Diff not rendered.
Binary file removed docs/img/model/kimi_apikey.png
Diff not rendered.
Binary file removed docs/img/model/kimi_llm.png
Diff not rendered.
Binary file removed docs/img/model/kimi_model.png
Diff not rendered.
Binary file modified docs/img/model/local_embed.png
Binary file modified docs/img/model/local_reranker.png
Binary file modified docs/img/model/model_add_para.png
Binary file modified docs/img/model/model_para_setting.png
Binary file modified docs/img/model/ollama_embedding_model.png
Binary file modified docs/img/model/ollama_model.png
Binary file modified docs/img/model/ollama_vision.png
Binary file modified docs/img/model/openai_asr.png
Binary file modified docs/img/model/openai_embed.png
Binary file modified docs/img/model/openai_llm.png
Binary file modified docs/img/model/openai_tts.png
Binary file modified docs/img/model/openai_vision.png
Binary file removed docs/img/model/qianfan-app.png
Diff not rendered.
Binary file removed docs/img/model/qianfan_app.png
Diff not rendered.
Binary file removed docs/img/model/qianfan_embedding.png
Diff not rendered.
Binary file removed docs/img/model/qianfan_model.jpg
Diff not rendered.
Binary file removed docs/img/model/qianfan_model.png
Diff not rendered.
Binary file removed docs/img/model/tencent_apikey.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_apikey.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_llm.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_model.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_vision.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_vision_gen1.png
Diff not rendered.
Binary file removed docs/img/model/tongyi_vision_gen2.png
Diff not rendered.
Binary file modified docs/img/model/vLLM_llm.png
Binary file modified docs/img/model/xinfo_asr.png
Binary file modified docs/img/model/xinfo_embed.png
Binary file modified docs/img/model/xinfo_llm.png
Binary file modified docs/img/model/xinfo_reranker.png
Binary file modified docs/img/model/xinfo_tts.png
Binary file removed docs/img/model/xunfei_api.png
Diff not rendered.
Binary file removed docs/img/model/xunfei_app.png
Diff not rendered.
Binary file removed docs/img/model/xunfei_embed.png
Diff not rendered.
Binary file removed docs/img/model/xunfei_iat.png
Diff not rendered.
Binary file removed docs/img/model/xunfei_iat_wss.png
Diff not rendered.
Binary file removed docs/img/model/xunfei_llm.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_apikey.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_llm.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_model.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_vision.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_vision_gen1.png
Diff not rendered.
Binary file removed docs/img/model/zhipu_vision_gen2.png
Diff not rendered.
Binary file modified docs/img/system/CAS.png
Binary file modified docs/img/system/LDAP.png
Binary file modified docs/img/system/OIDC.png
Binary file modified docs/img/system/add_user.png
Binary file modified docs/img/system/apikey.png
Binary file modified docs/img/system/apikey_setting.png
Binary file modified docs/img/system/auth_login.png
Binary file modified docs/img/system/oauth2.png
Binary file modified docs/img/system/swagger_api.png
Binary file modified docs/img/system/theme.png
Binary file modified docs/img/system/user.png
Binary file modified docs/img/team/addMembers.png
Binary file modified docs/img/team/del_member.png
Binary file modified docs/img/team/permission_setting.png
Binary file modified docs/img/team/teamlist.png
44 changes: 0 additions & 44 deletions docs/installation/aliyun.md

This file was deleted.

Loading