Skip to content

Commit

Permalink
merge upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
hehan-wang committed Mar 30, 2024
2 parents be969de + 018424c commit 896fa97
Show file tree
Hide file tree
Showing 1,014 changed files with 40,752 additions and 26,949 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bugs.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ assignees: ''
**你的版本**

- [ ] 公有云版本
- [ ] 私有部署版本
- [ ] 私有部署版本, 具体版本号:

**问题描述**

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 微信交流群
url: https://doc.fastgpt.in/wechat-fastgpt.webp
url: https://oss.laf.run/htr4n1-images/fastgpt-qr-code.jpg
about: FastGPT 全是问题群
19 changes: 0 additions & 19 deletions .github/workflows/bot-issues-translator.yml

This file was deleted.

File renamed without changes.
120 changes: 55 additions & 65 deletions .github/workflows/docs-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build FastGPT docs images and copy image to docker hub
name: Build docs images and copy image to docker hub
on:
workflow_dispatch:
push:
Expand All @@ -8,82 +8,67 @@ on:
- 'main'
tags:
- 'v*.*.*'

jobs:
build-fastgpt-docs-images:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get current date and time
id: datetime
run: echo "datetime=$(date +'%Y%m%d%H%M%S')" >> "$GITHUB_OUTPUT"

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
fetch-depth: 1
- name: Set up QEMU (optional)
uses: docker/setup-qemu-action@v2
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKER_HUB_NAME }}/fastgpt-docs
ghcr.io/${{ github.repository_owner }}/fastgpt-docs
registry.cn-hangzhou.aliyuncs.com/${{ secrets.ALI_HUB_USERNAME }}/fastgpt-docs
tags: |
${{ steps.datetime.outputs.datetime }}
flavor: latest=false

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
username: ${{ secrets.DOCKER_HUB_NAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PAT }}
- name: Set DOCKER_REPO_TAGGED based on branch or tag
run: |
if [[ "${{ github.ref_name }}" == "main" ]]; then
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/fastgpt-docs:latest" >> $GITHUB_ENV
else
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/fastgpt-docs:${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Build and publish image for main branch or tag push event
env:
DOCKER_REPO_TAGGED: ${{ env.DOCKER_REPO_TAGGED }}
run: |
docker buildx build \
--build-arg name=app \
--platform linux/amd64,linux/arm64 \
--label "org.opencontainers.image.source= https://github.com/ ${{ github.repository_owner }}/FastGPT" \
--label "org.opencontainers.image.description=fastgpt image" \
--label "org.opencontainers.image.licenses=Apache" \
--push \
--cache-from=type=local,src=/tmp/.buildx-cache \
--cache-to=type=local,dest=/tmp/.buildx-cache \
-t ${DOCKER_REPO_TAGGED} \
-f docSite/Dockerfile \
.
push-to-docker-hub:
needs: build-fastgpt-docs-images
runs-on: ubuntu-20.04
if: github.repository == 'labring/FastGPT'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2

- name: Login to Aliyun
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_NAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Set DOCKER_REPO_TAGGED based on branch or tag
run: |
if [[ "${{ github.ref_name }}" == "main" ]]; then
echo "IMAGE_TAG=latest" >> $GITHUB_ENV
else
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Pull image from GitHub Container Registry
run: docker pull ghcr.io/${{ github.repository_owner }}/fastgpt-docs:${{env.IMAGE_TAG}}
- name: Tag image with Docker Hub repository name and version tag
run: docker tag ghcr.io/${{ github.repository_owner }}/fastgpt-docs:${{env.IMAGE_TAG}} ${{ secrets.DOCKER_IMAGE_NAME }}:${{env.IMAGE_TAG}}
- name: Push image to Docker Hub
run: docker push ${{ secrets.DOCKER_IMAGE_NAME }}:${{env.IMAGE_TAG}}
registry: registry.cn-hangzhou.aliyuncs.com
username: ${{ secrets.ALI_HUB_USERNAME }}
password: ${{ secrets.ALI_HUB_PASSWORD }}

- name: Build and push Docker images to ghcr.io and DockerHub
uses: docker/build-push-action@v5
with:
context: .
file: ./docSite/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs:
tags: ${{ steps.datetime.outputs.datetime }}
update-docs-image:
needs: build-fastgpt-docs-images
runs-on: ubuntu-20.04
Expand All @@ -95,4 +80,9 @@ jobs:
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
with:
args: rollout restart deployment fastgpt-docs
args: set image deployment/fastgpt-docs fastgpt-docs=registry.cn-hangzhou.aliyuncs.com/${{ secrets.ALI_HUB_USERNAME }}/fastgpt-docs:${{ needs.build-fastgpt-docs-images.outputs.tags }}
- uses: actions-hub/kubectl@master
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
with:
args: annotate deployment/fastgpt-docs originImageName="registry.cn-hangzhou.aliyuncs.com/${{ secrets.ALI_HUB_USERNAME }}/fastgpt-docs:${{ needs.build-fastgpt-docs-images.outputs.tags }}" --overwrite
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: deploy-docs-preview
name: preview-docs

on:
pull_request_target:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
alias-domains: | #Optional
fastgpt-staging.vercel.app
docsOutput:
needs: [ deploy-preview ]
needs: [deploy-preview]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -92,7 +92,7 @@ jobs:
with:
version: v0.0.6
env:
GH_TOKEN: "${{ secrets.GH_PAT }}"
SEALOS_TYPE: "pr_comment"
SEALOS_FILENAME: "report.md"
SEALOS_REPLACE_TAG: "DEFAULT_REPLACE_DEPLOY"
GH_TOKEN: '${{ secrets.GH_PAT }}'
SEALOS_TYPE: 'pr_comment'
SEALOS_FILENAME: 'report.md'
SEALOS_REPLACE_TAG: 'DEFAULT_REPLACE_DEPLOY'
34 changes: 34 additions & 0 deletions .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Release

on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:

jobs:
helm:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Set output
id: vars
run: echo "tag=$(git describe --tags)" >> $GITHUB_OUTPUT
- name: Release Helm
run: |
echo ${{ secrets.GH_PAT }} | helm registry login ghcr.io -u ${{ github.repository_owner }} --password-stdin
export APP_VERSION=${{ steps.vars.outputs.tag }}
export HELM_VERSION=${{ steps.vars.outputs.tag }}
export HELM_REPO=ghcr.io/${{ github.repository_owner }}
if [[ ! "$line" =~ ^v ]]
then
unset APP_VERSION
unset HELM_VERSION
fi
helm dependency update files/helm/fastgpt
helm package files/helm/fastgpt --version ${HELM_VERSION}-helm --app-version ${APP_VERSION} -d bin
helm push bin/fastgpt-${HELM_VERSION}-helm.tgz oci://${HELM_REPO}
11 changes: 11 additions & 0 deletions .github/workflows/preview-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,14 @@ jobs:
-t ${DOCKER_REPO_TAGGED} \
-f Dockerfile \
.
helm-check:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Helm Check
run: |
helm dependency update files/helm/fastgpt
helm lint files/helm/fastgpt
helm package files/helm/fastgpt
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ docSite/.vercel


.idea/
files/helm/fastgpt/fastgpt-0.1.0.tgz
files/helm/fastgpt/charts/*.tgz

tmp/
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"inlang.vs-code-extension"
]
}
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"editor.formatOnSave": true,
"editor.mouseWheelZoom": true,
"typescript.tsdk": "node_modules/typescript/lib",
"prettier.prettierPath": "./node_modules/prettier",
"prettier.prettierPath": "",
"i18n-ally.localesPaths": [
"projects/app/public/locales",
],
Expand All @@ -11,5 +11,5 @@
"i18n-ally.sortKeys": true,
"i18n-ally.keepFulfilled": true,
"i18n-ally.sourceLanguage": "zh", // 根据此语言文件翻译其他语言文件的变量和内容
"i18n-ally.displayLanguage": "en", // 显示语言
"i18n-ally.displayLanguage": "zh", // 显示语言
}
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG proxy
RUN [ -z "$proxy" ] || sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk add --no-cache libc6-compat && npm install -g [email protected]
# if proxy exists, set proxy
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npm.taobao.org
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npmmirror.com

# copy packages and one project
COPY pnpm-lock.yaml pnpm-workspace.yaml ./
Expand All @@ -28,7 +28,7 @@ ARG proxy
RUN [ -z "$proxy" ] || sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk add --no-cache libc6-compat && npm install -g [email protected]
# if proxy exists, set proxy
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npm.taobao.org
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npmmirror.com

COPY ./worker /app/worker
RUN cd /app/worker && pnpm i --production --ignore-workspace
Expand Down Expand Up @@ -78,7 +78,7 @@ COPY --from=builder /app/projects/$name/package.json ./package.json
COPY --from=workerDeps /app/worker /app/worker
# copy config
COPY ./projects/$name/data /app/data

RUN chown -R nextjs:nodejs /app/data

ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b

## 🛸 在线使用

- 🌐 国内临时可访问:[fastgpt.in](https://fastgpt.in/)
- 🌍 海外版:[fastgpt.run](https://fastgpt.run/)
- 🌍 海外版:[fastgpt.in](https://fastgpt.in/)

fastgpt.run 域名会弃用。

| | |
| ---------------------------------- | ---------------------------------- |
Expand All @@ -57,7 +58,7 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
- [x] 源文件引用追踪
- [x] 模块封装,实现多级复用
- [x] 混合检索 & 重排
- [ ] Tool 模块
- [x] Tool 模块
- [ ] 嵌入 [Laf](https://github.com/labring/laf),实现在线编写 HTTP 模块
- [ ] 插件封装功能

Expand Down Expand Up @@ -113,17 +114,17 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
* [多模型配置](https://doc.fastgpt.in/docs/development/one-api/)
* [版本更新/升级介绍](https://doc.fastgpt.in/docs/development/upgrading)
* [OpenAPI API 文档](https://doc.fastgpt.in/docs/development/openapi/)
* [知识库结构详解](https://doc.fastgpt.in/docs/use-cases/datasetengine/)
* [知识库结构详解](https://doc.fastgpt.in/docs/course/datasetengine/)

<a href="#readme">
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
</a>

## 🏘️ 社区交流群

添加 wx 小助手加入
wx 扫一下加入

![](https://otnvvf-imgs.oss.laf.run/wx300.jpg)
![](https://oss.laf.run/htr4n1-images/fastgpt-qr-code.jpg)

<a href="#readme">
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
Expand Down Expand Up @@ -215,4 +216,4 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
1. 允许作为后台服务直接商用,但不允许提供 SaaS 服务。
2. 未经商业授权,任何形式的商用服务均需保留相关版权信息。
3. 完整请查看 [FastGPT Open Source License](./LICENSE)
4. 联系方式:[email protected][点击查看商业版定价策略](https://doc.fastgpt.in/docs/commercial)
4. 联系方式:[email protected][点击查看商业版定价策略](https://doc.fastgpt.in/docs/commercial)
10 changes: 4 additions & 6 deletions README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,12 @@ Project tech stack: NextJs + TS + ChakraUI + Mongo + Postgres (Vector plugin)
- [Configuring Multiple Models](https://doc.fastgpt.in/docs/installation/reference/models)
- [Version Updates & Upgrades](https://doc.fastgpt.in/docs/installation/upgrading)

<!-- ## :point_right: RoadMap
- [FastGPT RoadMap](https://kjqvjse66l.feishu.cn/docx/RVUxdqE2WolDYyxEKATcM0XXnte) -->

<!-- ## 🏘️ Community
## 🏘️ Community

| Community Group | Assistant |
| ------------------------------------------------- | ---------------------------------------------- |
| ![](https://otnvvf-imgs.oss.laf.run/wxqun300.jpg) | ![](https://otnvvf-imgs.oss.laf.run/wx300.jpg) | -->
| Community Group |
| ------------------------------------------------- |
| ![](https://oss.laf.run/htr4n1-images/fastgpt-qr-code.jpg) |

<a href="#readme">
<img src="https://img.shields.io/badge/-Back_to_Top-7d09f1.svg" alt="#" align="right">
Expand Down
Binary file modified docSite/assets/imgs/1.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 docSite/assets/imgs/2.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 docSite/assets/imgs/47-sealos1.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 docSite/assets/imgs/47-sealos2.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 docSite/assets/imgs/47-sealos3.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 docSite/assets/imgs/47-sealos4.webp
Binary file not shown.
Binary file added docSite/assets/imgs/47-sealos5.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 docSite/assets/imgs/aichat.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 docSite/assets/imgs/aichat0.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 docSite/assets/imgs/aichat01.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 docSite/assets/imgs/aichat02.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 docSite/assets/imgs/aichat2.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 docSite/assets/imgs/aichat3.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/coreferenceResolution2.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/coreferenceResolution2.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/coreferenceResolution3.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/coreferenceResolution3.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/datasetEngine3.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetEngine3.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/datasetEngine4.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetEngine4.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/datasetEngine5.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetEngine5.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/datasetEngine6.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetEngine6.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/datasetEngine7.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetEngine7.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/dataset_search_params1.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 docSite/assets/imgs/dataset_search_params2.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 docSite/assets/imgs/dataset_search_params3.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 docSite/assets/imgs/dataset_search_process.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 docSite/assets/imgs/dataset_tree.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 docSite/assets/imgs/datasetprompt7.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/datasetprompt7.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/demo-appointment1.jpg
Binary file not shown.
Binary file added docSite/assets/imgs/demo-appointment1.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/demo-appointment2.jpg
Binary file modified docSite/assets/imgs/demo-appointment3.jpg
Binary file modified docSite/assets/imgs/demo-appointment4.jpg
Binary file modified docSite/assets/imgs/demo-appointment5.jpg
Binary file modified docSite/assets/imgs/demo-appointment9.jpg
Binary file added docSite/assets/imgs/demo-dalle1.png
Binary file added docSite/assets/imgs/demo-dalle2.webp
Binary file not shown.
Binary file added docSite/assets/imgs/feishuwebhook1.png
Binary file added docSite/assets/imgs/feishuwebhook2.webp
Binary file not shown.
Binary file added docSite/assets/imgs/feishuwebhook3.png
Binary file added docSite/assets/imgs/feishuwebhook4.webp
Binary file not shown.
Binary file added docSite/assets/imgs/feishuwebhook5.png
Binary file added docSite/assets/imgs/flow-dataset1.png
Binary file added docSite/assets/imgs/flow-tool1.png
Binary file added docSite/assets/imgs/flow-tool2.png
Binary file added docSite/assets/imgs/flow-tool3.png
Binary file added docSite/assets/imgs/flow-tool4.png
Binary file added docSite/assets/imgs/gapierTool1.png
Binary file added docSite/assets/imgs/gapierTool10.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool11.png
Binary file added docSite/assets/imgs/gapierTool12.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool13.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool14.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool15.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool16.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool17.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierTool2.png
Binary file added docSite/assets/imgs/gapierTool3.png
Binary file added docSite/assets/imgs/gapierTool4.png
Binary file added docSite/assets/imgs/gapierTool5.png
Binary file added docSite/assets/imgs/gapierTool6.png
Binary file added docSite/assets/imgs/gapierTool7.png
Binary file added docSite/assets/imgs/gapierTool8.png
Binary file added docSite/assets/imgs/gapierTool9.webp
Binary file not shown.
Binary file added docSite/assets/imgs/gapierToolResult1.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/getfile_id.png
Diff not rendered.
Binary file added docSite/assets/imgs/getfile_id.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/google_search_1.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/google_search_1.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/google_search_2.jpg
Binary file added docSite/assets/imgs/google_search_3.png
Binary file added docSite/assets/imgs/google_search_4.png
Binary file modified docSite/assets/imgs/guide.png
Binary file modified docSite/assets/imgs/http1.jpg
Binary file removed docSite/assets/imgs/intro1.png
Diff not rendered.
Binary file added docSite/assets/imgs/intro1.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/oneapi-step1.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/oneapi-step1.webp
Binary file not shown.
Binary file added docSite/assets/imgs/question_guide.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/sealos1.png
Binary file removed docSite/assets/imgs/sealos3.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/sealos3.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/sealos_price.jpg
File renamed without changes
Binary file added docSite/assets/imgs/tts_setting.png
Binary file added docSite/assets/imgs/tts_setting2.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/variable.png
Binary file modified docSite/assets/imgs/variable2.png
Binary file added docSite/assets/imgs/variable3.png
Binary file added docSite/assets/imgs/variable4.webp
Binary file not shown.
Binary file added docSite/assets/imgs/variable5.webp
Binary file not shown.
Binary file modified docSite/assets/imgs/versatile_assistant_5.png
Binary file removed docSite/assets/imgs/webSync10.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/webSync10.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/webSync6.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/webSync6.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/webSync7.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/webSync7.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/webSync8.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/webSync8.webp
Binary file not shown.
Binary file removed docSite/assets/imgs/webSync9.jpg
Diff not rendered.
Binary file added docSite/assets/imgs/webSync9.webp
Binary file not shown.
Binary file added docSite/assets/imgs/workflow_process.png
Loading

0 comments on commit 896fa97

Please sign in to comment.