From 40ffd72d5a4f528adf767932e5e9e38edcd1f914 Mon Sep 17 00:00:00 2001 From: Arvin Xu Date: Sun, 10 Mar 2024 14:47:00 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20docs:=20update=20docs=20(#15?= =?UTF-8?q?22)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * :memo: docs: update docs * 📝 docs: update docs * 📝 docs: update docs --- docs/self-hosting/environment-variables.mdx | 11 ++++++ .../environment-variables.zh-CN.mdx | 10 ++++++ docs/self-hosting/start.mdx | 17 ++++++++++ docs/self-hosting/start.zh-CN.mdx | 17 ++++++++++ docs/usage/agents/model.mdx | 5 +++ docs/usage/features/agent-market.mdx | 8 +++-- docs/usage/features/local-llm.mdx | 5 +++ docs/usage/features/local-llm.zh-CN.mdx | 7 ++++ docs/usage/features/mobile.mdx | 4 +++ docs/usage/features/multi-ai-providers.mdx | 4 +++ docs/usage/features/plugin-system.mdx | 4 +++ docs/usage/features/pwa.mdx | 4 +++ docs/usage/features/text-to-image.mdx | 4 +++ docs/usage/features/theme.mdx | 4 +++ docs/usage/features/tts.mdx | 5 +++ docs/usage/features/vision.mdx | 9 +++-- ...plugin-development.mdx => development.mdx} | 0 ...opment.zh-CN.mdx => development.zh-CN.mdx} | 0 .../plugins/{plugin-store.mdx => store.mdx} | 0 ...plugin-store.zh-CN.mdx => store.zh-CN.mdx} | 0 docs/usage/providers/ollama.mdx | 6 ++++ docs/usage/providers/ollama.zh-CN.mdx | 5 +++ docs/usage/providers/ollama/gemma.mdx | 6 ++++ docs/usage/providers/ollama/gemma.zh-CN.mdx | 5 +++ docs/usage/start.mdx | 34 +++++++++++++++++++ docs/usage/start.zh-CN.mdx | 28 +++++++++++++++ 26 files changed, 198 insertions(+), 4 deletions(-) create mode 100644 docs/self-hosting/environment-variables.mdx create mode 100644 docs/self-hosting/environment-variables.zh-CN.mdx create mode 100644 docs/self-hosting/start.mdx create mode 100644 docs/self-hosting/start.zh-CN.mdx rename docs/usage/plugins/{plugin-development.mdx => development.mdx} (100%) rename docs/usage/plugins/{plugin-development.zh-CN.mdx => development.zh-CN.mdx} (100%) rename docs/usage/plugins/{plugin-store.mdx => store.mdx} (100%) rename docs/usage/plugins/{plugin-store.zh-CN.mdx => store.zh-CN.mdx} (100%) create mode 100644 docs/usage/start.mdx create mode 100644 docs/usage/start.zh-CN.mdx diff --git a/docs/self-hosting/environment-variables.mdx b/docs/self-hosting/environment-variables.mdx new file mode 100644 index 000000000000..1502afd500b0 --- /dev/null +++ b/docs/self-hosting/environment-variables.mdx @@ -0,0 +1,11 @@ +import { Cards } from 'nextra/components'; + +# Environment Variables + +LobeChat provides some additional configuration options when deployed, which can be customized using environment variables. + + + + + + diff --git a/docs/self-hosting/environment-variables.zh-CN.mdx b/docs/self-hosting/environment-variables.zh-CN.mdx new file mode 100644 index 000000000000..a2b6923b7f42 --- /dev/null +++ b/docs/self-hosting/environment-variables.zh-CN.mdx @@ -0,0 +1,10 @@ +import { Cards } from 'nextra/components'; + +# 环境变量 + +LobeChat 在部署时提供了一些额外的配置项,你可以使用环境变量进行自定义设置。 + + + + + diff --git a/docs/self-hosting/start.mdx b/docs/self-hosting/start.mdx new file mode 100644 index 000000000000..e321cb1f8ab3 --- /dev/null +++ b/docs/self-hosting/start.mdx @@ -0,0 +1,17 @@ +# Build your own Lobe Chat + +Choose your favorite platform to get started. + +## Choose your deployment platform + +LobeChat support multiple deployment platforms, including Vercel, Docker, and Docker Compose and so on, you can choose the deployment platform that suits you. + + diff --git a/docs/self-hosting/start.zh-CN.mdx b/docs/self-hosting/start.zh-CN.mdx new file mode 100644 index 000000000000..ea0b3cb3d7cf --- /dev/null +++ b/docs/self-hosting/start.zh-CN.mdx @@ -0,0 +1,17 @@ +# 构建属于自己的 Lobe Chat + +选择自己喜爱的平台,构建属于自己的 Lobe Chat。 + +## 选择部署平台 + +LobeChat 支持多种部署平台,包括 Vercel、Docker 和 Docker Compose 等,你可以选择适合自己的部署平台进行部署。 + + diff --git a/docs/usage/agents/model.mdx b/docs/usage/agents/model.mdx index b7821f8cd7ee..115bdd74612c 100644 --- a/docs/usage/agents/model.mdx +++ b/docs/usage/agents/model.mdx @@ -1,3 +1,8 @@ +--- +title: LLM Guide +description: Explore the capabilities of ChatGPT models from gpt-3.5-turbo to gpt-4-32k, understanding their speed, context limits, and cost. Learn about model parameters like temperature and top-p for better output. +--- + import { Callout } from 'nextra/components'; # Model Guide diff --git a/docs/usage/features/agent-market.mdx b/docs/usage/features/agent-market.mdx index f0a75efed654..2695a83c4b8c 100644 --- a/docs/usage/features/agent-market.mdx +++ b/docs/usage/features/agent-market.mdx @@ -1,9 +1,13 @@ +--- +title: Assistant Market +--- + import { Callout } from 'nextra/components'; -# Agent Market +# Assistant Market {'Agent + + + +## Experience Features + + diff --git a/docs/usage/start.zh-CN.mdx b/docs/usage/start.zh-CN.mdx new file mode 100644 index 000000000000..496b8246d184 --- /dev/null +++ b/docs/usage/start.zh-CN.mdx @@ -0,0 +1,28 @@ +--- +title: 开始使用 +image: https://github.com/lobehub/lobe-chat/assets/28616219/9be1a584-8b66-4bc4-ac96-14c4f94dc499 +--- + +# ✨ LobeChat 功能特性一览 + +{'视觉感知 + + + +## 体验特性 + + From 219a0e10c7ce47990e251687d6008ca4439267c5 Mon Sep 17 00:00:00 2001 From: lobehubbot Date: Sun, 10 Mar 2024 06:49:55 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9D=20docs(bot):=20Auto=20sync=20a?= =?UTF-8?q?gents=20&=20plugin=20to=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- README.zh-CN.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 53133030eb23..38bc97f2daec 100644 --- a/README.md +++ b/README.md @@ -257,12 +257,12 @@ Our marketplace is not just a showcase platform but also a collaborative space. | Recent Submits | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [日程管理助手](https://chat-preview.lobehub.com/market?agent=calendar-manager)
By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07** | 日程管理助手,调用时间插件,处理新增、查询、删除日程请求,支持多种操作和提醒。
`日程管理` `时间插件` `新增日程` `查询日程` `删除日程` | +| [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)
By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09** | Specializes in engaging Gen Z users with tailored interactions reflecting their preferences and values.
`engagement` `gen-z` `communication` `advice` `interaction` | +| [Schedule Management Assistant](https://chat-preview.lobehub.com/market?agent=calendar-manager)
By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07** | Schedule Management Assistant, calls the time plugin to handle requests for adding, querying, and deleting schedules, supports multiple operations and reminders.
`schedule-management` `time-plugin` `add-schedule` `query-schedule` `delete-schedule` | | [Business Email Writing Expert](https://chat-preview.lobehub.com/market?agent=business-email)
By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06** | Business email writing expert specializing in bilingual business emails in Chinese and English, cross-cultural communication, and engagement in the GitHub open-source community.
`business-email-writing` `business-cooperation` `business-authorization` `cross-cultural-communication` `git-hub-and-open-source-community` | | [Discord Style Copywriting Expert](https://chat-preview.lobehub.com/market?agent=discord-copywriting)
By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06** | A copywriting expert in Discord style, prioritizing humor and user experience, specializing in personalized software copywriting.
`copywriting` `creation` `user-experience` `humor` `software-system` | -| [AI Image Prompt Architect](https://chat-preview.lobehub.com/market?agent=9-somboon)
By **[9Somboon](https://github.com/9Somboon)** on **2024-03-05** | Specialises in creating detailed prompts for AI image generation.
`stable-diffusion` `ai-image-generation` `prompts` `photography` `creative` `art` | -> 📊 Total agents: [**199** ](https://github.com/lobehub/lobe-chat-agents) +> 📊 Total agents: [**200** ](https://github.com/lobehub/lobe-chat-agents) diff --git a/README.zh-CN.md b/README.zh-CN.md index dfb91bbde068..4ab5f6dbb91c 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -245,12 +245,12 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地 | 最近新增 | 助手说明 | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)
By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09** | 专注于通过定制互动反映他们的偏好和价值观,与 Gen Z 用户进行互动。
`engagement` `gen-z` `communication` `advice` `interaction` | | [日程管理助手](https://chat-preview.lobehub.com/market?agent=calendar-manager)
By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07** | 日程管理助手,调用时间插件,处理新增、查询、删除日程请求,支持多种操作和提醒。
`日程管理` `时间插件` `新增日程` `查询日程` `删除日程` | | [商务邮件撰写专家](https://chat-preview.lobehub.com/market?agent=business-email)
By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06** | 商务邮件撰写专家,擅长中英文商务邮件,跨文化沟通,GitHub 开源社区交流。
`商务邮件撰写` `商业合作` `商务授权` `跨文化沟通` `git-hub和开源社区` | | [Discord 风格文案大师](https://chat-preview.lobehub.com/market?agent=discord-copywriting)
By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06** | Discord 风格文案专家,幽默风趣、用户体验优先,个性化设计软件文案。
`文案生成` `创作` `用户体验` `幽默风趣` `软件系统` | -| [AI 图像提示建筑师](https://chat-preview.lobehub.com/market?agent=9-somboon)
By **[9Somboon](https://github.com/9Somboon)** on **2024-03-05** | 专门为 AI 图像生成创建详细提示。
`stable-diffusion` `ai-image-generation` `prompts` `photography` `creative` `art` | -> 📊 Total agents: [**199** ](https://github.com/lobehub/lobe-chat-agents) +> 📊 Total agents: [**200** ](https://github.com/lobehub/lobe-chat-agents)