chore: Bump project version to 0.6.0-dev across backend, web, and Docker configurations
This commit is contained in:
parent
0bd6b24988
commit
d62328d73b
@ -2,7 +2,7 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
<h1>语析 - 基于大模型的知识库与知识图谱智能体开发平台</h1>
|
<h1>语析 - 基于大模型的知识库与知识图谱智能体开发平台</h1>
|
||||||
|
|
||||||
[](https://github.com/xerrors/Yuxi-Know/tree/v0.5.3)
|
[](https://github.com/xerrors/Yuxi-Know)
|
||||||
[](https://github.com/xerrors/Yuxi-Know/blob/main/docker-compose.yml)
|
[](https://github.com/xerrors/Yuxi-Know/blob/main/docker-compose.yml)
|
||||||
[](https://github.com/xerrors/Yuxi-Know/issues)
|
[](https://github.com/xerrors/Yuxi-Know/issues)
|
||||||
[](https://github.com/xerrors/Yuxi-Know/blob/main/LICENSE)
|
[](https://github.com/xerrors/Yuxi-Know/blob/main/LICENSE)
|
||||||
@ -120,7 +120,7 @@
|
|||||||
克隆代码,并初始化
|
克隆代码,并初始化
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone --branch v0.5.3 --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
git clone --branch v0.6.0-dev --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
||||||
cd Yuxi-Know
|
cd Yuxi-Know
|
||||||
|
|
||||||
# Linux/macOS
|
# Linux/macOS
|
||||||
|
|||||||
@ -7,7 +7,7 @@ from concurrent.futures import ThreadPoolExecutor # noqa: E402
|
|||||||
|
|
||||||
from yuxi.config import config as config # noqa: E402
|
from yuxi.config import config as config # noqa: E402
|
||||||
|
|
||||||
__version__ = "0.5.3"
|
__version__ = "0.6.0-dev"
|
||||||
|
|
||||||
if os.getenv("YUXI_SKIP_APP_INIT") != "1":
|
if os.getenv("YUXI_SKIP_APP_INIT") != "1":
|
||||||
from yuxi.knowledge import graph_base as graph_base # noqa: E402
|
from yuxi.knowledge import graph_base as graph_base # noqa: E402
|
||||||
|
|||||||
@ -50,6 +50,6 @@ actions:
|
|||||||
|
|
||||||
# 页脚信息
|
# 页脚信息
|
||||||
footer:
|
footer:
|
||||||
copyright: "© 江南语析 2026 v0.5.3"
|
copyright: "© 江南语析 2026 v0.6.0-dev"
|
||||||
user_agreement_url: "/protocols/user-agreement.template.html"
|
user_agreement_url: "/protocols/user-agreement.template.html"
|
||||||
privacy_policy_url: "/protocols/privacy-policy.template.html"
|
privacy_policy_url: "/protocols/privacy-policy.template.html"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "yuxi"
|
name = "yuxi"
|
||||||
version = "0.5.3"
|
version = "0.6.0-dev"
|
||||||
description = "Add your description here"
|
description = "Add your description here"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "yuxi-workspace"
|
name = "yuxi-workspace"
|
||||||
version = "0.5.3"
|
version = "0.6.0-dev"
|
||||||
description = "基于大模型的智能知识库与知识图谱智能体开发平台,融合了 RAG 技术与知识图谱技术,基于 LangGraph v1 + Vue.js + FastAPI + LightRAG 架构构建"
|
description = "基于大模型的智能知识库与知识图谱智能体开发平台,融合了 RAG 技术与知识图谱技术,基于 LangGraph v1 + Vue.js + FastAPI + LightRAG 架构构建"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12,<3.14"
|
requires-python = ">=3.12,<3.14"
|
||||||
|
|||||||
@ -3,7 +3,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/api.Dockerfile
|
dockerfile: docker/api.Dockerfile
|
||||||
image: yuxi-api:0.5.prod
|
image: yuxi-api:0.6.prod
|
||||||
container_name: api-prod
|
container_name: api-prod
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
networks:
|
networks:
|
||||||
@ -56,7 +56,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/api.Dockerfile
|
dockerfile: docker/api.Dockerfile
|
||||||
image: yuxi-api:0.5.prod
|
image: yuxi-api:0.6.prod
|
||||||
container_name: worker-prod
|
container_name: worker-prod
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
networks:
|
networks:
|
||||||
@ -104,7 +104,7 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: docker/web.Dockerfile
|
dockerfile: docker/web.Dockerfile
|
||||||
target: production
|
target: production
|
||||||
image: yuxi-web:0.5.prod
|
image: yuxi-web:0.6.prod
|
||||||
container_name: web-prod
|
container_name: web-prod
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
|
|||||||
@ -3,7 +3,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/api.Dockerfile
|
dockerfile: docker/api.Dockerfile
|
||||||
image: yuxi-api:0.5.dev
|
image: yuxi-api:0.6.dev
|
||||||
container_name: api-dev
|
container_name: api-dev
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
volumes:
|
volumes:
|
||||||
@ -65,7 +65,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/api.Dockerfile
|
dockerfile: docker/api.Dockerfile
|
||||||
image: yuxi-api:0.5.dev
|
image: yuxi-api:0.6.dev
|
||||||
container_name: worker-dev
|
container_name: worker-dev
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
volumes:
|
volumes:
|
||||||
@ -121,7 +121,7 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: docker/web.Dockerfile
|
dockerfile: docker/web.Dockerfile
|
||||||
target: development
|
target: development
|
||||||
image: yuxi-web:0.5.dev
|
image: yuxi-web:0.6.dev
|
||||||
container_name: web-dev
|
container_name: web-dev
|
||||||
volumes:
|
volumes:
|
||||||
- ./web/src:/app/src
|
- ./web/src:/app/src
|
||||||
|
|||||||
@ -15,8 +15,8 @@ Yuxi(语析)是一个基于知识图谱和向量数据库的智能知识库
|
|||||||
### 步骤一:获取项目代码
|
### 步骤一:获取项目代码
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 克隆稳定版本(推荐新用户使用 v0.5.3)
|
# 克隆最新版本
|
||||||
git clone --branch v0.5.3 --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
git clone --branch v0.6.0-dev --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
||||||
cd Yuxi-Know
|
cd Yuxi-Know
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ cd Yuxi-Know
|
|||||||
|
|
||||||
| 版本 | 适用场景 |
|
| 版本 | 适用场景 |
|
||||||
|------|----------|
|
|------|----------|
|
||||||
| v0.5.x | 稳定版本,适合生产环境使用 |
|
| v0.6.x | 当前开发版本,包含最新特性 |
|
||||||
| main | 开发版本,包含最新特性(可能不稳定) |
|
| main | 开发版本,包含最新特性(可能不稳定) |
|
||||||
|
|
||||||
### 步骤二:配置环境变量
|
### 步骤二:配置环境变量
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "yuxi-web",
|
"name": "yuxi-web",
|
||||||
"version": "0.5.3.web",
|
"version": "0.6.0-dev",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user