diff --git a/README.md b/README.md index 06530638..92ea3729 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

语析 - 基于大模型的知识库与知识图谱智能体开发平台

-[![Stable](https://img.shields.io/badge/stable-v0.4.3-blue.svg)](https://github.com/xerrors/Yuxi-Know/tree/v0.4.3) +[![Stable](https://img.shields.io/badge/stable-v0.4.4-blue.svg)](https://github.com/xerrors/Yuxi-Know/tree/v0.4.4) [![](https://img.shields.io/badge/Docker-2496ED?style=flat&logo=docker&logoColor=ffffff)](https://github.com/xerrors/Yuxi-Know/blob/main/docker-compose.yml) [![](https://img.shields.io/github/issues/xerrors/Yuxi-Know?color=F48D73)](https://github.com/xerrors/Yuxi-Know/issues) [![License](https://img.shields.io/github/license/bitcookies/winrar-keygen.svg?logo=github)](https://github.com/xerrors/Yuxi-Know/blob/main/LICENSE) @@ -92,7 +92,7 @@ 克隆代码,并初始化 ``` -git clone --branch v0.4.3 --depth 1 https://github.com/xerrors/Yuxi-Know.git +git clone --branch v0.4.4 --depth 1 https://github.com/xerrors/Yuxi-Know.git cd Yuxi-Know # Linux/macOS @@ -116,12 +116,12 @@ docker compose up --build image
11111 -
+
22222 -
+
1212 -
+
44444 diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 4a6403ec..a2f75e5f 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -3,7 +3,7 @@ services: build: context: . dockerfile: docker/api.Dockerfile - image: yuxi-api:0.4.prod + image: yuxi-api:0.5.prod container_name: api-prod working_dir: /app networks: @@ -49,7 +49,7 @@ services: context: . dockerfile: docker/web.Dockerfile target: production - image: yuxi-web:0.4.prod + image: yuxi-web:0.5.prod container_name: web-prod ports: - "80:80" diff --git a/docker-compose.yml b/docker-compose.yml index 1f27cbb8..c8ebf158 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: args: HTTP_PROXY: ${HTTP_PROXY:-} HTTPS_PROXY: ${HTTPS_PROXY:-} - image: yuxi-api:0.4.dev + image: yuxi-api:0.5.dev container_name: api-dev working_dir: /app volumes: @@ -64,7 +64,7 @@ services: context: . dockerfile: docker/web.Dockerfile target: development - image: yuxi-web:0.4.dev + image: yuxi-web:0.5.dev container_name: web-dev volumes: - ./web/src:/app/src diff --git a/pyproject.toml b/pyproject.toml index c5506de1..60fcc6ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yuxi-know" -version = "0.4.3.dev" +version = "0.5.0.dev" description = "基于大模型的智能知识库与知识图谱智能体开发平台,融合了 RAG 技术与知识图谱技术,基于 LangGraph v1 + Vue.js + FastAPI + LightRAG 架构构建" readme = "README.md" requires-python = ">=3.12,<3.14" diff --git a/src/config/static/info.template.yaml b/src/config/static/info.template.yaml index 87d1253b..ce156712 100644 --- a/src/config/static/info.template.yaml +++ b/src/config/static/info.template.yaml @@ -16,15 +16,15 @@ branding: features: - label: "GitHub Stars" - value: "3800+" + value: "4100+" description: "开发者社区的认可与支持" icon: "stars" - label: "已解决 Issues" - value: "250+" + value: "300+" description: "持续改进和问题解决能力" icon: "issues" - label: "累计 Commits" - value: "1200+" + value: "1300+" description: "活跃的开发迭代和功能更新" icon: "commits" - label: "开源协议" @@ -50,4 +50,4 @@ actions: # 页脚信息 footer: - copyright: "© 江南语析 2025 v0.4.3" + copyright: "© 江南语析 2026 v0.5.0" diff --git a/web/package.json b/web/package.json index cf3e572f..f4a00018 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "yuxi-know-web", - "version": "0.4.3.web", + "version": "0.5.0.web", "private": true, "scripts": { "dev": "vite", diff --git a/web/public/agents-icon/chatbot.png b/web/public/agents-icon/chatbot.png deleted file mode 100644 index 322ca76e..00000000 Binary files a/web/public/agents-icon/chatbot.png and /dev/null differ diff --git a/web/public/home.png b/web/public/home.png deleted file mode 100644 index 2460f5fb..00000000 Binary files a/web/public/home.png and /dev/null differ diff --git a/web/public/jnu.svg b/web/public/jnu.svg deleted file mode 100644 index 262ffff7..00000000 --- a/web/public/jnu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/web/public/login-bg.jpg b/web/public/login-bg.jpg index 9a7ce804..4716005a 100644 Binary files a/web/public/login-bg.jpg and b/web/public/login-bg.jpg differ diff --git a/web/src/components/AgentConfigSidebar.vue b/web/src/components/AgentConfigSidebar.vue index bb1b0c4e..97573641 100644 --- a/web/src/components/AgentConfigSidebar.vue +++ b/web/src/components/AgentConfigSidebar.vue @@ -1176,6 +1176,8 @@ const confirmDeleteConfig = async () => { .option-indicator { flex-shrink: 0; font-size: 14px; + display: flex; + align-items: center; } } } @@ -1280,6 +1282,8 @@ const confirmDeleteConfig = async () => { font-size: 16px; transition: all 0.2s ease; flex-shrink: 0; + display: flex; + align-items: center; } } diff --git a/web/src/views/LoginView.vue b/web/src/views/LoginView.vue index acf19649..35aafc9a 100644 --- a/web/src/views/LoginView.vue +++ b/web/src/views/LoginView.vue @@ -14,196 +14,217 @@ -
- 返回首页 -
- -
- -
- + + - -