@lobehub/chat 1.67.1 → 1.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/.env.example +4 -0
  2. package/CHANGELOG.md +58 -0
  3. package/Dockerfile +2 -0
  4. package/Dockerfile.database +2 -0
  5. package/README.md +3 -2
  6. package/README.zh-CN.md +1 -1
  7. package/changelog/v1.json +21 -0
  8. package/docs/self-hosting/advanced/auth.mdx +6 -5
  9. package/docs/self-hosting/advanced/auth.zh-CN.mdx +6 -5
  10. package/docs/self-hosting/environment-variables/model-provider.mdx +16 -0
  11. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +16 -0
  12. package/docs/usage/providers/ppio.mdx +57 -0
  13. package/docs/usage/providers/ppio.zh-CN.mdx +55 -0
  14. package/locales/ar/models.json +3 -0
  15. package/locales/ar/plugin.json +1 -1
  16. package/locales/bg-BG/models.json +3 -0
  17. package/locales/bg-BG/plugin.json +1 -1
  18. package/locales/de-DE/models.json +3 -0
  19. package/locales/de-DE/plugin.json +1 -1
  20. package/locales/en-US/models.json +3 -0
  21. package/locales/en-US/plugin.json +1 -1
  22. package/locales/en-US/providers.json +3 -0
  23. package/locales/es-ES/models.json +3 -0
  24. package/locales/es-ES/plugin.json +1 -1
  25. package/locales/fa-IR/models.json +3 -0
  26. package/locales/fa-IR/plugin.json +1 -1
  27. package/locales/fr-FR/models.json +3 -0
  28. package/locales/fr-FR/plugin.json +1 -1
  29. package/locales/it-IT/models.json +3 -0
  30. package/locales/it-IT/plugin.json +1 -1
  31. package/locales/ja-JP/models.json +3 -0
  32. package/locales/ja-JP/plugin.json +1 -1
  33. package/locales/ko-KR/models.json +3 -0
  34. package/locales/ko-KR/plugin.json +1 -1
  35. package/locales/nl-NL/models.json +3 -0
  36. package/locales/nl-NL/plugin.json +1 -1
  37. package/locales/pl-PL/models.json +3 -0
  38. package/locales/pl-PL/plugin.json +1 -1
  39. package/locales/pt-BR/models.json +3 -0
  40. package/locales/pt-BR/plugin.json +1 -1
  41. package/locales/ru-RU/models.json +3 -0
  42. package/locales/ru-RU/plugin.json +1 -1
  43. package/locales/tr-TR/models.json +3 -0
  44. package/locales/tr-TR/plugin.json +1 -1
  45. package/locales/vi-VN/models.json +3 -0
  46. package/locales/vi-VN/plugin.json +1 -1
  47. package/locales/zh-CN/models.json +3 -0
  48. package/locales/zh-CN/plugin.json +1 -1
  49. package/locales/zh-CN/providers.json +4 -0
  50. package/locales/zh-TW/models.json +3 -0
  51. package/locales/zh-TW/plugin.json +1 -1
  52. package/package.json +5 -5
  53. package/packages/web-crawler/src/__test__/crawler.test.ts +176 -0
  54. package/packages/web-crawler/src/crawler.ts +12 -6
  55. package/packages/web-crawler/src/type.ts +3 -0
  56. package/packages/web-crawler/src/urlRules.ts +11 -0
  57. package/packages/web-crawler/src/utils/appUrlRules.test.ts +76 -0
  58. package/packages/web-crawler/src/utils/appUrlRules.ts +3 -0
  59. package/src/app/[variants]/(main)/settings/llm/ProviderList/providers.tsx +2 -0
  60. package/src/config/aiModels/index.ts +3 -0
  61. package/src/config/aiModels/ppio.ts +276 -0
  62. package/src/config/llm.ts +6 -0
  63. package/src/config/modelProviders/index.ts +4 -0
  64. package/src/config/modelProviders/ppio.ts +249 -0
  65. package/src/libs/agent-runtime/AgentRuntime.ts +7 -0
  66. package/src/libs/agent-runtime/ppio/__snapshots__/index.test.ts.snap +26 -0
  67. package/src/libs/agent-runtime/ppio/fixtures/models.json +42 -0
  68. package/src/libs/agent-runtime/ppio/index.test.ts +264 -0
  69. package/src/libs/agent-runtime/ppio/index.ts +51 -0
  70. package/src/libs/agent-runtime/ppio/type.ts +12 -0
  71. package/src/libs/agent-runtime/types/type.ts +1 -0
  72. package/src/libs/agent-runtime/utils/anthropicHelpers.ts +2 -2
  73. package/src/locales/default/plugin.ts +1 -1
  74. package/src/server/routers/tools/__test__/search.test.ts +146 -0
  75. package/src/server/routers/tools/search.ts +1 -1
  76. package/src/store/chat/slices/builtinTool/actions/searXNG.test.ts +67 -0
  77. package/src/store/chat/slices/builtinTool/actions/searXNG.ts +2 -1
  78. package/src/store/tool/slices/builtin/selectors.test.ts +12 -0
  79. package/src/store/tool/slices/builtin/selectors.ts +4 -1
  80. package/src/tools/web-browsing/Portal/PageContent/index.tsx +13 -7
  81. package/src/tools/web-browsing/const.ts +2 -0
  82. package/src/types/user/settings/keyVaults.ts +1 -0
package/.env.example CHANGED
@@ -127,6 +127,10 @@ OPENAI_API_KEY=sk-xxxxxxxxx
127
127
 
128
128
  # TENCENT_CLOUD_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
129
129
 
130
+ ### PPIO ####
131
+
132
+ # PPIO_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
133
+
130
134
  ########################################
131
135
  ############ Market Service ############
132
136
  ########################################
package/CHANGELOG.md CHANGED
@@ -2,6 +2,64 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 1.68.0](https://github.com/lobehub/lobe-chat/compare/v1.67.2...v1.68.0)
6
+
7
+ <sup>Released on **2025-03-03**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Add new model provider PPIO.
12
+
13
+ #### 🐛 Bug Fixes
14
+
15
+ - **misc**: Fix search web-browsing display bug.
16
+
17
+ <br/>
18
+
19
+ <details>
20
+ <summary><kbd>Improvements and Fixes</kbd></summary>
21
+
22
+ #### What's improved
23
+
24
+ - **misc**: Add new model provider PPIO, closes [#6133](https://github.com/lobehub/lobe-chat/issues/6133) ([23a3fda](https://github.com/lobehub/lobe-chat/commit/23a3fda))
25
+
26
+ #### What's fixed
27
+
28
+ - **misc**: Fix search web-browsing display bug, closes [#6653](https://github.com/lobehub/lobe-chat/issues/6653) ([f472643](https://github.com/lobehub/lobe-chat/commit/f472643))
29
+
30
+ </details>
31
+
32
+ <div align="right">
33
+
34
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
35
+
36
+ </div>
37
+
38
+ ### [Version 1.67.2](https://github.com/lobehub/lobe-chat/compare/v1.67.1...v1.67.2)
39
+
40
+ <sup>Released on **2025-03-02**</sup>
41
+
42
+ #### 🐛 Bug Fixes
43
+
44
+ - **misc**: Improve some crawl case.
45
+
46
+ <br/>
47
+
48
+ <details>
49
+ <summary><kbd>Improvements and Fixes</kbd></summary>
50
+
51
+ #### What's fixed
52
+
53
+ - **misc**: Improve some crawl case, closes [#6634](https://github.com/lobehub/lobe-chat/issues/6634) ([d38ab02](https://github.com/lobehub/lobe-chat/commit/d38ab02))
54
+
55
+ </details>
56
+
57
+ <div align="right">
58
+
59
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
60
+
61
+ </div>
62
+
5
63
  ### [Version 1.67.1](https://github.com/lobehub/lobe-chat/compare/v1.67.0...v1.67.1)
6
64
 
7
65
  <sup>Released on **2025-03-02**</sup>
package/Dockerfile CHANGED
@@ -197,6 +197,8 @@ ENV \
197
197
  OPENROUTER_API_KEY="" OPENROUTER_MODEL_LIST="" \
198
198
  # Perplexity
199
199
  PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
200
+ # PPIO
201
+ PPIO_API_KEY="" PPIO_MODEL_LIST="" \
200
202
  # Qwen
201
203
  QWEN_API_KEY="" QWEN_MODEL_LIST="" QWEN_PROXY_URL="" \
202
204
  # SambaNova
@@ -240,6 +240,8 @@ ENV \
240
240
  OPENROUTER_API_KEY="" OPENROUTER_MODEL_LIST="" \
241
241
  # Perplexity
242
242
  PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
243
+ # PPIO
244
+ PPIO_API_KEY="" PPIO_MODEL_LIST="" \
243
245
  # Qwen
244
246
  QWEN_API_KEY="" QWEN_MODEL_LIST="" QWEN_PROXY_URL="" \
245
247
  # SambaNova
package/README.md CHANGED
@@ -198,6 +198,7 @@ We have implemented support for the following model service providers:
198
198
 
199
199
  <details><summary><kbd>See more providers (+26)</kbd></summary>
200
200
 
201
+ - **[PPIO](https://lobechat.com/discover/provider/ppio)**: PPIO supports stable and cost-efficient open-source LLM APIs, such as DeepSeek, Llama, Qwen etc. [Learn more](https://ppinfra.com/llm-api?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link)
201
202
  - **[Novita](https://lobechat.com/discover/provider/novita)**: Novita AI is a platform providing a variety of large language models and AI image generation API services, flexible, reliable, and cost-effective. It supports the latest open-source models like Llama3 and Mistral, offering a comprehensive, user-friendly, and auto-scaling API solution for generative AI application development, suitable for the rapid growth of AI startups.
202
203
  - **[Together AI](https://lobechat.com/discover/provider/togetherai)**: Together AI is dedicated to achieving leading performance through innovative AI models, offering extensive customization capabilities, including rapid scaling support and intuitive deployment processes to meet various enterprise needs.
203
204
  - **[Fireworks AI](https://lobechat.com/discover/provider/fireworksai)**: Fireworks AI is a leading provider of advanced language model services, focusing on functional calling and multimodal processing. Its latest model, Firefunction V2, is based on Llama-3, optimized for function calling, conversation, and instruction following. The visual language model FireLLaVA-13B supports mixed input of images and text. Other notable models include the Llama series and Mixtral series, providing efficient multilingual instruction following and generation support.
@@ -668,7 +669,7 @@ If you would like to learn more details, please feel free to look at our [📘 D
668
669
 
669
670
  ## 🤝 Contributing
670
671
 
671
- Contributions of all types are more than welcome; if you are interested in contributing code, feel free to check out our GitHub [Issues][github-issues-link] and [Projects][github-project-link] to get stuck in to show us what youre made of.
672
+ Contributions of all types are more than welcome; if you are interested in contributing code, feel free to check out our GitHub [Issues][github-issues-link] and [Projects][github-project-link] to get stuck in to show us what you're made of.
672
673
 
673
674
  > \[!TIP]
674
675
  >
@@ -889,7 +890,7 @@ This project is [Apache 2.0](./LICENSE) licensed.
889
890
  [profile-link]: https://github.com/lobehub
890
891
  [share-linkedin-link]: https://linkedin.com/feed
891
892
  [share-linkedin-shield]: https://img.shields.io/badge/-share%20on%20linkedin-black?labelColor=black&logo=linkedin&logoColor=white&style=flat-square
892
- [share-mastodon-link]: https://mastodon.social/share?text=Check%20this%20GitHub%20repository%20out%20%F0%9F%A4%AF%20LobeChat%20-%20An%20open-source,%20extensible%20(Function%20Calling),%20high-performance%20chatbot%20framework.%20It%20supports%20one-click%20free%20deployment%20of%20your%20private%20ChatGPT/LLM%20web%20application.%20https://github.com/lobehub/lobe-chat%20#chatbot%20#chatGPT%20#openAI
893
+ [share-mastodon-link]: https://mastodon.social/share?text=Check%20this%20GitHub%20repository%20out%20%F0%9F%A4%AF%20LobeChat%20-%20An%20open-source,%20extensible%20%28Function%20Calling%29,%20high-performance%20chatbot%20framework.%20It%20supports%20one-click%20free%20deployment%20of%20your%20private%20ChatGPT%2FLLM%20web%20application.%20https://github.com/lobehub/lobe-chat%20#chatbot%20#chatGPT%20#openAI
893
894
  [share-mastodon-shield]: https://img.shields.io/badge/-share%20on%20mastodon-black?labelColor=black&logo=mastodon&logoColor=white&style=flat-square
894
895
  [share-reddit-link]: https://www.reddit.com/submit?title=Check%20this%20GitHub%20repository%20out%20%F0%9F%A4%AF%20LobeChat%20-%20An%20open-source%2C%20extensible%20%28Function%20Calling%29%2C%20high-performance%20chatbot%20framework.%20It%20supports%20one-click%20free%20deployment%20of%20your%20private%20ChatGPT%2FLLM%20web%20application.%20%23chatbot%20%23chatGPT%20%23openAI&url=https%3A%2F%2Fgithub.com%2Flobehub%2Flobe-chat
895
896
  [share-reddit-shield]: https://img.shields.io/badge/-share%20on%20reddit-black?labelColor=black&logo=reddit&logoColor=white&style=flat-square
package/README.zh-CN.md CHANGED
@@ -197,7 +197,7 @@ LobeChat 支持文件上传与知识库功能,你可以上传文件、图片
197
197
  - **[GitHub](https://lobechat.com/discover/provider/github)**: 通过 GitHub 模型,开发人员可以成为 AI 工程师,并使用行业领先的 AI 模型进行构建。
198
198
 
199
199
  <details><summary><kbd>See more providers (+26)</kbd></summary>
200
-
200
+ - **[PPIO](https://lobechat.com/discover/provider/ppio)**: PPIO 派欧云提供稳定、高性价比的开源模型 API 服务,支持 DeepSeek 全系列、Llama、Qwen 等行业领先大模型。[了解更多](https://ppinfra.com/llm-api?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link)
201
201
  - **[Novita](https://lobechat.com/discover/provider/novita)**: Novita AI 是一个提供多种大语言模型与 AI 图像生成的 API 服务的平台,灵活、可靠且具有成本效益。它支持 Llama3、Mistral 等最新的开源模型,并为生成式 AI 应用开发提供了全面、用户友好且自动扩展的 API 解决方案,适合 AI 初创公司的快速发展。
202
202
  - **[Together AI](https://lobechat.com/discover/provider/togetherai)**: Together AI 致力于通过创新的 AI 模型实现领先的性能,提供广泛的自定义能力,包括快速扩展支持和直观的部署流程,满足企业的各种需求。
203
203
  - **[Fireworks AI](https://lobechat.com/discover/provider/fireworksai)**: Fireworks AI 是一家领先的高级语言模型服务商,专注于功能调用和多模态处理。其最新模型 Firefunction V2 基于 Llama-3,优化用于函数调用、对话及指令跟随。视觉语言模型 FireLLaVA-13B 支持图像和文本混合输入。其他 notable 模型包括 Llama 系列和 Mixtral 系列,提供高效的多语言指令跟随与生成支持。
package/changelog/v1.json CHANGED
@@ -1,4 +1,25 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "features": [
5
+ "Add new model provider PPIO."
6
+ ],
7
+ "fixes": [
8
+ "Fix search web-browsing display bug."
9
+ ]
10
+ },
11
+ "date": "2025-03-03",
12
+ "version": "1.68.0"
13
+ },
14
+ {
15
+ "children": {
16
+ "fixes": [
17
+ "Improve some crawl case."
18
+ ]
19
+ },
20
+ "date": "2025-03-02",
21
+ "version": "1.67.2"
22
+ },
2
23
  {
3
24
  "children": {},
4
25
  "date": "2025-03-02",
@@ -27,11 +27,12 @@ By setting the environment variables `NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY` and `CL
27
27
 
28
28
  Before using NextAuth, please set the following variables in LobeChat's environment variables:
29
29
 
30
- | Environment Variable | Type | Description |
31
- | ------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
32
- | `NEXT_AUTH_SECRET` | Required | The key used to encrypt Auth.js session tokens. You can use the following command: `openssl rand -base64 32`, or visit `https://generate-secret.vercel.app/32` to generate the key. |
33
- | `NEXTAUTH_URL` | Required | This URL specifies the callback address for Auth.js when performing OAuth verification. Set this only if the default generated redirect address is incorrect. `https://example.com/api/auth` |
34
- | `NEXT_AUTH_SSO_PROVIDERS` | Optional | This environment variable is used to enable multiple identity verification sources simultaneously, separated by commas, for example, `auth0,microsoft-entra-id,authentik`. |
30
+ | Environment Variable | Type | Description |
31
+ | ------------------------------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
32
+ | `NEXT_PUBLIC_ENABLE_NEXT_AUTH` | Required | This is used to enable the NextAuth service. Set it to `1` to enable it; changing this setting requires recompiling the application. Users deploying with the `lobehub/lobe-chat-database` image have this configuration added by default. |
33
+ | `NEXT_AUTH_SECRET` | Required | The key used to encrypt Auth.js session tokens. You can use the following command: `openssl rand -base64 32`, or visit `https://generate-secret.vercel.app/32` to generate the key. |
34
+ | `NEXTAUTH_URL` | Required | This URL specifies the callback address for Auth.js when performing OAuth verification. Set this only if the default generated redirect address is incorrect. `https://example.com/api/auth` |
35
+ | `NEXT_AUTH_SSO_PROVIDERS` | Optional | This environment variable is used to enable multiple identity verification sources simultaneously, separated by commas, for example, `auth0,microsoft-entra-id,authentik`. |
35
36
 
36
37
  Currently supported identity verification services include:
37
38
 
@@ -24,11 +24,12 @@ LobeChat 与 Clerk 做了深度集成,能够为用户提供一个更加安全
24
24
 
25
25
  在使用 NextAuth 之前,请先在 LobeChat 的环境变量中设置以下变量:
26
26
 
27
- | 环境变量 | 类型 | 描述 |
28
- | ------------------------- | -- | ------------------------------------------------------------------------------------------------------------ |
29
- | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令: `openssl rand -base64 32`,或者访问 `https://generate-secret.vercel.app/32` 生成秘钥。 |
30
- | `NEXTAUTH_URL` | 必选 | URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
31
- | `NEXT_AUTH_SSO_PROVIDERS` | 可选 | 该环境变量用于同时启用多个身份验证源,以逗号 `,` 分割,例如 `auth0,microsoft-entra-id,authentik`。 |
27
+ | 环境变量 | 类型 | 描述 |
28
+ | ------------------------------ | -- | ------------------------------------------------------------------------------------------------------------ |
29
+ | `NEXT_PUBLIC_ENABLE_NEXT_AUTH` | 必选 | 用于启用 NextAuth 服务,设置为 `1` 以启用,更改此项需要重新编译应用。使用 `lobehub/lobe-chat-database` 镜像部署的用户已经默认添加了该项配置。 |
30
+ | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令: `openssl rand -base64 32`,或者访问 `https://generate-secret.vercel.app/32` 生成秘钥。 |
31
+ | `NEXTAUTH_URL` | 必选 | URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
32
+ | `NEXT_AUTH_SSO_PROVIDERS` | 可选 | 该环境变量用于同时启用多个身份验证源,以逗号 `,` 分割,例如 `auth0,microsoft-entra-id,authentik`。 |
32
33
 
33
34
  目前支持的身份验证服务有:
34
35
 
@@ -217,6 +217,22 @@ If you need to use Azure OpenAI to provide model services, you can refer to the
217
217
  - Default: `-`
218
218
  - Example: `-all,+01-ai/yi-34b-chat,+huggingfaceh4/zephyr-7b-beta`
219
219
 
220
+ ## PPIO
221
+
222
+ ### `PPIO_API_KEY`
223
+
224
+ - Type: Required
225
+ - Description: This your PPIO API Key.
226
+ - Default: -
227
+ - Example: `sk_xxxxxxxxxx`
228
+
229
+ ### `PPIO_MODEL_LIST`
230
+
231
+ - Type: Optional
232
+ - Description: Used to control the model list, use `+` to add a model, use `-` to hide a model, use `model_name=display_name` to customize the display name of a model, separated by commas. Definition syntax rules see [model-list][model-list]
233
+ - Default: `-`
234
+ - Example: `-all,+deepseek/deepseek-v3/community,+deepseek/deepseek-r1-distill-llama-70b`
235
+
220
236
  ## Github
221
237
 
222
238
  ### `GITHUB_TOKEN`
@@ -215,6 +215,22 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
215
215
  - 默认值:`-`
216
216
  - 示例:`-all,+01-ai/yi-34b-chat,+huggingfaceh4/zephyr-7b-beta`
217
217
 
218
+ ## PPIO
219
+
220
+ ### `PPIO_API_KEY`
221
+
222
+ - 类型:必选
223
+ - 描述:这是你在 PPIO 网站申请的 API 密钥
224
+ - 默认值:-
225
+ - 示例:`sk_xxxxxxxxxxxx`
226
+
227
+ ### `PPIO_MODEL_LIST`
228
+
229
+ - 类型:可选
230
+ - 描述:用来控制模型列表,使用 `+` 增加一个模型,使用 `-` 来隐藏一个模型,使用 `模型名=展示名<扩展配置>` 来自定义模型的展示名,用英文逗号隔开。模型定义语法规则见 [模型列表][model-list]
231
+ - 默认值:`-`
232
+ - 示例:`-all,+deepseek/deepseek-v3/community,+deepseek/deepseek-r1-distill-llama-70b`
233
+
218
234
  ## Github
219
235
 
220
236
  ### `GITHUB_TOKEN`
@@ -0,0 +1,57 @@
1
+ ---
2
+ title: Using PPIO API Key in LobeChat
3
+ description: >-
4
+ Learn how to integrate PPIO's language model APIs into LobeChat. Follow
5
+ the steps to register, create an PPIO API key, configure settings, and
6
+ chat with our various AI models.
7
+ tags:
8
+ - PPIO
9
+ - DeepSeek
10
+ - Llama
11
+ - Qwen
12
+ - uncensored
13
+ - API key
14
+ - Web UI
15
+ ---
16
+
17
+ # Using PPIO in LobeChat
18
+
19
+ <Image alt={'Using PPIO in LobeChat'} cover src={''} />
20
+
21
+ [PPIO](https://ppinfra.com?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link) supports stable and cost-efficient open-source LLM APIs, such as DeepSeek, Llama, Qwen etc.
22
+
23
+ This document will guide you on how to integrate PPIO in LobeChat:
24
+
25
+ <Steps>
26
+ ### Step 1: Register and Log in to PPIO
27
+
28
+ - Visit [PPIO](https://ppinfra.com?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link) and create an account
29
+ - Upon registration, PPIO will provide a ¥5 credit (about 5M tokens).
30
+
31
+ <Image alt={'Register PPIO'} height={457} inStep src={'https://github.com/user-attachments/assets/7cb3019b-78c1-48e0-a64c-a6a4836affd9'} />
32
+
33
+ ### Step 2: Obtain the API Key
34
+
35
+ - Visit PPIO's [key management page](https://ppinfra.com/settings/key-management), create and copy an API Key.
36
+
37
+ <Image alt={'Obtain PPIO API key'} inStep src={'https://github.com/user-attachments/assets/5abcf21d-5a6c-4fc8-8de6-bc47d4d2fa98'} />
38
+
39
+ ### Step 3: Configure PPIO in LobeChat
40
+
41
+ - Visit the `Settings` interface in LobeChat
42
+ - Find the setting for `PPIO` under `Language Model`
43
+
44
+ <Image alt={'Enter PPIO API key in LobeChat'} inStep src={'https://github.com/user-attachments/assets/000d6a5b-f8d4-4fd5-84cd-31556c5c1efd'} />
45
+
46
+ - Open PPIO and enter the obtained API key
47
+ - Choose a PPIO model for your assistant to start the conversation
48
+
49
+ <Image alt={'Select and use PPIO model'} inStep src={'https://github.com/user-attachments/assets/207888f1-df21-4063-8e66-97b0d9cfa02e'} />
50
+
51
+ <Callout type={'warning'}>
52
+ During usage, you may need to pay the API service provider, please refer to PPIO's [pricing
53
+ policy](https://ppinfra.com/llm-api?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link).
54
+ </Callout>
55
+ </Steps>
56
+
57
+ You can now engage in conversations using the models provided by PPIO in LobeChat.
@@ -0,0 +1,55 @@
1
+ ---
2
+ title: 在 LobeChat 中使用 PPIO 派欧云 API Key
3
+ description: >-
4
+ 学习如何将 PPIO 派欧云的 LLM API 集成到 LobeChat 中。跟随以下步骤注册 PPIO 账号、创建 API
5
+ Key、并在 LobeChat 中进行设置。
6
+ tags:
7
+ - PPIO
8
+ - PPInfra
9
+ - DeepSeek
10
+ - Qwen
11
+ - Llama3
12
+ - API key
13
+ - Web UI
14
+ ---
15
+
16
+ # 在 LobeChat 中使用 PPIO 派欧云
17
+
18
+ <Image alt={'在 LobeChat 中使用 PPIO'} cover src={''} />
19
+
20
+ [PPIO 派欧云](https://ppinfra.com?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link)提供稳定、高性价比的开源模型 API 服务,支持 DeepSeek 全系列、Llama、Qwen 等行业领先大模型。
21
+
22
+ 本文档将指导你如何在 LobeChat 中使用 PPIO:
23
+
24
+ <Steps>
25
+ ### 步骤一:注册 PPIO 派欧云账号并登录
26
+
27
+ - 访问 [PPIO 派欧云](https://ppinfra.com?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link) 并注册账号
28
+ - 注册后,PPIO 会赠送 5 元(约 500 万 tokens)的使用额度
29
+
30
+ <Image alt={'注册 PPIO'} height={457} inStep src={'https://github.com/user-attachments/assets/7cb3019b-78c1-48e0-a64c-a6a4836affd9'} />
31
+
32
+ ### 步骤二:创建 API 密钥
33
+
34
+ - 访问 PPIO 派欧云的 [密钥管理页面](https://ppinfra.com/settings/key-management) ,创建并且复制一个 API 密钥.
35
+
36
+ <Image alt={'创建 PPIO API 密钥'} inStep src={'https://github.com/user-attachments/assets/5abcf21d-5a6c-4fc8-8de6-bc47d4d2fa98'} />
37
+
38
+ ### 步骤三:在 LobeChat 中配置 PPIO 派欧云
39
+
40
+ - 访问 LobeChat 的 `设置` 界面
41
+ - 在 `语言模型` 下找到 `PPIO` 的设置项
42
+ - 打开 PPIO 并填入获得的 API 密钥
43
+
44
+ <Image alt={'在 LobeChat 中输入 PPIO API 密钥'} inStep src={'https://github.com/user-attachments/assets/4eaadac7-595c-41ad-a6e0-64c3105577d7'} />
45
+
46
+ - 为你的助手选择一个 Novita AI 模型即可开始对话
47
+
48
+ <Image alt={'选择并使用 PPIO 模型'} inStep src={'https://github.com/user-attachments/assets/8cf66e00-04fe-4bad-9e3d-35afc7d9aa58'} />
49
+
50
+ <Callout type={'warning'}>
51
+ 在使用过程中你可能需要向 API 服务提供商付费,PPIO 的 API 费用参考[这里](https://ppinfra.com/llm-api?utm_source=github_lobe-chat&utm_medium=github_readme&utm_campaign=link)。
52
+ </Callout>
53
+ </Steps>
54
+
55
+ 至此你已经可以在 LobeChat 中使用 Novita AI 提供的模型进行对话了。
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "نموذج GPT-4 Turbo الأحدث يتمتع بقدرات بصرية. الآن، يمكن استخدام الطلبات البصرية باستخدام نمط JSON واستدعاء الوظائف. GPT-4 Turbo هو إصدار معزز يوفر دعمًا فعالًا من حيث التكلفة للمهام متعددة الوسائط. يجد توازنًا بين الدقة والكفاءة، مما يجعله مناسبًا للتطبيقات التي تتطلب تفاعلات في الوقت الحقيقي."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "نسخة المعاينة البحثية لـ GPT-4.5، وهي أكبر وأقوى نموذج GPT لدينا حتى الآن. تتمتع بمعرفة واسعة عن العالم وتفهم أفضل لنوايا المستخدم، مما يجعلها بارعة في المهام الإبداعية والتخطيط الذاتي. يمكن لـ GPT-4.5 قبول المدخلات النصية والصورية وتوليد مخرجات نصية (بما في ذلك المخرجات الهيكلية). تدعم ميزات المطورين الأساسية مثل استدعاء الدوال، وواجهة برمجة التطبيقات الجماعية، والمخرجات المتدفقة. تتألق GPT-4.5 بشكل خاص في المهام التي تتطلب التفكير الإبداعي، والتفكير المفتوح، والحوار (مثل الكتابة، والتعلم، أو استكشاف أفكار جديدة). تاريخ انتهاء المعرفة هو أكتوبر 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o هو نموذج ديناميكي يتم تحديثه في الوقت الحقيقي للحفاظ على أحدث إصدار. يجمع بين فهم اللغة القوي وقدرات التوليد، مما يجعله مناسبًا لمجموعة واسعة من التطبيقات، بما في ذلك خدمة العملاء والتعليم والدعم الفني."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "معاينة",
147
147
  "raw": "النص الأصلي",
148
- "tooLong": "محتوى النص طويل جداً، سيتم الاحتفاظ بـ 10000 حرف فقط من سياق المحادثة، ولن يتم احتساب الأجزاء الزائدة في سياق المحادثة"
148
+ "tooLong": "محتوى النص طويل جدًا، سيتم الاحتفاظ بالسياق السابق فقط بأول {{characters}} حرف، ولن يتم احتساب الأجزاء الزائدة في سياق المحادثة"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "وضع الزحف",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "Най-новият модел GPT-4 Turbo разполага с визуални функции. Сега визуалните заявки могат да се използват с JSON формат и извиквания на функции. GPT-4 Turbo е подобрена версия, която предлага икономически ефективна поддръжка за мултимодални задачи. Той намира баланс между точност и ефективност, подходящ за приложения, изискващи взаимодействие в реално време."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "Изследователската предварителна версия на GPT-4.5, която е нашият най-голям и мощен GPT модел до момента. Тя притежава обширни знания за света и може по-добре да разбира намеренията на потребителите, което я прави изключително ефективна в креативни задачи и автономно планиране. GPT-4.5 приема текстови и изображен вход и генерира текстови изход (включително структурирани изходи). Поддържа ключови функции за разработчици, като извикване на функции, пакетно API и потоков изход. В задачи, изискващи креативно, открито мислене и диалог (като писане, учене или изследване на нови идеи), GPT-4.5 показва особени способности. Крайната дата на знанията е октомври 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o е динамичен модел, който се актуализира в реално време, за да поддържа най-новата версия. Той комбинира мощно разбиране на езика и генериране на текст, подходящ за мащабни приложения, включително обслужване на клиенти, образование и техническа поддръжка."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Преглед",
147
147
  "raw": "Оригинален текст",
148
- "tooLong": "Съдържанието на текста е твърде дълго, контекстът на разговора запазва само първите 10000 символа, а останалата част не се включва в контекста на разговора"
148
+ "tooLong": "Текстът е твърде дълъг, контекстът на разговора ще запази само първите {{characters}} символа, а останалата част няма да бъде включена в контекста на разговора"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Режим на улавяне",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "Das neueste GPT-4 Turbo-Modell verfügt über visuelle Funktionen. Jetzt können visuelle Anfragen im JSON-Format und durch Funktionsaufrufe gestellt werden. GPT-4 Turbo ist eine verbesserte Version, die kosteneffiziente Unterstützung für multimodale Aufgaben bietet. Es findet ein Gleichgewicht zwischen Genauigkeit und Effizienz und eignet sich für Anwendungen, die Echtzeitanpassungen erfordern."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "Die Forschungs-Vorschau von GPT-4.5, unserem bisher größten und leistungsstärksten GPT-Modell. Es verfügt über umfangreiches Weltwissen und kann die Absichten der Benutzer besser verstehen, was es in kreativen Aufgaben und autonomer Planung herausragend macht. GPT-4.5 akzeptiert Text- und Bild-Eingaben und generiert Textausgaben (einschließlich strukturierter Ausgaben). Es unterstützt wichtige Entwicklerfunktionen wie Funktionsaufrufe, Batch-APIs und Streaming-Ausgaben. In Aufgaben, die kreatives, offenes Denken und Dialog erfordern (wie Schreiben, Lernen oder das Erkunden neuer Ideen), zeigt GPT-4.5 besonders gute Leistungen. Der Wissensstand ist bis Oktober 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o ist ein dynamisches Modell, das in Echtzeit aktualisiert wird, um die neueste Version zu gewährleisten. Es kombiniert starke Sprachverständnis- und Generierungsfähigkeiten und eignet sich für großangelegte Anwendungsszenarien, einschließlich Kundenservice, Bildung und technische Unterstützung."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Vorschau",
147
147
  "raw": "Ursprünglicher Text",
148
- "tooLong": "Der Textinhalt ist zu lang, der Gesprächskontext behält nur die ersten 10000 Zeichen, der übersteigende Teil wird nicht in den Gesprächskontext einbezogen"
148
+ "tooLong": "Der Textinhalt ist zu lang, der Kontext des Gesprächs behält nur die ersten {{characters}} Zeichen bei, der übersteigende Teil wird nicht in den Gesprächskontext einbezogen."
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Crawler-Modus",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "The latest GPT-4 Turbo model features visual capabilities. Now, visual requests can be made using JSON format and function calls. GPT-4 Turbo is an enhanced version that provides cost-effective support for multimodal tasks. It strikes a balance between accuracy and efficiency, making it suitable for applications requiring real-time interaction."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "The research preview of GPT-4.5, our largest and most powerful GPT model to date. It possesses extensive world knowledge and better understands user intent, excelling in creative tasks and autonomous planning. GPT-4.5 accepts both text and image inputs and generates text outputs (including structured outputs). It supports key developer features such as function calling, batch API, and streaming output. GPT-4.5 particularly shines in tasks that require creativity, open-ended thinking, and dialogue, such as writing, learning, or exploring new ideas. Knowledge cutoff date is October 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o is a dynamic model that updates in real-time to stay current with the latest version. It combines powerful language understanding and generation capabilities, making it suitable for large-scale applications, including customer service, education, and technical support."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Preview",
147
147
  "raw": "Raw text",
148
- "tooLong": "Text content is too long; only the first 10000 characters of the conversation context will be retained, and any excess will not be included in the conversation context."
148
+ "tooLong": "The text content is too long; only the first {{characters}} characters of the conversation context will be retained, and the excess will not be included in the conversation context."
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Crawling Mode",
@@ -139,5 +139,8 @@
139
139
  },
140
140
  "zhipu": {
141
141
  "description": "Zhipu AI offers an open platform for multimodal and language models, supporting a wide range of AI application scenarios, including text processing, image understanding, and programming assistance."
142
+ },
143
+ "ppio": {
144
+ "description": "PPIO supports stable and cost-efficient open-source LLM APIs, such as DeepSeek, Llama, Qwen etc."
142
145
  }
143
146
  }
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "El último modelo GPT-4 Turbo cuenta con funciones visuales. Ahora, las solicitudes visuales pueden utilizar el modo JSON y llamadas a funciones. GPT-4 Turbo es una versión mejorada que ofrece soporte rentable para tareas multimodales. Encuentra un equilibrio entre precisión y eficiencia, adecuado para aplicaciones que requieren interacción en tiempo real."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "Versión de investigación de GPT-4.5, que es nuestro modelo GPT más grande y potente hasta la fecha. Posee un amplio conocimiento del mundo y puede comprender mejor la intención del usuario, lo que lo hace destacar en tareas creativas y planificación autónoma. GPT-4.5 acepta entradas de texto e imagen y genera salidas de texto (incluidas salidas estructuradas). Soporta funciones clave para desarrolladores, como llamadas a funciones, API por lotes y salida en streaming. En tareas que requieren pensamiento creativo, abierto y diálogo (como escritura, aprendizaje o exploración de nuevas ideas), GPT-4.5 brilla especialmente. La fecha límite de conocimiento es octubre de 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o es un modelo dinámico que se actualiza en tiempo real para mantener la versión más actual. Combina una poderosa comprensión y generación de lenguaje, adecuado para aplicaciones a gran escala, incluyendo servicio al cliente, educación y soporte técnico."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Vista previa",
147
147
  "raw": "Texto original",
148
- "tooLong": "El contenido del texto es demasiado largo, el contexto de la conversación solo retiene los primeros 10000 caracteres, el exceso no se contabiliza en el contexto de la conversación"
148
+ "tooLong": "El contenido del texto es demasiado largo, el contexto de la conversación solo retiene los primeros {{characters}} caracteres, el resto no se incluye en el contexto de la conversación"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Modo de rastreo",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "جدیدترین مدل GPT-4 Turbo دارای قابلیت‌های بصری است. اکنون درخواست‌های بصری می‌توانند از حالت JSON و فراخوانی توابع استفاده کنند. GPT-4 Turbo نسخه‌ای پیشرفته است که پشتیبانی مقرون‌به‌صرفه‌ای برای وظایف چندوجهی ارائه می‌دهد. این مدل بین دقت و کارایی تعادل برقرار می‌کند و برای سناریوهای کاربردی که نیاز به تعاملات بلادرنگ دارند، مناسب است."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "نسخه پیش‌نمایش تحقیقاتی GPT-4.5، بزرگ‌ترین و قدرتمندترین مدل GPT ما تا به امروز است. این مدل دارای دانش وسیع جهانی است و می‌تواند بهتر از قبل نیت‌های کاربران را درک کند، که باعث می‌شود در وظایف خلاقانه و برنامه‌ریزی مستقل عملکرد فوق‌العاده‌ای داشته باشد. GPT-4.5 قادر به پذیرش ورودی‌های متنی و تصویری است و خروجی‌های متنی (شامل خروجی‌های ساختاریافته) تولید می‌کند. از ویژگی‌های کلیدی توسعه‌دهندگان مانند فراخوانی توابع، API دسته‌ای و خروجی جریانی پشتیبانی می‌کند. در وظایفی که نیاز به تفکر خلاق، تفکر باز و گفتگو دارند (مانند نوشتن، یادگیری یا کاوش ایده‌های جدید)، GPT-4.5 به‌ویژه عملکرد خوبی دارد. تاریخ قطع دانش در اکتبر 2023 است."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "پیشرفته‌ترین مدل چندوجهی در سری GPT-4 OpenAI که می‌تواند ورودی‌های متنی و تصویری را پردازش کند."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "پیش‌نمایش",
147
147
  "raw": "متن اصلی",
148
- "tooLong": "محتوای متن بسیار طولانی است، متن مکالمه تنها شامل 10000 کاراکتر اول می‌شود و بخش‌های اضافی در متن مکالمه محاسبه نمی‌شود"
148
+ "tooLong": "متن بسیار طولانی است، فقط {{characters}} کاراکتر اول در زمینه گفتگو حفظ می‌شود و بخش‌های اضافی در زمینه گفتگو محاسبه نمی‌شوند"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "مدل خزنده",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "Le dernier modèle GPT-4 Turbo dispose de fonctionnalités visuelles. Désormais, les requêtes visuelles peuvent être effectuées en utilisant le mode JSON et les appels de fonction. GPT-4 Turbo est une version améliorée, offrant un soutien rentable pour les tâches multimodales. Il trouve un équilibre entre précision et efficacité, adapté aux applications nécessitant des interactions en temps réel."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "La version de recherche préliminaire de GPT-4.5, qui est notre modèle GPT le plus grand et le plus puissant à ce jour. Il possède une vaste connaissance du monde et comprend mieux les intentions des utilisateurs, ce qui le rend exceptionnel dans les tâches créatives et la planification autonome. GPT-4.5 accepte les entrées textuelles et visuelles et génère des sorties textuelles (y compris des sorties structurées). Il prend en charge des fonctionnalités clés pour les développeurs, telles que les appels de fonctions, l'API par lots et les sorties en continu. GPT-4.5 excelle particulièrement dans les tâches nécessitant créativité, pensée ouverte et dialogue (comme l'écriture, l'apprentissage ou l'exploration de nouvelles idées). La date limite des connaissances est fixée à octobre 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o est un modèle dynamique, mis à jour en temps réel pour rester à jour avec la dernière version. Il combine une compréhension et une génération de langage puissantes, adapté à des scénarios d'application à grande échelle, y compris le service client, l'éducation et le support technique."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Aperçu",
147
147
  "raw": "Texte brut",
148
- "tooLong": "Le contenu du texte est trop long, le contexte de la conversation ne conserve que les 10000 premiers caractères, la partie excédentaire n'est pas prise en compte dans le contexte de la conversation"
148
+ "tooLong": "Le contenu du texte est trop long, le contexte de la conversation ne conserve que les {{characters}} premiers caractères, la partie excédentaire n'est pas prise en compte dans le contexte de la conversation"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Mode de collecte",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "L'ultimo modello GPT-4 Turbo ha funzionalità visive. Ora, le richieste visive possono essere effettuate utilizzando il formato JSON e le chiamate di funzione. GPT-4 Turbo è una versione potenziata che offre supporto economico per compiti multimodali. Trova un equilibrio tra accuratezza ed efficienza, adatta a scenari di applicazione che richiedono interazioni in tempo reale."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "Anteprima di ricerca di GPT-4.5, il nostro modello GPT più grande e potente fino ad oggi. Possiede una vasta conoscenza del mondo e comprende meglio le intenzioni degli utenti, eccellendo in compiti creativi e nella pianificazione autonoma. GPT-4.5 accetta input testuali e visivi e genera output testuali (inclusi output strutturati). Supporta funzionalità chiave per gli sviluppatori, come chiamate di funzione, API in batch e output in streaming. GPT-4.5 si distingue particolarmente in compiti che richiedono pensiero creativo, aperto e dialogo (come scrittura, apprendimento o esplorazione di nuove idee). La data di scadenza delle conoscenze è ottobre 2023."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o è un modello dinamico, aggiornato in tempo reale per mantenere la versione più recente. Combina una potente comprensione e generazione del linguaggio, adatta a scenari di applicazione su larga scala, inclusi servizi clienti, educazione e supporto tecnico."
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "Anteprima",
147
147
  "raw": "Testo originale",
148
- "tooLong": "Il contenuto del testo è troppo lungo, il contesto della conversazione conserva solo i primi 10000 caratteri, la parte eccedente non viene considerata nel contesto della conversazione"
148
+ "tooLong": "Il contenuto del testo è troppo lungo, il contesto della conversazione manterrà solo i primi {{characters}} caratteri, la parte in eccesso non verrà considerata nel contesto della conversazione"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "Modalità di scansione",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "最新のGPT-4 Turboモデルは視覚機能を備えています。現在、視覚リクエストはJSON形式と関数呼び出しを使用して行うことができます。GPT-4 Turboは、マルチモーダルタスクに対してコスト効率の高いサポートを提供する強化版です。正確性と効率のバランスを取り、リアルタイムのインタラクションが必要なアプリケーションシナリオに適しています。"
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "GPT-4.5の研究プレビュー版で、これまでで最大かつ最強のGPTモデルです。広範な世界知識を持ち、ユーザーの意図をよりよく理解することができるため、創造的なタスクや自律的な計画において優れたパフォーマンスを発揮します。GPT-4.5はテキストと画像の入力を受け付け、テキスト出力(構造化出力を含む)を生成します。関数呼び出し、バッチAPI、ストリーミング出力など、重要な開発者機能をサポートしています。創造的でオープンな思考や対話が求められるタスク(執筆、学習、新しいアイデアの探求など)において、GPT-4.5は特に優れた性能を発揮します。知識のカットオフ日は2023年10月です。"
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4oは、リアルタイムで更新される動的モデルで、常に最新のバージョンを維持します。強力な言語理解と生成能力を組み合わせており、顧客サービス、教育、技術サポートなどの大規模なアプリケーションシナリオに適しています。"
958
961
  },
@@ -145,7 +145,7 @@
145
145
  "detail": {
146
146
  "preview": "プレビュー",
147
147
  "raw": "原文",
148
- "tooLong": "テキストが長すぎます。会話のコンテキストには最初の10000文字のみが保持され、それを超える部分はカウントされません。"
148
+ "tooLong": "テキストが長すぎます。会話のコンテキストには最初の {{characters}} 文字のみが保持され、それを超える部分は会話のコンテキストには含まれません"
149
149
  },
150
150
  "meta": {
151
151
  "crawler": "クローリングモード",
@@ -953,6 +953,9 @@
953
953
  "gpt-4-vision-preview": {
954
954
  "description": "최신 GPT-4 Turbo 모델은 시각적 기능을 갖추고 있습니다. 이제 시각적 요청은 JSON 형식과 함수 호출을 사용하여 처리할 수 있습니다. GPT-4 Turbo는 다중 모드 작업을 위한 비용 효율적인 지원을 제공하는 향상된 버전입니다. 정확성과 효율성 간의 균형을 찾아 실시간 상호작용이 필요한 응용 프로그램에 적합합니다."
955
955
  },
956
+ "gpt-4.5-preview": {
957
+ "description": "GPT-4.5 연구 미리보기 버전으로, 지금까지 우리가 만든 가장 크고 강력한 GPT 모델입니다. 광범위한 세계 지식을 보유하고 있으며 사용자 의도를 더 잘 이해하여 창의적인 작업과 자율 계획에서 뛰어난 성능을 발휘합니다. GPT-4.5는 텍스트와 이미지 입력을 수용하고 텍스트 출력을 생성합니다(구조화된 출력 포함). 함수 호출, 배치 API 및 스트리밍 출력을 포함한 주요 개발자 기능을 지원합니다. 창의적이고 개방적인 사고 및 대화가 필요한 작업(예: 글쓰기, 학습 또는 새로운 아이디어 탐색)에서 특히 뛰어난 성능을 보입니다. 지식 기준일은 2023년 10월입니다."
958
+ },
956
959
  "gpt-4o": {
957
960
  "description": "ChatGPT-4o는 동적 모델로, 최신 버전을 유지하기 위해 실시간으로 업데이트됩니다. 강력한 언어 이해 및 생성 능력을 결합하여 고객 서비스, 교육 및 기술 지원을 포함한 대규모 응용 프로그램에 적합합니다."
958
961
  },