From 662b45742a5b6fa54cb701db645a8dd722c2d6a0 Mon Sep 17 00:00:00 2001 From: Shixian Sheng Date: Fri, 9 May 2025 22:04:41 -0400 Subject: [PATCH 1/5] Update common.js --- frontend/src/locales/zh/common.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/locales/zh/common.js b/frontend/src/locales/zh/common.js index 7dbeb3f5aba..eb4f02d3b03 100644 --- a/frontend/src/locales/zh/common.js +++ b/frontend/src/locales/zh/common.js @@ -79,9 +79,9 @@ const TRANSLATIONS = { branding: "品牌与白标签化", chat: "聊天", "api-keys": "开发者API", - llm: "LLM 首选项", + llm: "大语言模型(LLM)", transcription: "转录模型", - embedder: "Embedder 首选项", + embedder: "嵌入器(Embedder)", "text-splitting": "文本分割", "voice-speech": "语音和讲话", "vector-database": "向量数据库", @@ -417,7 +417,7 @@ const TRANSLATIONS = { description: "这些是用户发送的所有聊天记录和消息,按创建日期排序。", export: "导出", table: { - id: "Id", + id: "编号", by: "发送者", workspace: "工作区", prompt: "提示词", @@ -461,8 +461,8 @@ const TRANSLATIONS = { description: "启用或禁用聊天窗口中的滚动条。", }, "support-email": { - title: "支持邮箱", - description: "设置用户在需要帮助时可联系的支持邮箱地址。", + title: "客服邮箱", + description: "设置用户在需要帮助时可联系的客服邮箱地址。", }, "app-name": { title: "名称", @@ -485,15 +485,15 @@ const TRANSLATIONS = { replace: "替换", }, "welcome-messages": { - title: "欢迎消息", - description: "自定义显示给用户的欢迎消息。仅非管理员用户可见这些消息。", + title: "欢迎信息", + description: "自定义显示给用户的欢迎信息。仅非管理员用户可见这些信息。", new: "新建", system: "系统", user: "用户", - message: "消息", + message: "信息", assistant: "AnythingLLM 聊天助手", "double-click": "双击进行编辑...", - save: "保存消息", + save: "保存信息", }, "browser-appearance": { title: "浏览器外观", From d9fc09bff89b7511700eb5d8b6fe6bbb8f06bbf9 Mon Sep 17 00:00:00 2001 From: Shixian Sheng Date: Sat, 10 May 2025 17:34:29 -0400 Subject: [PATCH 2/5] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8cf7ad09b56..d6352004ed2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

AnythingLLM: The all-in-one AI app you were looking for.
- Chat with your docs, use AI Agents, hyper-configurable, multi-user, & no frustrating set up required. + Chat with your docs, use AI Agents, hyper-configurable, multi-user, & no frustrating setup required.

@@ -36,7 +36,7 @@ 👉 AnythingLLM for desktop (Mac, Windows, & Linux)! Download Now

-A full-stack application that enables you to turn any document, resource, or piece of content into context that any LLM can use as references during chatting. This application allows you to pick and choose which LLM or Vector Database you want to use as well as supporting multi-user management and permissions. +A full-stack application that enables you to turn any document, resource, or piece of content into context that any LLM can use as a reference during chatting. This application allows you to pick and choose which LLM or Vector Database you want to use as well as supporting multi-user management and permissions. ![Chatting](https://github.com/Mintplex-Labs/anything-llm/assets/16845892/cfc5f47c-bd91-4067-986c-f3f49621a859) @@ -63,7 +63,7 @@ AnythingLLM divides your documents into objects called `workspaces`. A Workspace - 🦾 Agents inside your workspace (browse the web, etc) - 💬 [Custom Embeddable Chat widget for your website](https://github.com/Mintplex-Labs/anythingllm-embed/blob/main/README.md) _Docker version only_ - 📖 Multiple document type support (PDF, TXT, DOCX, etc) -- Simple chat UI with Drag-n-Drop funcitonality and clear citations. +- Simple chat UI with Drag-n-Drop functionality and clear citations. - 100% Cloud deployment ready. - Works with all popular [closed and open-source LLM providers](#supported-llms-embedder-models-speech-models-and-vector-databases). - Built-in cost & time-saving measures for managing very large documents compared to any other chat UI. From 36f46d3476dae7b0dcb122341818161d536745bb Mon Sep 17 00:00:00 2001 From: Shixian Sheng Date: Sat, 10 May 2025 17:35:59 -0400 Subject: [PATCH 3/5] Update common.js --- frontend/src/locales/en/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/locales/en/common.js b/frontend/src/locales/en/common.js index 2be459e2ae6..f24fff9ec15 100644 --- a/frontend/src/locales/en/common.js +++ b/frontend/src/locales/en/common.js @@ -452,7 +452,7 @@ const TRANSLATIONS = { "These are all the recorded chats and messages that have been sent by users ordered by their creation date.", export: "Export", table: { - id: "Id", + id: "ID", by: "Sent By", workspace: "Workspace", prompt: "Prompt", From bca6e7eccbfc545073fc8557f45700ce98493491 Mon Sep 17 00:00:00 2001 From: Shixian Sheng Date: Sun, 11 May 2025 09:30:25 -0400 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6352004ed2..9d9a2efcb40 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ This monorepo consists of six main sections: - `embed`: Submodule for generation & creation of the [web embed widget](https://github.com/Mintplex-Labs/anythingllm-embed). - `browser-extension`: Submodule for the [chrome browser extension](https://github.com/Mintplex-Labs/anythingllm-extension). -## 🛳 Self Hosting +## 🛳 Self-Hosting Mintplex Labs & the community maintain a number of deployment methods, scripts, and templates that you can use to run AnythingLLM locally. Refer to the table below to read how to deploy on your preferred environment or to automatically deploy. | Docker | AWS | GCP | Digital Ocean | Render.com | From b1e20e223908bf44fa321ceea3a42aeaeee9d892 Mon Sep 17 00:00:00 2001 From: timothycarambat Date: Mon, 12 May 2025 09:41:54 -0700 Subject: [PATCH 5/5] linting --- server/utils/vectorDbProviders/pgvector/SETUP.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/utils/vectorDbProviders/pgvector/SETUP.md b/server/utils/vectorDbProviders/pgvector/SETUP.md index 0281b8afc54..d70cd393764 100644 --- a/server/utils/vectorDbProviders/pgvector/SETUP.md +++ b/server/utils/vectorDbProviders/pgvector/SETUP.md @@ -123,5 +123,3 @@ Then, you will need to create the extension on the database. This can be done by psql CREATE EXTENSION vector; ``` - -