Skip to content

Commit

Permalink
Merge pull request #20 from lingmengcan/dev
Browse files Browse the repository at this point in the history
1.0.1.20240926:
  • Loading branch information
lingmengcan authored Sep 26, 2024
2 parents 28d74ef + b7f03b9 commit 2758d65
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">AIGC Application Platform: Lingmengcan AI</h1>
<p align="center">English | <a href="README.zh-CN.md">中文</a> </p>

Lingmengcan AI is an AI system based on large models.Currently, it provides functions such as large language model dialogue, model management, text-to-image generation, and background role management. The technology stack used includes Stable Diffusion, OpenAI, ChatGPT, LangChainJS as the AI layer, Vue 3, Naive UI, and Tailwind CSS for the UI layer, and NestJS, LangChainJS, and MySQL for the service layer, with ChromaDB as the vector database. This project is a knowledge base enhancement solution that can achieve **fully localized** reasoning and also provides AIGC functions, focusing on solving the pain points of enterprises regarding data security protection and private domain deployment.
Lingmengcan AI is an AI system based on large models.Currently, it provides functions such as large language model dialogue, model management, text-to-image generation, and background role management. The technology stack used includes Stable Diffusion, OpenAI, ChatGPT, LangChainJS as the AI layer, Vue 3, Naive UI, and Tailwind CSS for the UI layer, and NestJS, LangChainJS, Ollama, and MySQL for the service layer, with ChromaDB as the vector database. This project is a knowledge base enhancement solution that can achieve **fully localized** reasoning and also provides AIGC functions, focusing on solving the pain points of enterprises regarding data security protection and private domain deployment.

## Community

Expand Down Expand Up @@ -52,6 +52,12 @@ Ensure that your development environment meets the following requirements:

### If You Have a Large Language Model Locally: Load the Model from Local

#### Ollama

Reference for Deploying Models Locally with Ollama [https://github.com/ollama/ollama](https://github.com/ollama/ollama)

#### ChatGLM3

Please refer to [THUDM/ChatGLM3#Load the Model from Local](https://github.com/THUDM/ChatGLM3#从本地加载模型)

```bash
Expand Down
8 changes: 7 additions & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">大模型 AI 应用平台 Lingmengcan AI</h1>
<p align="center"><a href="README.md">English</a> | 中文</p>

lingmengcan-ai 是一个基于大模型的 ai 系统,目前提供大语言模型对话、模型管理、文生图和后台角色管理等等功能。使用的技术栈,包括 stable deffusion、openai、chatgpt、LangChainJS 作为 ai 层,Vue 3、Naive UI 和 Tailwind CSS 构建 UI 层,以及 NestJS、LangChainJS、MySQL 为服务层,chromadb 为向量数据库。该项目是一个可以实现**完全本地化**推理的知识库增强方案,同时提供 AIGC 功能, 重点解决数据安全保护,私域化部署的企业痛点。
lingmengcan-ai 是一个基于大模型的 ai 系统,目前提供大语言模型对话、模型管理、文生图和后台角色管理等等功能。使用的技术栈,包括 stable deffusion、openai、chatgpt、LangChainJS 作为 ai 层,Vue 3、Naive UI 和 Tailwind CSS 构建 UI 层,以及 NestJS、LangChainJS、Ollama、MySQL 为服务层,chromadb 为向量数据库。该项目是一个可以实现**完全本地化**推理的知识库增强方案,同时提供 AIGC 功能, 重点解决数据安全保护,私域化部署的企业痛点。

## 社区

Expand Down Expand Up @@ -52,6 +52,12 @@ lingmengcan-ai 是一个基于大模型的 ai 系统,目前提供大语言模

### 如果本地已有大语言模型:从本地加载模型

#### Ollama

通过 Ollama 本地部署模型参考[https://github.com/ollama/ollama](https://github.com/ollama/ollama)

#### ChatGLM3

请参考 [THUDM/ChatGLM3#从本地加载模型](https://github.com/THUDM/ChatGLM3#从本地加载模型)

```bash
Expand Down
2 changes: 1 addition & 1 deletion service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lingmengcan-service",
"version": "1.0.0.20240911",
"version": "1.0.1.20240926",
"description": "lingmengcan-ai",
"author": "lingmengcan",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lingmengcan-web",
"version": "1.0.0.20240911",
"version": "1.0.1.20240926",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions web/src/views/draw/generate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
</div>
<n-tabs size="large" justify-content="space-evenly" type="line" animated class="flex-1 overflow-hidden">
<n-tab-pane name="txt2img" :tab="$t('views.draw.stableDiffusion.txt2img')" class="flex flex-col h-full">
<stableDiffusion v-model:txt2imgParams="txt2imgParams" v-model:loraList="loraList" />
<stableDiffusion v-model:txt2img-params="txt2imgParams" v-model:lora-list="loraList" />
</n-tab-pane>
<n-tab-pane name="img2img" :tab="$t('views.draw.stableDiffusion.img2img')" class="flex flex-col h-full">
<stableDiffusion v-model:txt2imgParams="txt2imgParams" v-model:loraList="loraList" />
<stableDiffusion v-model:txt2img-params="txt2imgParams" v-model:lora-list="loraList" />
</n-tab-pane>
<n-tab-pane name="2video" :tab="$t('views.draw.stableDiffusion.genVideo')" disabled></n-tab-pane>
</n-tabs>
Expand Down

0 comments on commit 2758d65

Please sign in to comment.