Compare commits
63 Commits
v4.6
...
v4.6.6-alp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
828829011a | ||
|
|
c2abbb579f | ||
|
|
2fc6e921e0 | ||
|
|
13b10720ac | ||
|
|
c766a0ed8a | ||
|
|
d5b24eca57 | ||
|
|
2e75851b02 | ||
|
|
d645a7406b | ||
|
|
9ccfda47b7 | ||
|
|
ccca0468da | ||
|
|
5b676ff4ad | ||
|
|
759a2330e6 | ||
|
|
86286efb54 | ||
|
|
99e8ba2256 | ||
|
|
f84fd93cbb | ||
|
|
cd682d4275 | ||
|
|
41115a96c0 | ||
|
|
b14a1db2f9 | ||
|
|
703583fff7 | ||
|
|
d33c99f564 | ||
|
|
05bf1b2265 | ||
|
|
dd7b4b98ae | ||
|
|
34656dfda0 | ||
|
|
7b5c35018b | ||
|
|
7630417679 | ||
|
|
63ce76413e | ||
|
|
1c1305fcb6 | ||
|
|
c3437b9367 | ||
|
|
e18c79ca71 | ||
|
|
d2d7eac9e0 | ||
|
|
84cf6b5658 | ||
|
|
b58249fc3a | ||
|
|
54d52d8d25 | ||
|
|
f298b90b69 | ||
|
|
e01c38efe0 | ||
|
|
71afe71192 | ||
|
|
62e87551ac | ||
|
|
c3ae38df8b | ||
|
|
9c77dfbddd | ||
|
|
7fc05af09e | ||
|
|
a9ae270335 | ||
|
|
b916183848 | ||
|
|
007fce2deb | ||
|
|
abc1e576b7 | ||
|
|
a74e1d7166 | ||
|
|
e765c3bf95 | ||
|
|
933c3fdfd6 | ||
|
|
f818260711 | ||
|
|
3acbf1ab17 | ||
|
|
9cb4280a16 | ||
|
|
60f752629f | ||
|
|
0558379ddb | ||
|
|
9c4eabfc9e | ||
|
|
b05dd0fde1 | ||
|
|
0df5152202 | ||
|
|
e044d3583d | ||
|
|
c5664c7e90 | ||
|
|
70f3373246 | ||
|
|
af16817a4a | ||
|
|
4358b6de4d | ||
|
|
f6aea484ce | ||
|
|
fbe1d8cfed | ||
|
|
16103029f5 |
@@ -8,4 +8,5 @@ README.md
|
|||||||
|
|
||||||
.yalc/
|
.yalc/
|
||||||
yalc.lock
|
yalc.lock
|
||||||
testApi/
|
testApi/
|
||||||
|
*.local.*
|
||||||
BIN
.github/imgs/intro1.png
vendored
|
Before Width: | Height: | Size: 548 KiB After Width: | Height: | Size: 166 KiB |
BIN
.github/imgs/intro2.png
vendored
|
Before Width: | Height: | Size: 437 KiB After Width: | Height: | Size: 246 KiB |
BIN
.github/imgs/intro3.png
vendored
|
Before Width: | Height: | Size: 574 KiB After Width: | Height: | Size: 250 KiB |
BIN
.github/imgs/intro4.png
vendored
|
Before Width: | Height: | Size: 270 KiB After Width: | Height: | Size: 182 KiB |
3
.gitignore
vendored
@@ -35,4 +35,5 @@ dist/
|
|||||||
**/.hugo_build.lock
|
**/.hugo_build.lock
|
||||||
docSite/public/
|
docSite/public/
|
||||||
docSite/resources/_gen/
|
docSite/resources/_gen/
|
||||||
docSite/.vercel
|
docSite/.vercel
|
||||||
|
*.local.*
|
||||||
@@ -2,4 +2,5 @@ dist
|
|||||||
.vscode
|
.vscode
|
||||||
**/.DS_Store
|
**/.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
docSite/
|
docSite/
|
||||||
|
*.md
|
||||||
2
.vscode/settings.json
vendored
@@ -4,7 +4,7 @@
|
|||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
"prettier.prettierPath": "./node_modules/prettier",
|
"prettier.prettierPath": "./node_modules/prettier",
|
||||||
"i18n-ally.localesPaths": [
|
"i18n-ally.localesPaths": [
|
||||||
"projects/app/public/locales"
|
"projects/app/public/locales",
|
||||||
],
|
],
|
||||||
"i18n-ally.enabledParsers": ["json"],
|
"i18n-ally.enabledParsers": ["json"],
|
||||||
"i18n-ally.keystyle": "nested",
|
"i18n-ally.keystyle": "nested",
|
||||||
|
|||||||
71
Dockerfile
@@ -1,59 +1,84 @@
|
|||||||
# Install dependencies only when needed
|
# --------- install dependence -----------
|
||||||
FROM node:18.15-alpine AS deps
|
FROM node:18.17-alpine AS mainDeps
|
||||||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
|
||||||
RUN apk add --no-cache libc6-compat && npm install -g pnpm
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ARG name
|
ARG name
|
||||||
|
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 pnpm@8.6.0
|
||||||
|
# if proxy exists, set proxy
|
||||||
|
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npm.taobao.org
|
||||||
|
|
||||||
# copy packages and one project
|
# copy packages and one project
|
||||||
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
|
COPY pnpm-lock.yaml pnpm-workspace.yaml ./
|
||||||
COPY ./packages ./packages
|
COPY ./packages ./packages
|
||||||
COPY ./projects/$name/package.json ./projects/$name/package.json
|
COPY ./projects/$name/package.json ./projects/$name/package.json
|
||||||
|
|
||||||
RUN [ -f pnpm-lock.yaml ] || (echo "Lockfile not found." && exit 1)
|
RUN [ -f pnpm-lock.yaml ] || (echo "Lockfile not found." && exit 1)
|
||||||
|
|
||||||
RUN pnpm install
|
RUN pnpm i
|
||||||
|
|
||||||
# Rebuild the source code only when needed
|
# --------- install dependence -----------
|
||||||
FROM node:18.15-alpine AS builder
|
FROM node:18.17-alpine AS workerDeps
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
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 pnpm@8.6.0
|
||||||
|
# if proxy exists, set proxy
|
||||||
|
RUN [ -z "$proxy" ] || pnpm config set registry https://registry.npm.taobao.org
|
||||||
|
|
||||||
|
COPY ./worker /app/worker
|
||||||
|
RUN cd /app/worker && pnpm i --production --ignore-workspace
|
||||||
|
|
||||||
|
# --------- builder -----------
|
||||||
|
FROM node:18.17-alpine AS builder
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ARG name
|
ARG name
|
||||||
|
ARG proxy
|
||||||
|
|
||||||
# copy common node_modules and one project node_modules
|
# copy common node_modules and one project node_modules
|
||||||
COPY package.json pnpm-workspace.yaml ./
|
COPY package.json pnpm-workspace.yaml ./
|
||||||
COPY --from=deps /app/node_modules ./node_modules
|
COPY --from=mainDeps /app/node_modules ./node_modules
|
||||||
COPY --from=deps /app/packages ./packages
|
COPY --from=mainDeps /app/packages ./packages
|
||||||
COPY ./projects/$name ./projects/$name
|
COPY ./projects/$name ./projects/$name
|
||||||
COPY --from=deps /app/projects/$name/node_modules ./projects/$name/node_modules
|
COPY --from=mainDeps /app/projects/$name/node_modules ./projects/$name/node_modules
|
||||||
|
|
||||||
# Uncomment the following line in case you want to disable telemetry during the build.
|
RUN [ -z "$proxy" ] || sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
||||||
ENV NEXT_TELEMETRY_DISABLED 1
|
|
||||||
RUN npm install -g pnpm
|
|
||||||
RUN pnpm --filter=$name run build
|
|
||||||
|
|
||||||
FROM node:18.15-alpine AS runner
|
RUN apk add --no-cache libc6-compat && npm install -g pnpm@8.6.0
|
||||||
|
RUN pnpm --filter=$name build
|
||||||
|
|
||||||
|
# --------- runner -----------
|
||||||
|
FROM node:18.17-alpine AS runner
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ARG name
|
ARG name
|
||||||
|
ARG proxy
|
||||||
|
|
||||||
# create user and use it
|
# create user and use it
|
||||||
RUN addgroup --system --gid 1001 nodejs
|
RUN addgroup --system --gid 1001 nodejs
|
||||||
RUN adduser --system --uid 1001 nextjs
|
RUN adduser --system --uid 1001 nextjs
|
||||||
|
|
||||||
RUN sed -i 's/https/http/' /etc/apk/repositories
|
RUN [ -z "$proxy" ] || sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
||||||
RUN apk add curl \
|
RUN apk add --no-cache curl ca-certificates \
|
||||||
&& apk add ca-certificates \
|
|
||||||
&& update-ca-certificates
|
&& update-ca-certificates
|
||||||
|
|
||||||
# copy running files
|
# copy running files
|
||||||
COPY --from=builder /app/projects/$name/public ./projects/$name/public
|
COPY --from=builder /app/projects/$name/public /app/projects/$name/public
|
||||||
COPY --from=builder /app/projects/$name/next.config.js ./projects/$name/next.config.js
|
COPY --from=builder /app/projects/$name/next.config.js /app/projects/$name/next.config.js
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/projects/$name/.next/standalone ./
|
COPY --from=builder --chown=nextjs:nodejs /app/projects/$name/.next/standalone /app/
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/projects/$name/.next/static ./projects/$name/.next/static
|
COPY --from=builder --chown=nextjs:nodejs /app/projects/$name/.next/static /app/projects/$name/.next/static
|
||||||
# copy package.json to version file
|
# copy package.json to version file
|
||||||
COPY --from=builder /app/projects/$name/package.json ./package.json
|
COPY --from=builder /app/projects/$name/package.json ./package.json
|
||||||
|
# copy woker
|
||||||
|
COPY --from=workerDeps /app/worker /app/worker
|
||||||
|
# copy config
|
||||||
|
COPY ./projects/$name/data /app/data
|
||||||
|
|
||||||
|
|
||||||
ENV NODE_ENV production
|
ENV NODE_ENV production
|
||||||
ENV NEXT_TELEMETRY_DISABLED 1
|
ENV NEXT_TELEMETRY_DISABLED 1
|
||||||
|
|||||||
105
README.md
@@ -1,12 +1,13 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
<a href="https://fastgpt.run/"><img src="/.github/imgs/logo.svg" width="120" height="120" alt="fastgpt logo"></a>
|
<a href="https://fastgpt.in/"><img src="/.github/imgs/logo.svg" width="120" height="120" alt="fastgpt logo"></a>
|
||||||
|
|
||||||
# FastGPT
|
# FastGPT
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="./README_en.md">English</a> |
|
<a href="./README_en.md">English</a> |
|
||||||
<a href="./README.md">简体中文</a>
|
<a href="./README.md">简体中文</a> |
|
||||||
|
<a href="./README_ja.md">日语</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
FastGPT 是一个基于 LLM 大语言模型的知识库问答系统,提供开箱即用的数据处理、模型调用等能力。同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的问答场景!
|
FastGPT 是一个基于 LLM 大语言模型的知识库问答系统,提供开箱即用的数据处理、模型调用等能力。同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的问答场景!
|
||||||
@@ -14,7 +15,7 @@ FastGPT 是一个基于 LLM 大语言模型的知识库问答系统,提供开
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://fastgpt.run/">
|
<a href="https://fastgpt.in/">
|
||||||
<img height="21" src="https://img.shields.io/badge/在线使用-d4eaf7?style=flat-square&logo=spoj&logoColor=7d09f1" alt="cloud">
|
<img height="21" src="https://img.shields.io/badge/在线使用-d4eaf7?style=flat-square&logo=spoj&logoColor=7d09f1" alt="cloud">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://doc.fastgpt.in/docs/intro">
|
<a href="https://doc.fastgpt.in/docs/intro">
|
||||||
@@ -35,7 +36,7 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
|
|
||||||
## 🛸 在线使用
|
## 🛸 在线使用
|
||||||
|
|
||||||
- 🌐 国内版:[ai.fastgpt.in](https://ai.fastgpt.in/)
|
- 🌐 国内临时可访问:[fastgpt.in](https://fastgpt.in/)
|
||||||
- 🌍 海外版:[fastgpt.run](https://fastgpt.run/)
|
- 🌍 海外版:[fastgpt.run](https://fastgpt.run/)
|
||||||
|
|
||||||
| | |
|
| | |
|
||||||
@@ -47,39 +48,47 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
## 💡 功能
|
## 💡 RoadMap
|
||||||
|
|
||||||
1. 强大的可视化编排,轻松构建 AI 应用
|
`1` 应用编排能力
|
||||||
- [x] 提供简易模式,无需操作编排
|
- [x] 提供简易模式,无需操作编排
|
||||||
- [x] 用户对话前引导,全局字符串变量
|
|
||||||
- [x] 知识库搜索
|
|
||||||
- [x] 多 LLM 模型对话
|
|
||||||
- [x] 文本内容提取成结构化数据
|
|
||||||
- [x] HTTP 扩展
|
|
||||||
- [ ] 嵌入 Laf,实现在线编写 HTTP 模块
|
|
||||||
- [x] 对话下一步指引
|
- [x] 对话下一步指引
|
||||||
- [ ] 对话多路线选择
|
- [x] 工作流编排
|
||||||
- [x] 源文件引用追踪
|
- [x] 源文件引用追踪
|
||||||
- [x] 模块封装,实现多级复用
|
- [x] 模块封装,实现多级复用
|
||||||
2. 丰富的知识库预处理
|
- [x] 混合检索 & 重排
|
||||||
|
- [ ] 自查询规划
|
||||||
|
- [ ] 嵌入 [Laf](https://github.com/labring/laf),实现在线编写 HTTP 模块
|
||||||
|
- [ ] 插件封装功能
|
||||||
|
|
||||||
|
`2` 知识库能力
|
||||||
- [x] 多库复用,混用
|
- [x] 多库复用,混用
|
||||||
- [x] chunk 记录修改和删除
|
- [x] chunk 记录修改和删除
|
||||||
- [x] 支持手动输入,直接分段,QA 拆分导入
|
|
||||||
- [x] 支持 url 读取、CSV 批量导入
|
|
||||||
- [x] 支持知识库单独设置向量模型
|
- [x] 支持知识库单独设置向量模型
|
||||||
- [x] 源文件存储
|
- [x] 源文件存储
|
||||||
- [ ] 文件学习 Agent
|
- [x] 支持手动输入,直接分段,QA 拆分导入
|
||||||
3. 多种效果测试渠道
|
- [x] 支持 pdf、word、txt、md 等常用文件,支持 url 读取、CSV 批量导入
|
||||||
|
- [ ] 支持 HTML、csv、PPT、Excel 导入
|
||||||
|
- [ ] 支持文件阅读器
|
||||||
|
- [ ] 支持差异性文件同步
|
||||||
|
- [ ] 更多的数据预处理方案
|
||||||
|
|
||||||
|
`3` 应用调试能力
|
||||||
- [x] 知识库单点搜索测试
|
- [x] 知识库单点搜索测试
|
||||||
- [x] 对话时反馈引用并可修改与删除
|
- [x] 对话时反馈引用并可修改与删除
|
||||||
- [x] 完整上下文呈现
|
- [x] 完整上下文呈现
|
||||||
- [x] 完整模块中间值呈现
|
- [x] 完整模块中间值呈现
|
||||||
4. OpenAPI
|
- [ ] 高级编排 DeBug 模式
|
||||||
|
|
||||||
|
`4` OpenAPI 接口
|
||||||
- [x] completions 接口 (对齐 GPT 接口)
|
- [x] completions 接口 (对齐 GPT 接口)
|
||||||
- [ ] 知识库 CRUD
|
- [ ] 知识库 CRUD
|
||||||
5. 运营功能
|
- [ ] 对话 CRUD
|
||||||
|
|
||||||
|
`5` 运营能力
|
||||||
- [x] 免登录分享窗口
|
- [x] 免登录分享窗口
|
||||||
- [x] Iframe 一键嵌入
|
- [x] Iframe 一键嵌入
|
||||||
|
- [x] 聊天窗口嵌入支持自定义 Icon,默认打开,拖拽等功能
|
||||||
- [x] 统一查阅对话记录,并对数据进行标注
|
- [x] 统一查阅对话记录,并对数据进行标注
|
||||||
|
|
||||||
<a href="#readme">
|
<a href="#readme">
|
||||||
@@ -92,17 +101,17 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
|
|
||||||
- **⚡ 快速部署**
|
- **⚡ 快速部署**
|
||||||
|
|
||||||
> Sealos 的服务器在国外,不需要额外处理网络问题,无需服务器、无需魔法、无需域名,支持高并发 & 动态伸缩。点击以下按钮即可一键部署 👇
|
> [Sealos](https://sealos.io) 的服务器在国外,不需要额外处理网络问题,无需服务器、无需魔法、无需域名,支持高并发 & 动态伸缩。点击以下按钮即可一键部署 👇
|
||||||
|
|
||||||
[](https://cloud.sealos.io/?openapp=system-fastdeploy%3FtemplateName%3Dfastgpt)
|
[](https://cloud.sealos.io/?openapp=system-fastdeploy%3FtemplateName%3Dfastgpt)
|
||||||
|
|
||||||
由于需要部署数据库,部署完后需要等待 2~4 分钟才能正常访问。默认用了最低配置,首次访问时会有些慢。
|
由于需要部署数据库,部署完后需要等待 2~4 分钟才能正常访问。默认用了最低配置,首次访问时会有些慢。
|
||||||
|
|
||||||
* [快开始本地开发](https://doc.fastgpt.in/docs/development/intro/)
|
* [快开始本地开发](https://doc.fastgpt.in/docs/development/intro/)
|
||||||
* [部署 FastGPT](https://doc.fastgpt.in/docs/installation)
|
* [部署 FastGPT](https://doc.fastgpt.in/docs/development/sealos)
|
||||||
* [系统配置文件说明](https://doc.fastgpt.in/docs/development/configuration/)
|
* [系统配置文件说明](https://doc.fastgpt.in/docs/development/configuration/)
|
||||||
* [多模型配置](https://doc.fastgpt.in/docs/installation/one-api/)
|
* [多模型配置](https://doc.fastgpt.in/docs/development/one-api/)
|
||||||
* [版本更新/升级介绍](https://doc.fastgpt.in/docs/installation/upgrading)
|
* [版本更新/升级介绍](https://doc.fastgpt.in/docs/development/upgrading)
|
||||||
* [OpenAPI API 文档](https://doc.fastgpt.in/docs/development/openapi/)
|
* [OpenAPI API 文档](https://doc.fastgpt.in/docs/development/openapi/)
|
||||||
* [知识库结构详解](https://doc.fastgpt.in/docs/use-cases/datasetengine/)
|
* [知识库结构详解](https://doc.fastgpt.in/docs/use-cases/datasetengine/)
|
||||||
|
|
||||||
@@ -141,7 +150,7 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
## 🤝 第三方生态
|
## 🌿 第三方生态
|
||||||
|
|
||||||
- [OnWeChat 个人微信/企微机器人](https://doc.fastgpt.in/docs/use-cases/onwechat/)
|
- [OnWeChat 个人微信/企微机器人](https://doc.fastgpt.in/docs/use-cases/onwechat/)
|
||||||
|
|
||||||
@@ -149,9 +158,51 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
## 🤝 参与贡献
|
||||||
|
|
||||||
|
我们非常欢迎各种形式的贡献。如果你对贡献代码感兴趣,可以查看我们的 GitHub [Issues](https://github.com/labring/FastGPT/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc),大展身手,向我们展示你的奇思妙想。
|
||||||
|
|
||||||
|
<a href="https://github.com/labring/FastGPT/graphs/contributors" target="_blank">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">
|
||||||
|
<br><img src="https://contrib.rocks/image?repo=labring/FastGPT"><br><br>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?activity=active&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=2x3&color_scheme=dark">
|
||||||
|
<img alt="Active participants of labring - past 28 days" src="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?activity=active&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=2x3&color_scheme=light">
|
||||||
|
</picture>
|
||||||
|
</td>
|
||||||
|
<td rowspan="2">
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://next.ossinsight.io/widgets/official/compose-org-participants-growth/thumbnail.png?activity=new&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=4x7&color_scheme=dark">
|
||||||
|
<img alt="New trends of labring" src="https://next.ossinsight.io/widgets/official/compose-org-participants-growth/thumbnail.png?activity=new&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=4x7&color_scheme=light">
|
||||||
|
</picture>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?activity=new&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=2x3&color_scheme=dark">
|
||||||
|
<img alt="New participants of labring - past 28 days" src="https://next.ossinsight.io/widgets/official/compose-org-active-contributors/thumbnail.png?activity=new&period=past_28_days&owner_id=102226726&repo_ids=605673387&image_size=2x3&color_scheme=light">
|
||||||
|
</picture>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</a>
|
||||||
|
|
||||||
## 🌟 Star History
|
## 🌟 Star History
|
||||||
|
|
||||||
[](https://star-history.com/#labring/FastGPT&Date)
|
<a href="https://github.com/labring/FastGPT/stargazers" target="_blank" style="display: block" align="center">
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date&theme=dark" />
|
||||||
|
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date" />
|
||||||
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date" />
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
<a href="#readme">
|
<a href="#readme">
|
||||||
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
|
||||||
@@ -164,4 +215,4 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
1. 允许作为后台服务直接商用,但不允许提供 SaaS 服务。
|
1. 允许作为后台服务直接商用,但不允许提供 SaaS 服务。
|
||||||
2. 未经商业授权,任何形式的商用服务均需保留相关版权信息。
|
2. 未经商业授权,任何形式的商用服务均需保留相关版权信息。
|
||||||
3. 完整请查看 [FastGPT Open Source License](./LICENSE)
|
3. 完整请查看 [FastGPT Open Source License](./LICENSE)
|
||||||
4. 联系方式:yujinlong@sealos.io,[点击查看商业版定价策略](https://doc.fastgpt.in/docs/commercial)
|
4. 联系方式:yujinlong@sealos.io,[点击查看商业版定价策略](https://doc.fastgpt.in/docs/commercial)
|
||||||
32
README_en.md
@@ -1,12 +1,13 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
<a href="https://fastgpt.run/"><img src="/.github/imgs/logo.svg" width="120" height="120" alt="fastgpt logo"></a>
|
<a href="https://fastgpt.in/"><img src="/.github/imgs/logo.svg" width="120" height="120" alt="fastgpt logo"></a>
|
||||||
|
|
||||||
# FastGPT
|
# FastGPT
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="./README_en.md">English</a> |
|
<a href="./README_en.md">English</a> |
|
||||||
<a href="./README.md">简体中文</a>
|
<a href="./README.md">简体中文</a> |
|
||||||
|
<a href="./README_ja.md">日语</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
FastGPT is a knowledge-based Q&A system built on the LLM, offers out-of-the-box data processing and model invocation capabilities, allows for workflow orchestration through Flow visualization!
|
FastGPT is a knowledge-based Q&A system built on the LLM, offers out-of-the-box data processing and model invocation capabilities, allows for workflow orchestration through Flow visualization!
|
||||||
@@ -14,13 +15,13 @@ FastGPT is a knowledge-based Q&A system built on the LLM, offers out-of-the-box
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://fastgpt.run/">
|
<a href="https://fastgpt.in/">
|
||||||
<img height="21" src="https://img.shields.io/badge/在线使用-d4eaf7?style=flat-square&logo=spoj&logoColor=7d09f1" alt="cloud">
|
<img height="21" src="https://img.shields.io/badge/在线使用-d4eaf7?style=flat-square&logo=spoj&logoColor=7d09f1" alt="cloud">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://doc.fastgpt.run/docs/intro">
|
<a href="https://doc.fastgpt.in/docs/intro">
|
||||||
<img height="21" src="https://img.shields.io/badge/相关文档-7d09f1?style=flat-square" alt="document">
|
<img height="21" src="https://img.shields.io/badge/相关文档-7d09f1?style=flat-square" alt="document">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://doc.fastgpt.run/docs/development">
|
<a href="https://doc.fastgpt.in/docs/development">
|
||||||
<img height="21" src="https://img.shields.io/badge/本地开发-%23d4eaf7?style=flat-square&logo=xcode&logoColor=7d09f1" alt="development">
|
<img height="21" src="https://img.shields.io/badge/本地开发-%23d4eaf7?style=flat-square&logo=xcode&logoColor=7d09f1" alt="development">
|
||||||
</a>
|
</a>
|
||||||
<a href="/#-%E7%9B%B8%E5%85%B3%E9%A1%B9%E7%9B%AE">
|
<a href="/#-%E7%9B%B8%E5%85%B3%E9%A1%B9%E7%9B%AE">
|
||||||
@@ -35,7 +36,8 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
|
|||||||
|
|
||||||
## 🛸 Use Cloud Services
|
## 🛸 Use Cloud Services
|
||||||
|
|
||||||
[fastgpt.run](https://fastgpt.run/)
|
Cloud: [fastgpt.in](https://fastgpt.in/)
|
||||||
|
|
||||||
| | |
|
| | |
|
||||||
| ---------------------------------- | ---------------------------------- |
|
| ---------------------------------- | ---------------------------------- |
|
||||||
|  |  |
|
|  |  |
|
||||||
@@ -104,11 +106,11 @@ Project tech stack: NextJs + TS + ChakraUI + Mongo + Postgres (Vector plugin)
|
|||||||
|
|
||||||
Give it a 2-4 minute wait after deployment as it sets up the database. Initially, it might be a tad slow since we're using the basic settings.
|
Give it a 2-4 minute wait after deployment as it sets up the database. Initially, it might be a tad slow since we're using the basic settings.
|
||||||
|
|
||||||
- [Getting Started with Local Development](https://doc.fastgpt.run/docs/development)
|
- [Getting Started with Local Development](https://doc.fastgpt.in/docs/development)
|
||||||
- [Deploying FastGPT](https://doc.fastgpt.run/docs/installation)
|
- [Deploying FastGPT](https://doc.fastgpt.in/docs/installation)
|
||||||
- [Guide on System Configs](https://doc.fastgpt.run/docs/installation/reference)
|
- [Guide on System Configs](https://doc.fastgpt.in/docs/installation/reference)
|
||||||
- [Configuring Multiple Models](https://doc.fastgpt.run/docs/installation/reference/models)
|
- [Configuring Multiple Models](https://doc.fastgpt.in/docs/installation/reference/models)
|
||||||
- [Version Updates & Upgrades](https://doc.fastgpt.run/docs/installation/upgrading)
|
- [Version Updates & Upgrades](https://doc.fastgpt.in/docs/installation/upgrading)
|
||||||
|
|
||||||
<!-- ## :point_right: RoadMap
|
<!-- ## :point_right: RoadMap
|
||||||
- [FastGPT RoadMap](https://kjqvjse66l.feishu.cn/docx/RVUxdqE2WolDYyxEKATcM0XXnte) -->
|
- [FastGPT RoadMap](https://kjqvjse66l.feishu.cn/docx/RVUxdqE2WolDYyxEKATcM0XXnte) -->
|
||||||
@@ -155,4 +157,10 @@ Project tech stack: NextJs + TS + ChakraUI + Mongo + Postgres (Vector plugin)
|
|||||||
|
|
||||||
## 🌟 Star History
|
## 🌟 Star History
|
||||||
|
|
||||||
[](https://star-history.com/#labring/FastGPT&Date)
|
<a href="https://github.com/labring/FastGPT/stargazers" target="_blank" style="display: block" align="center">
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date&theme=dark" />
|
||||||
|
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date" />
|
||||||
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=labring/FastGPT&type=Date" />
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|||||||
136
README_ja.md
Normal file
@@ -0,0 +1,136 @@
|
|||||||
|
<div align="center">
|
||||||
|
|
||||||
|
<a href="https://fastgpt.in/"><img src="/.github/imgs/logo.svg" width="120" height="120" alt="fastgpt logo"></a>
|
||||||
|
|
||||||
|
# FastGPT
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="./README_en.md">English</a> |
|
||||||
|
<a href="./README.md">简体中文</a> |
|
||||||
|
<a href="./README_ja.md">日语</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
FastGPT は、LLM 上 に 構築 された 知識 ベースの Q&A システムで、すぐに 使 えるデータ 処理 とモデル 呼 び 出 し 機能 を 提供 し、Flow の 可視化 を 通 じてワークフローのオーケストレーションを 可能 にします!
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://fastgpt.in/">
|
||||||
|
<img height="21" src="https://img.shields.io/badge/在线使用-d4eaf7?style=flat-square&logo=spoj&logoColor=7d09f1" alt="cloud">
|
||||||
|
</a>
|
||||||
|
<a href="https://doc.fastgpt.in/docs/intro">
|
||||||
|
<img height="21" src="https://img.shields.io/badge/相关文档-7d09f1?style=flat-square" alt="document">
|
||||||
|
</a>
|
||||||
|
<a href="https://doc.fastgpt.in/docs/development">
|
||||||
|
<img height="21" src="https://img.shields.io/badge/本地开发-%23d4eaf7?style=flat-square&logo=xcode&logoColor=7d09f1" alt="development">
|
||||||
|
</a>
|
||||||
|
<a href="/#-%E7%9B%B8%E5%85%B3%E9%A1%B9%E7%9B%AE">
|
||||||
|
<img height="21" src="https://img.shields.io/badge/相关项目-7d09f1?style=flat-square" alt="project">
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/labring/FastGPT/blob/main/LICENSE">
|
||||||
|
<img height="21" src="https://img.shields.io/badge/License-Apache--2.0-ffffff?style=flat-square&labelColor=d4eaf7&color=7d09f1" alt="license">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409bd33f6d4
|
||||||
|
|
||||||
|
## 🛸 クラウドサービスの 利用
|
||||||
|
|
||||||
|
[fastgpt.in](https://fastgpt.in/)
|
||||||
|
|
||||||
|
| | |
|
||||||
|
| ---------------------------------- | ---------------------------------- |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|
||||||
|
## 💡 機能
|
||||||
|
|
||||||
|
1. パワフルなビジュアルワークフロー:AI アプリケーションを 簡単 に 作成
|
||||||
|
|
||||||
|
- [x] デッキのシンプルモード - マニュアルアレンジ 不要
|
||||||
|
- [x] ユーザ 対話事前 ガイダンス
|
||||||
|
- [x] グローバル 変数
|
||||||
|
- [x] ナレッジベース 検索
|
||||||
|
- [x] 複数 の LLM モデルによる 対話
|
||||||
|
- [x] テキストマジック - 構造化 データへの 変換
|
||||||
|
- [x] HTTP による 拡張
|
||||||
|
- [ ] on-the-fly HTTP モジュールのための 埋 め 込 みLaf
|
||||||
|
- [x] 次 の 対話 ステップへの 指示
|
||||||
|
- [x] ソースファイル 参照 の 追跡
|
||||||
|
- [ ] カスタムファイルリーダー
|
||||||
|
- [ ] モジュールをプラグインにパッケージして 再利用 する
|
||||||
|
|
||||||
|
2. 広範 なナレッジベースの 前処理
|
||||||
|
|
||||||
|
- [x] 複数 のナレッジベースの 再利用 と 混合
|
||||||
|
- [x] チャンクの 変更 と 削除 を 追跡
|
||||||
|
- [x] 手動入力、直接分割、QA 分割 インポートをサポート
|
||||||
|
- [x] URL フェッチとバッチ CSV インポートをサポート
|
||||||
|
- [x] ナレッジベースにユニークなベクトルモデルを 設定可能
|
||||||
|
- [x] オリジナルファイルの 保存
|
||||||
|
- [ ] ファイル 学習 エージェント
|
||||||
|
|
||||||
|
3. 複数 の 効果測定 チャンネル
|
||||||
|
|
||||||
|
- [x] シングルポイントナレッジベース 検索 テスト
|
||||||
|
- [x] 対話中 のフィードバック 参照 と 修正 ・ 削除機能
|
||||||
|
- [x] 完全 なコンテキストの 提示
|
||||||
|
- [ ] 完全 なモジュール 中間値提示
|
||||||
|
|
||||||
|
4. OpenAPI
|
||||||
|
|
||||||
|
- [x] 補完 インターフェイス (GPT インターフェイスに 合 わせる)
|
||||||
|
- [ ] ナレッジベース CRUD
|
||||||
|
|
||||||
|
5. オペレーション 機能
|
||||||
|
|
||||||
|
- [x] ログイン 不要 の 共有 ウィンドウ
|
||||||
|
- [x] Iframe によるワンクリック 埋 め 込 み
|
||||||
|
- [ ] 対話記録 への 統一 されたアクセス
|
||||||
|
|
||||||
|
## 👨💻 開発
|
||||||
|
|
||||||
|
プロジェクトの 技術 スタック:NextJs + TS + ChakraUI + Mongo + Postgres (Vector プラグイン)
|
||||||
|
|
||||||
|
- **⚡ デプロイ**
|
||||||
|
|
||||||
|
[](https://cloud.sealos.io/?openapp=system-fastdeploy%3FtemplateName%3Dfastgpt)
|
||||||
|
|
||||||
|
デプロイ 後、データベースをセットアップするので、2~4分待 ってください。基本設定 を 使 っているので、最初 は 少 し 遅 いかもしれません。
|
||||||
|
|
||||||
|
- [ローカル 開発入門](https://doc.fastgpt.in/docs/development)
|
||||||
|
- [FastGPT のデプロイ](https://doc.fastgpt.in/docs/installation)
|
||||||
|
- [システム 設定 ガイド](https://doc.fastgpt.in/docs/installation/reference)
|
||||||
|
- [複数 モデルの 設定](https://doc.fastgpt.in/docs/installation/reference/models)
|
||||||
|
- [バージョン 更新 とアップグレード](https://doc.fastgpt.in/docs/installation/upgrading)
|
||||||
|
|
||||||
|
<!-- ## :point_right: ロードマップ
|
||||||
|
- [FastGPT ロードマップ](https://kjqvjse66l.feishu.cn/docx/RVUxdqE2WolDYyxEKATcM0XXnte) -->
|
||||||
|
|
||||||
|
<!-- ## 🏘️ コミュニティ
|
||||||
|
|
||||||
|
| コミュニティグループ | アシスタント |
|
||||||
|
| ------------------------------------------------- | ---------------------------------------------- |
|
||||||
|
|  |  | -->
|
||||||
|
|
||||||
|
## 👀 その 他
|
||||||
|
|
||||||
|
- [FastGPT FAQ](https://kjqvjse66l.feishu.cn/docx/HtrgdT0pkonP4kxGx8qcu6XDnGh)
|
||||||
|
- [Docker 導入 チュートリアル 動画](https://www.bilibili.com/video/BV1jo4y147fT/)
|
||||||
|
- [公式 アカウント 統合 ビデオチュートリアル](https://www.bilibili.com/video/BV1xh4y1t7fy/)
|
||||||
|
- [FastGPT ナレッジベースデモ](https://www.bilibili.com/video/BV1Wo4y1p7i1/)
|
||||||
|
|
||||||
|
## 💪 関連 プロジェクト
|
||||||
|
|
||||||
|
- [Laf:サードパーティ 製 アプリケーションに 3 分 でクイックアクセス](https://github.com/labring/laf)
|
||||||
|
- [Sealos:クラスタアプリケーションの 迅速 な 展開](https://github.com/labring/sealos)
|
||||||
|
- [One API:マルチモデル 管理、Azure、Wenxin Yiyuan などをサポートします。](https://github.com/songquanpeng/one-api)
|
||||||
|
- [TuShan:5 分 でバックエンド 管理 システムを 構築](https://github.com/msgbyte/tushan)
|
||||||
|
|
||||||
|
## 🤝 サードパーティエコシステム
|
||||||
|
|
||||||
|
- [luolinAI:すぐに 使 える 企業向 け WeChat ボット](https://github.com/luolin-ai/FastGPT-Enterprise-WeChatbot)
|
||||||
|
|
||||||
|
## 🌟 Star History
|
||||||
|
|
||||||
|
[](https://star-history.com/#labring/FastGPT&Date)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"preset": "default",
|
"preset": "default",
|
||||||
"rules": {
|
"rules": {
|
||||||
"adjustedFullWidthPunctuation": ""
|
"adjustedFullWidthPunctuation": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 109 KiB |
|
Before Width: | Height: | Size: 328 KiB After Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 89 KiB |
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 165 KiB After Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 335 KiB After Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 307 KiB After Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 596 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 223 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 428 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 177 KiB After Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 247 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 355 KiB After Width: | Height: | Size: 130 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 71 KiB |
BIN
docSite/assets/imgs/cloud_price1.jpg
Normal file
|
After Width: | Height: | Size: 169 KiB |
BIN
docSite/assets/imgs/coreferenceResolution1.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
docSite/assets/imgs/coreferenceResolution2.jpg
Normal file
|
After Width: | Height: | Size: 372 KiB |
BIN
docSite/assets/imgs/coreferenceResolution3.jpg
Normal file
|
After Width: | Height: | Size: 332 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 17 KiB |
BIN
docSite/assets/imgs/customfeedback1.jpg
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
docSite/assets/imgs/customfeedback2.jpg
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
docSite/assets/imgs/customfeedback3.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
docSite/assets/imgs/customfeedback4.jpg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
docSite/assets/imgs/data_search1.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
docSite/assets/imgs/datasetEngine1.jpg
Normal file
|
After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 390 KiB |
BIN
docSite/assets/imgs/datasetEngine10.jpg
Normal file
|
After Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 383 KiB |
BIN
docSite/assets/imgs/datasetEngine11.jpg
Normal file
|
After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 307 KiB |
BIN
docSite/assets/imgs/datasetEngine2.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
|
Before Width: | Height: | Size: 252 KiB |
BIN
docSite/assets/imgs/datasetEngine3.jpg
Normal file
|
After Width: | Height: | Size: 275 KiB |
|
Before Width: | Height: | Size: 865 KiB |
BIN
docSite/assets/imgs/datasetEngine4.jpg
Normal file
|
After Width: | Height: | Size: 392 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
BIN
docSite/assets/imgs/datasetEngine5.jpg
Normal file
|
After Width: | Height: | Size: 510 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
BIN
docSite/assets/imgs/datasetEngine6.jpg
Normal file
|
After Width: | Height: | Size: 416 KiB |
|
Before Width: | Height: | Size: 1.3 MiB |
BIN
docSite/assets/imgs/datasetEngine7.jpg
Normal file
|
After Width: | Height: | Size: 348 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
BIN
docSite/assets/imgs/datasetEngine8.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
|
Before Width: | Height: | Size: 255 KiB |
BIN
docSite/assets/imgs/datasetEngine9.jpg
Normal file
|
After Width: | Height: | Size: 180 KiB |
|
Before Width: | Height: | Size: 562 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 13 KiB |
BIN
docSite/assets/imgs/dataset_search_params1.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
docSite/assets/imgs/datasetprompt1.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 311 KiB |
BIN
docSite/assets/imgs/datasetprompt2.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 248 KiB |
BIN
docSite/assets/imgs/datasetprompt3.jpg
Normal file
|
After Width: | Height: | Size: 174 KiB |
|
Before Width: | Height: | Size: 563 KiB |
BIN
docSite/assets/imgs/datasetprompt4.jpg
Normal file
|
After Width: | Height: | Size: 176 KiB |
|
Before Width: | Height: | Size: 558 KiB |
BIN
docSite/assets/imgs/datasetprompt5.jpg
Normal file
|
After Width: | Height: | Size: 179 KiB |
|
Before Width: | Height: | Size: 574 KiB |
BIN
docSite/assets/imgs/datasetprompt6.jpg
Normal file
|
After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 541 KiB |
BIN
docSite/assets/imgs/datasetprompt7.jpg
Normal file
|
After Width: | Height: | Size: 231 KiB |
|
Before Width: | Height: | Size: 731 KiB |
BIN
docSite/assets/imgs/datasetprompt8.jpg
Normal file
|
After Width: | Height: | Size: 207 KiB |
|
Before Width: | Height: | Size: 671 KiB |
BIN
docSite/assets/imgs/datasetprompt9.jpg
Normal file
|
After Width: | Height: | Size: 212 KiB |
|
Before Width: | Height: | Size: 672 KiB |
BIN
docSite/assets/imgs/demo-appointment1.jpg
Normal file
|
After Width: | Height: | Size: 285 KiB |