forked from labring/FastGPT
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,014 changed files
with
40,752 additions
and
26,949 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ assignees: '' | |
**你的版本** | ||
|
||
- [ ] 公有云版本 | ||
- [ ] 私有部署版本 | ||
- [ ] 私有部署版本, 具体版本号: | ||
|
||
**问题描述** | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 全是问题群 |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,7 @@ docSite/.vercel | |
|
||
|
||
.idea/ | ||
files/helm/fastgpt/fastgpt-0.1.0.tgz | ||
files/helm/fastgpt/charts/*.tgz | ||
|
||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"inlang.vs-code-extension" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 ./ | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 域名会弃用。 | ||
|
||
| | | | ||
| ---------------------------------- | ---------------------------------- | | ||
|
@@ -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 模块 | ||
- [ ] 插件封装功能 | ||
|
||
|
@@ -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"> | ||
|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Diff not rendered.
Binary file not shown.
Oops, something went wrong.
File renamed without changes
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.