@lobehub/lobehub 2.0.0-next.3 → 2.0.0-next.5
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.
- package/CHANGELOG.md +58 -0
- package/changelog/v1.json +18 -0
- package/docs/development/database-schema.dbml +11 -1
- package/docs/self-hosting/advanced/online-search.mdx +30 -25
- package/docs/self-hosting/advanced/online-search.zh-CN.mdx +25 -23
- package/locales/ar/models.json +9 -0
- package/locales/bg-BG/models.json +9 -0
- package/locales/de-DE/models.json +9 -0
- package/locales/en-US/models.json +9 -0
- package/locales/es-ES/models.json +9 -0
- package/locales/fa-IR/models.json +9 -0
- package/locales/fr-FR/models.json +9 -0
- package/locales/it-IT/models.json +9 -0
- package/locales/ja-JP/models.json +9 -0
- package/locales/ko-KR/models.json +9 -0
- package/locales/nl-NL/models.json +9 -0
- package/locales/pl-PL/models.json +9 -0
- package/locales/pt-BR/models.json +9 -0
- package/locales/ru-RU/models.json +9 -0
- package/locales/tr-TR/models.json +9 -0
- package/locales/vi-VN/models.json +9 -0
- package/locales/zh-CN/models.json +9 -0
- package/locales/zh-TW/models.json +9 -0
- package/package.json +1 -1
- package/packages/database/migrations/0041_improve_index.sql +10 -0
- package/packages/database/migrations/meta/0041_snapshot.json +7784 -0
- package/packages/database/migrations/meta/_journal.json +7 -0
- package/packages/database/src/core/migrations.json +17 -0
- package/packages/database/src/models/session.ts +60 -19
- package/packages/database/src/schemas/agent.ts +10 -11
- package/packages/database/src/schemas/message.ts +5 -1
- package/packages/database/src/schemas/relations.ts +6 -4
- package/packages/database/src/schemas/session.ts +2 -0
- package/packages/database/src/schemas/topic.ts +6 -1
- package/packages/model-bank/src/aiModels/anthropic.ts +0 -63
- package/packages/model-bank/src/aiModels/higress.ts +0 -55
- package/packages/model-bank/src/aiModels/infiniai.ts +21 -0
- package/packages/model-bank/src/aiModels/ollamacloud.ts +13 -0
- package/packages/model-bank/src/aiModels/siliconcloud.ts +19 -0
- package/packages/model-runtime/src/core/streams/openai/__snapshots__/responsesStream.test.ts.snap +0 -38
- package/packages/model-runtime/src/providers/minimax/index.ts +5 -5
- package/packages/model-runtime/src/providers/search1api/index.test.ts +2 -2
- package/packages/web-crawler/src/crawImpl/firecrawl.ts +39 -12
- package/scripts/migrateServerDB/index.ts +2 -1
- package/src/config/modelProviders/anthropic.ts +0 -23
- package/src/config/modelProviders/higress.ts +0 -23
- package/src/config/modelProviders/minimax.ts +1 -1
- package/src/config/modelProviders/qiniu.ts +1 -1
- package/src/libs/next-auth/sso-providers/index.ts +0 -2
- package/src/libs/oidc-provider/provider.ts +1 -1
- package/src/server/routers/lambda/session.ts +8 -5
- package/src/server/services/search/impls/firecrawl/index.ts +51 -11
- package/src/server/services/search/impls/firecrawl/type.ts +60 -9
- package/src/services/user/client.test.ts +4 -1
- package/src/libs/next-auth/sso-providers/azure-ad.ts +0 -33
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,64 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.5](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.4...v2.0.0-next.5)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-10-31**</sup>
|
|
8
|
+
|
|
9
|
+
#### ♻ Code Refactoring
|
|
10
|
+
|
|
11
|
+
- **misc**: Migrating Firecrawl to v2.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Code refactoring
|
|
19
|
+
|
|
20
|
+
- **misc**: Migrating Firecrawl to v2, closes [#9850](https://github.com/lobehub/lobe-chat/issues/9850) ([efb4c22](https://github.com/lobehub/lobe-chat/commit/efb4c22))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 2.0.0-next.4](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.3...v2.0.0-next.4)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-10-31**</sup>
|
|
33
|
+
|
|
34
|
+
#### ♻ Code Refactoring
|
|
35
|
+
|
|
36
|
+
- **misc**: Remove azure-ad auth provider.
|
|
37
|
+
|
|
38
|
+
#### 💄 Styles
|
|
39
|
+
|
|
40
|
+
- **misc**: Update i18n.
|
|
41
|
+
|
|
42
|
+
<br/>
|
|
43
|
+
|
|
44
|
+
<details>
|
|
45
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
46
|
+
|
|
47
|
+
#### Code refactoring
|
|
48
|
+
|
|
49
|
+
- **misc**: Remove azure-ad auth provider, closes [#9942](https://github.com/lobehub/lobe-chat/issues/9942) ([103c4d7](https://github.com/lobehub/lobe-chat/commit/103c4d7))
|
|
50
|
+
|
|
51
|
+
#### Styles
|
|
52
|
+
|
|
53
|
+
- **misc**: Update i18n, closes [#9944](https://github.com/lobehub/lobe-chat/issues/9944) ([3a6468f](https://github.com/lobehub/lobe-chat/commit/3a6468f))
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<div align="right">
|
|
58
|
+
|
|
59
|
+
[](#readme-top)
|
|
60
|
+
|
|
61
|
+
</div>
|
|
62
|
+
|
|
5
63
|
## [Version 2.0.0-next.3](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.2...v2.0.0-next.3)
|
|
6
64
|
|
|
7
65
|
<sup>Released on **2025-10-30**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"improvements": [
|
|
5
|
+
"Migrating Firecrawl to v2."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-10-31",
|
|
9
|
+
"version": "2.0.0-next.5"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"improvements": [
|
|
14
|
+
"Update i18n."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-10-31",
|
|
18
|
+
"version": "2.0.0-next.4"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {
|
|
4
22
|
"improvements": [
|
|
@@ -41,6 +41,7 @@ table agents_files {
|
|
|
41
41
|
|
|
42
42
|
indexes {
|
|
43
43
|
(file_id, agent_id, user_id) [pk]
|
|
44
|
+
agent_id [name: 'agents_files_agent_id_idx']
|
|
44
45
|
}
|
|
45
46
|
}
|
|
46
47
|
|
|
@@ -334,6 +335,7 @@ table message_groups {
|
|
|
334
335
|
|
|
335
336
|
indexes {
|
|
336
337
|
(client_id, user_id) [name: 'message_groups_client_id_user_id_unique', unique]
|
|
338
|
+
topic_id [name: 'message_groups_topic_id_idx']
|
|
337
339
|
}
|
|
338
340
|
}
|
|
339
341
|
|
|
@@ -444,6 +446,7 @@ table messages {
|
|
|
444
446
|
user_id [name: 'messages_user_id_idx']
|
|
445
447
|
session_id [name: 'messages_session_id_idx']
|
|
446
448
|
thread_id [name: 'messages_thread_id_idx']
|
|
449
|
+
agent_id [name: 'messages_agent_id_idx']
|
|
447
450
|
}
|
|
448
451
|
}
|
|
449
452
|
|
|
@@ -805,6 +808,8 @@ table agents_to_sessions {
|
|
|
805
808
|
|
|
806
809
|
indexes {
|
|
807
810
|
(agent_id, session_id) [pk]
|
|
811
|
+
session_id [name: 'agents_to_sessions_session_id_idx']
|
|
812
|
+
agent_id [name: 'agents_to_sessions_agent_id_idx']
|
|
808
813
|
}
|
|
809
814
|
}
|
|
810
815
|
|
|
@@ -865,6 +870,8 @@ table sessions {
|
|
|
865
870
|
(client_id, user_id) [name: 'sessions_client_id_user_id_unique', unique]
|
|
866
871
|
user_id [name: 'sessions_user_id_idx']
|
|
867
872
|
(id, user_id) [name: 'sessions_id_user_id_idx']
|
|
873
|
+
(user_id, updated_at) [name: 'sessions_user_id_updated_at_idx']
|
|
874
|
+
group_id [name: 'sessions_group_id_idx']
|
|
868
875
|
}
|
|
869
876
|
}
|
|
870
877
|
|
|
@@ -885,6 +892,7 @@ table threads {
|
|
|
885
892
|
|
|
886
893
|
indexes {
|
|
887
894
|
(client_id, user_id) [name: 'threads_client_id_user_id_unique', unique]
|
|
895
|
+
topic_id [name: 'threads_topic_id_idx']
|
|
888
896
|
}
|
|
889
897
|
}
|
|
890
898
|
|
|
@@ -917,6 +925,8 @@ table topics {
|
|
|
917
925
|
(client_id, user_id) [name: 'topics_client_id_user_id_unique', unique]
|
|
918
926
|
user_id [name: 'topics_user_id_idx']
|
|
919
927
|
(id, user_id) [name: 'topics_id_user_id_idx']
|
|
928
|
+
session_id [name: 'topics_session_id_idx']
|
|
929
|
+
group_id [name: 'topics_group_id_idx']
|
|
920
930
|
}
|
|
921
931
|
}
|
|
922
932
|
|
|
@@ -1166,4 +1176,4 @@ ref: topic_documents.document_id > documents.id
|
|
|
1166
1176
|
|
|
1167
1177
|
ref: topic_documents.topic_id > topics.id
|
|
1168
1178
|
|
|
1169
|
-
ref: topics.session_id - sessions.id
|
|
1179
|
+
ref: topics.session_id - sessions.id
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
title: >-
|
|
3
3
|
Configuring Online Search Functionality - Enhancing AI's Ability to Access Web Information
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
description: >-
|
|
6
7
|
Learn how to configure the SearXNG online search functionality for LobeChat, enabling AI to access the latest web information.
|
|
7
8
|
|
|
9
|
+
|
|
8
10
|
tags:
|
|
9
11
|
- Online Search
|
|
10
12
|
- SearXNG
|
|
@@ -17,7 +19,10 @@ tags:
|
|
|
17
19
|
LobeChat supports configuring **web search functionality** for AI, enabling it to retrieve real-time information from the internet to provide more accurate and up-to-date responses. Web search supports multiple search engine providers, including [SearXNG](https://github.com/searxng/searxng), [Search1API](https://www.search1api.com), [Google](https://programmablesearchengine.google.com), and [Brave](https://brave.com/search/api), among others.
|
|
18
20
|
|
|
19
21
|
<Callout type="info">
|
|
20
|
-
Web search allows AI to access time-sensitive content, such as the latest news, technology trends,
|
|
22
|
+
Web search allows AI to access time-sensitive content, such as the latest news, technology trends,
|
|
23
|
+
or product information. You can deploy the open-source SearXNG yourself, or choose to integrate
|
|
24
|
+
mainstream search services like Search1API, Google, Brave, etc., combining them freely based on
|
|
25
|
+
your use case.
|
|
21
26
|
</Callout>
|
|
22
27
|
|
|
23
28
|
By setting the search service environment variable `SEARCH_PROVIDERS` and the corresponding API Keys, LobeChat will query multiple sources and return the results. You can also configure crawler service environment variables such as `CRAWLER_IMPLS` (e.g., `browserless`, `firecrawl`, `tavily`, etc.) to extract webpage content, enhancing the capability of search + reading.
|
|
@@ -29,20 +34,20 @@ By setting the search service environment variable `SEARCH_PROVIDERS` and the co
|
|
|
29
34
|
Configure available web crawlers for structured extraction of webpage content.
|
|
30
35
|
|
|
31
36
|
```env
|
|
32
|
-
CRAWLER_IMPLS="
|
|
37
|
+
CRAWLER_IMPLS="naive,search1api"
|
|
33
38
|
```
|
|
34
39
|
|
|
35
40
|
Supported crawler types are listed below:
|
|
36
41
|
|
|
37
|
-
| Value | Description | Environment Variable
|
|
38
|
-
| ------------- | ------------------------------------------------------------------------------------------------------------------- |
|
|
39
|
-
| `browserless` | Headless browser crawler based on [Browserless](https://www.browserless.io/), suitable for rendering complex pages. | `BROWSERLESS_TOKEN`
|
|
40
|
-
| `exa` | Crawler capabilities provided by [Exa](https://exa.ai/), API required. | `EXA_API_KEY`
|
|
41
|
-
| `firecrawl` | [Firecrawl](https://firecrawl.dev/) headless browser API, ideal for modern websites. | `FIRECRAWL_API_KEY`
|
|
42
|
-
| `jina` | Crawler service from [Jina AI](https://jina.ai/), supports fast content summarization. | `JINA_READER_API_KEY`
|
|
43
|
-
| `
|
|
44
|
-
| `search1api` | Page crawling capabilities from [Search1API](https://www.search1api.com), great for structured content extraction. | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY`
|
|
45
|
-
| `tavily` | Web scraping and summarization API from [Tavily](https://www.tavily.com/). | `TAVILY_API_KEY`
|
|
42
|
+
| Value | Description | Environment Variable |
|
|
43
|
+
| ------------- | ------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
44
|
+
| `browserless` | Headless browser crawler based on [Browserless](https://www.browserless.io/), suitable for rendering complex pages. | `BROWSERLESS_TOKEN` |
|
|
45
|
+
| `exa` | Crawler capabilities provided by [Exa](https://exa.ai/), API required. | `EXA_API_KEY` |
|
|
46
|
+
| `firecrawl` | [Firecrawl](https://firecrawl.dev/) headless browser API, ideal for modern websites. | `FIRECRAWL_API_KEY` |
|
|
47
|
+
| `jina` | Crawler service from [Jina AI](https://jina.ai/), supports fast content summarization. | `JINA_READER_API_KEY` |
|
|
48
|
+
| `naive` | Built-in general-purpose crawler for standard web structures. | |
|
|
49
|
+
| `search1api` | Page crawling capabilities from [Search1API](https://www.search1api.com), great for structured content extraction. | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY` |
|
|
50
|
+
| `tavily` | Web scraping and summarization API from [Tavily](https://www.tavily.com/). | `TAVILY_API_KEY` |
|
|
46
51
|
|
|
47
52
|
> 💡 Setting multiple crawlers increases success rate; the system will try different ones based on priority.
|
|
48
53
|
|
|
@@ -58,19 +63,19 @@ SEARCH_PROVIDERS="searxng"
|
|
|
58
63
|
|
|
59
64
|
Supported search engines include:
|
|
60
65
|
|
|
61
|
-
| Value | Description | Environment Variable
|
|
62
|
-
| ------------ | --------------------------------------------------------------------------------------- |
|
|
63
|
-
| `anspire` | Search service provided by [Anspire](https://anspire.ai/). | `ANSPIRE_API_KEY`
|
|
64
|
-
| `bocha` | Search service from [Bocha](https://open.bochaai.com/). | `BOCHA_API_KEY`
|
|
65
|
-
| `brave` | [Brave](https://search.brave.com/help/api), a privacy-friendly search source. | `BRAVE_API_KEY`
|
|
66
|
-
| `exa` | [Exa](https://exa.ai/), a search API designed for AI. | `EXA_API_KEY`
|
|
67
|
-
| `firecrawl` | Search capabilities via [Firecrawl](https://firecrawl.dev/). | `FIRECRAWL_API_KEY`
|
|
68
|
-
| `google` | Uses [Google Programmable Search Engine](https://programmablesearchengine.google.com/). | `GOOGLE_PSE_API_KEY` `GOOGLE_PSE_ENGINE_ID`
|
|
69
|
-
| `jina` | Semantic search provided by [Jina AI](https://jina.ai/). | `JINA_READER_API_KEY`
|
|
70
|
-
| `kagi` | Premium search API by [Kagi](https://kagi.com/), requires a subscription key. | `KAGI_API_KEY`
|
|
71
|
-
| `search1api` | Aggregated search capabilities from [Search1API](https://www.search1api.com). | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY`
|
|
72
|
-
| `searxng` | Use a self-hosted or public [SearXNG](https://searx.space/) instance. | `SEARXNG_URL`
|
|
73
|
-
| `tavily` | [Tavily](https://www.tavily.com/), offers fast web summaries and answers. | `TAVILY_API_KEY`
|
|
66
|
+
| Value | Description | Environment Variable |
|
|
67
|
+
| ------------ | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
68
|
+
| `anspire` | Search service provided by [Anspire](https://anspire.ai/). | `ANSPIRE_API_KEY` |
|
|
69
|
+
| `bocha` | Search service from [Bocha](https://open.bochaai.com/). | `BOCHA_API_KEY` |
|
|
70
|
+
| `brave` | [Brave](https://search.brave.com/help/api), a privacy-friendly search source. | `BRAVE_API_KEY` |
|
|
71
|
+
| `exa` | [Exa](https://exa.ai/), a search API designed for AI. | `EXA_API_KEY` |
|
|
72
|
+
| `firecrawl` | Search capabilities via [Firecrawl](https://firecrawl.dev/). | `FIRECRAWL_API_KEY` |
|
|
73
|
+
| `google` | Uses [Google Programmable Search Engine](https://programmablesearchengine.google.com/). | `GOOGLE_PSE_API_KEY` `GOOGLE_PSE_ENGINE_ID` |
|
|
74
|
+
| `jina` | Semantic search provided by [Jina AI](https://jina.ai/). | `JINA_READER_API_KEY` |
|
|
75
|
+
| `kagi` | Premium search API by [Kagi](https://kagi.com/), requires a subscription key. | `KAGI_API_KEY` |
|
|
76
|
+
| `search1api` | Aggregated search capabilities from [Search1API](https://www.search1api.com). | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY` |
|
|
77
|
+
| `searxng` | Use a self-hosted or public [SearXNG](https://searx.space/) instance. | `SEARXNG_URL` |
|
|
78
|
+
| `tavily` | [Tavily](https://www.tavily.com/), offers fast web summaries and answers. | `TAVILY_API_KEY` |
|
|
74
79
|
|
|
75
80
|
> ⚠️ Some search providers require you to apply for an API Key and configure it in your `.env` file.
|
|
76
81
|
|
|
@@ -139,7 +144,7 @@ GOOGLE_PSE_ENGINE_ID=your-google-cx-id
|
|
|
139
144
|
Sets the access URL for the [Firecrawl](https://firecrawl.dev/) API, used for web content scraping. Default value:
|
|
140
145
|
|
|
141
146
|
```env
|
|
142
|
-
FIRECRAWL_URL=https://api.firecrawl.dev/
|
|
147
|
+
FIRECRAWL_URL=https://api.firecrawl.dev/v2
|
|
143
148
|
```
|
|
144
149
|
|
|
145
150
|
> ⚙️ Usually does not need to be changed unless you’re using a self-hosted version or a proxy service.
|
|
@@ -13,7 +13,9 @@ tags:
|
|
|
13
13
|
LobeChat 支持为 AI 配置**联网搜索功能**,使其能够实时获取互联网信息,从而提供更准确、最新的回答。联网搜索支持多个搜索引擎提供商,包括 [SearXNG](https://github.com/searxng/searxng)、[Search1API](https://www.search1api.com)、[Google](https://programmablesearchengine.google.com)、[Brave](https://brave.com/search/api) 等。
|
|
14
14
|
|
|
15
15
|
<Callout type="info">
|
|
16
|
-
联网搜索可以让 AI 获取时效性内容,如最新新闻、技术动态或产品信息。你可以使用开源的 SearXNG
|
|
16
|
+
联网搜索可以让 AI 获取时效性内容,如最新新闻、技术动态或产品信息。你可以使用开源的 SearXNG
|
|
17
|
+
自行部署,也可以选择集成主流搜索引擎服务,如 Search1API、Google、Brave
|
|
18
|
+
等,根据你的使用场景自由组合。
|
|
17
19
|
</Callout>
|
|
18
20
|
|
|
19
21
|
通过设置搜索服务环境变量 `SEARCH_PROVIDERS` 和对应的 API Key,LobeChat 将在多个搜索源中查询并返回结果。你还可以搭配配置爬虫服务环境变量 `CRAWLER_IMPLS`(如 `browserless`、`firecrawl`、`tavily` 等)以提取网页内容,实现搜索 + 阅读的增强能力。
|
|
@@ -25,20 +27,20 @@ LobeChat 支持为 AI 配置**联网搜索功能**,使其能够实时获取互
|
|
|
25
27
|
配置可用的网页爬虫,用于对网页进行结构化内容提取。
|
|
26
28
|
|
|
27
29
|
```env
|
|
28
|
-
CRAWLER_IMPLS="
|
|
30
|
+
CRAWLER_IMPLS="naive,search1api"
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
支持的爬虫类型如下:
|
|
32
34
|
|
|
33
|
-
| 值 | 说明 | 环境变量
|
|
34
|
-
| ------------- | ---------------------------------------------------------------- |
|
|
35
|
-
| `browserless` | 基于 [Browserless](https://www.browserless.io/) 的无头浏览器爬虫,适合渲染复杂页面。 | `BROWSERLESS_TOKEN`
|
|
36
|
-
| `exa` | 使用 [Exa](https://exa.ai/) 提供的爬虫能力,需申请 API。 | `EXA_API_KEY`
|
|
37
|
-
| `firecrawl` | [Firecrawl](https://firecrawl.dev/) 无头浏览器 API,适合现代网站抓取。 | `FIRECRAWL_API_KEY`
|
|
38
|
-
| `jina` | 使用 [Jina AI](https://jina.ai/) 的爬虫服务,支持快速提取摘要信息。 | `JINA_READER_API_KEY`
|
|
39
|
-
| `
|
|
35
|
+
| 值 | 说明 | 环境变量 |
|
|
36
|
+
| ------------- | ---------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
37
|
+
| `browserless` | 基于 [Browserless](https://www.browserless.io/) 的无头浏览器爬虫,适合渲染复杂页面。 | `BROWSERLESS_TOKEN` |
|
|
38
|
+
| `exa` | 使用 [Exa](https://exa.ai/) 提供的爬虫能力,需申请 API。 | `EXA_API_KEY` |
|
|
39
|
+
| `firecrawl` | [Firecrawl](https://firecrawl.dev/) 无头浏览器 API,适合现代网站抓取。 | `FIRECRAWL_API_KEY` |
|
|
40
|
+
| `jina` | 使用 [Jina AI](https://jina.ai/) 的爬虫服务,支持快速提取摘要信息。 | `JINA_READER_API_KEY` |
|
|
41
|
+
| `naive` | 内置简易通用爬虫,适用于标准网页结构。 | |
|
|
40
42
|
| `search1api` | 利用 [Search1API](https://www.search1api.com) 提供的页面抓取能力,适合结构化内容提取。 | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY` |
|
|
41
|
-
| `tavily` | 使用 [Tavily](https://www.tavily.com/) 的网页抓取与摘要 API。 | `TAVILY_API_KEY`
|
|
43
|
+
| `tavily` | 使用 [Tavily](https://www.tavily.com/) 的网页抓取与摘要 API。 | `TAVILY_API_KEY` |
|
|
42
44
|
|
|
43
45
|
> 💡 设置多个爬虫可提升成功率,系统将根据优先级尝试不同爬虫。
|
|
44
46
|
|
|
@@ -54,19 +56,19 @@ SEARCH_PROVIDERS="searxng"
|
|
|
54
56
|
|
|
55
57
|
支持的搜索引擎如下:
|
|
56
58
|
|
|
57
|
-
| 值 | 说明 | 环境变量
|
|
58
|
-
| ------------ | ------------------------------------------------------------------------------------- |
|
|
59
|
-
| `anspire` | 基于 [Anspire(安思派)](https://anspire.ai/) 提供的搜索服务。 | `ANSPIRE_API_KEY`
|
|
60
|
-
| `bocha` | 基于 [Bocha(博查)](https://open.bochaai.com/) 提供的搜索服务。 | `BOCHA_API_KEY`
|
|
61
|
-
| `brave` | [Brave](https://search.brave.com/help/api),隐私友好的搜索源。 | `BRAVE_API_KEY`
|
|
62
|
-
| `exa` | [Exa](https://exa.ai/),面向 AI 的搜索 API。 | `EXA_API_KEY`
|
|
63
|
-
| `firecrawl` | 支持 [Firecrawl](https://firecrawl.dev/) 提供的搜索服务。 | `FIRECRAWL_API_KEY`
|
|
64
|
-
| `google` | 使用 [Google Programmable Search Engine](https://programmablesearchengine.google.com/)。 | `GOOGLE_PSE_API_KEY` `GOOGLE_PSE_ENGINE_ID`
|
|
65
|
-
| `jina` | 使用 [Jina AI](https://jina.ai/) 提供的语义搜索服务。 | `JINA_READER_API_KEY`
|
|
66
|
-
| `kagi` | [Kagi](https://kagi.com/) 提供的高级搜索 API,需订阅 Key。 | `KAGI_API_KEY`
|
|
59
|
+
| 值 | 说明 | 环境变量 |
|
|
60
|
+
| ------------ | ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
61
|
+
| `anspire` | 基于 [Anspire(安思派)](https://anspire.ai/) 提供的搜索服务。 | `ANSPIRE_API_KEY` |
|
|
62
|
+
| `bocha` | 基于 [Bocha(博查)](https://open.bochaai.com/) 提供的搜索服务。 | `BOCHA_API_KEY` |
|
|
63
|
+
| `brave` | [Brave](https://search.brave.com/help/api),隐私友好的搜索源。 | `BRAVE_API_KEY` |
|
|
64
|
+
| `exa` | [Exa](https://exa.ai/),面向 AI 的搜索 API。 | `EXA_API_KEY` |
|
|
65
|
+
| `firecrawl` | 支持 [Firecrawl](https://firecrawl.dev/) 提供的搜索服务。 | `FIRECRAWL_API_KEY` |
|
|
66
|
+
| `google` | 使用 [Google Programmable Search Engine](https://programmablesearchengine.google.com/)。 | `GOOGLE_PSE_API_KEY` `GOOGLE_PSE_ENGINE_ID` |
|
|
67
|
+
| `jina` | 使用 [Jina AI](https://jina.ai/) 提供的语义搜索服务。 | `JINA_READER_API_KEY` |
|
|
68
|
+
| `kagi` | [Kagi](https://kagi.com/) 提供的高级搜索 API,需订阅 Key。 | `KAGI_API_KEY` |
|
|
67
69
|
| `search1api` | 使用 [Search1API](https://www.search1api.com) 聚合搜索能力。 | `SEARCH1API_API_KEY` `SEARCH1API_CRAWL_API_KEY` `SEARCH1API_SEARCH_API_KEY` |
|
|
68
|
-
| `searxng` | 使用自托管或公共 [SearXNG](https://searx.space/) 实例。 | `SEARXNG_URL`
|
|
69
|
-
| `tavily` | [Tavily](https://www.tavily.com/),快速网页摘要与答案返回。 | `TAVILY_API_KEY`
|
|
70
|
+
| `searxng` | 使用自托管或公共 [SearXNG](https://searx.space/) 实例。 | `SEARXNG_URL` |
|
|
71
|
+
| `tavily` | [Tavily](https://www.tavily.com/),快速网页摘要与答案返回。 | `TAVILY_API_KEY` |
|
|
70
72
|
|
|
71
73
|
> ⚠️ 某些搜索提供商需要单独申请 API Key,并在 `.env` 中配置相关凭证。
|
|
72
74
|
|
|
@@ -135,7 +137,7 @@ GOOGLE_PSE_ENGINE_ID=your-google-cx-id
|
|
|
135
137
|
设置 [Firecrawl](https://firecrawl.dev/) API 的访问地址。用于网页内容抓取,默认值如下:
|
|
136
138
|
|
|
137
139
|
```env
|
|
138
|
-
FIRECRAWL_URL=https://api.firecrawl.dev/
|
|
140
|
+
FIRECRAWL_URL=https://api.firecrawl.dev/v2
|
|
139
141
|
```
|
|
140
142
|
|
|
141
143
|
> ⚙️ 一般无需修改,除非你使用的是自托管版本或代理服务。
|
package/locales/ar/models.json
CHANGED
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "أفضل نموذج للترميز والمهام الوكيلة عبر المجالات. يحقق GPT-5 قفزة في الدقة والسرعة والاستدلال والتعرف على السياق والتفكير المنظم وحل المشكلات."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat هو إصدار معاينة مُحسَّن خصيصًا لسيناريوهات المحادثة. يدعم إدخال النصوص والصور، ويُنتج نصوصًا فقط، مما يجعله مثاليًا لتطبيقات الدردشة والذكاء الاصطناعي التفاعلي."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "نموذج GPT-5 المستخدم في ChatGPT. يجمع بين قدرات قوية في فهم اللغة وتوليدها، مناسب لتطبيقات التفاعل الحواري."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "كلود 3.7 سونيت هو أسرع نموذج من الجيل التالي من أنثروبيك. مقارنةً بكلود 3 هايكو، تم تحسين كلود 3.7 سونيت في جميع المهارات، وتجاوز العديد من اختبارات الذكاء لأكبر نموذج من الجيل السابق، كلود 3 أوبس."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 هو أسرع وأذكى نموذج Haiku من Anthropic، يتميز بسرعة فائقة وقدرة متقدمة على التفكير المتسلسل."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 هو النموذج الأذكى الذي طورته Anthropic حتى الآن."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "نموذج v0-1.0-md هو نموذج قديم يتم تقديمه من خلال واجهة برمجة التطبيقات v0"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "Най-добрият модел за междуотраслово кодиране и задачи с агенти. GPT-5 постига пробиви в точност, скорост, разсъждение, разпознаване на контекст, структурирано мислене и решаване на проблеми."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat е предварителна версия, оптимизирана специално за диалогови ситуации. Поддържа въвеждане на текст и изображения, но извежда само текст, което го прави подходящ за чатботове и разговорни AI приложения."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Моделът GPT-5, използван в ChatGPT. Комбинира мощно разбиране и генериране на език, подходящ за диалогови приложения."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 сонет е най-бързият модел от следващото поколение на Anthropic. В сравнение с Claude 3 Haiku, Claude 3.7 Сонет е подобрен във всички умения и надминава най-големия модел от предишното поколение Claude 3 Opus в много интелектуални тестове."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 е най-бързият и интелигентен Haiku модел на Anthropic, отличаващ се със светкавична скорост и разширени способности за мислене."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 е най-интелигентният модел на Anthropic до момента."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "Моделът v0-1.0-md е стара версия, която се обслужва чрез v0 API"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "Das beste Modell für bereichsübergreifende Codierungs- und Agentenaufgaben. GPT-5 erzielt Durchbrüche in Genauigkeit, Geschwindigkeit, Schlussfolgerungen, Kontextverständnis, strukturiertem Denken und Problemlösung."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat ist eine Vorschauversion, die speziell für Dialogszenarien optimiert wurde. Unterstützt Text- und Bildeingaben, gibt jedoch nur Text aus – ideal für Chatbots und dialogbasierte KI-Anwendungen."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Das in ChatGPT verwendete GPT-5 Modell. Vereint starke Sprachverständnis- und Generierungsfähigkeiten, ideal für dialogorientierte Anwendungen."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 Sonett ist das schnellste nächste Modell von Anthropic. Im Vergleich zu Claude 3 Haiku hat Claude 3.7 Sonett in allen Fähigkeiten Verbesserungen erfahren und übertrifft in vielen intellektuellen Benchmark-Tests das größte Modell der vorherigen Generation, Claude 3 Opus."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 ist das schnellste und intelligenteste Haiku-Modell von Anthropic mit blitzschneller Reaktionszeit und erweiterten Denkfähigkeiten."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 ist das bisher intelligenteste Modell von Anthropic."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "Das Modell v0-1.0-md ist ein älteres Modell, das über die v0 API bereitgestellt wird"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "The best model for cross-domain coding and agent tasks. GPT-5 achieves breakthroughs in accuracy, speed, reasoning, context recognition, structured thinking, and problem-solving."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat is a preview version optimized for conversational scenarios. It supports both text and image input, outputs text only, and is ideal for chatbots and conversational AI applications."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "The GPT-5 model used in ChatGPT. Combines powerful language understanding and generation capabilities, ideal for conversational interaction applications."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 Sonnet is Anthropic's fastest next-generation model. Compared to Claude 3 Haiku, Claude 3.7 Sonnet shows improvements across various skills and surpasses the previous generation's largest model, Claude 3 Opus, in many intelligence benchmark tests."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 is Anthropic's fastest and most intelligent Haiku model, offering lightning-fast speed and advanced reasoning capabilities."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 is the most intelligent model Anthropic has developed to date."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "The v0-1.0-md model is a legacy model served through the v0 API."
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "El mejor modelo para tareas de codificación y agentes multidisciplinarios. GPT-5 logra avances en precisión, velocidad, razonamiento, reconocimiento contextual, pensamiento estructurado y resolución de problemas."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat es una versión preliminar optimizada para escenarios conversacionales. Admite entrada de texto e imagen, y solo genera salida de texto. Ideal para chatbots y aplicaciones de IA conversacional."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Modelo GPT-5 utilizado en ChatGPT. Combina una potente comprensión y generación del lenguaje, ideal para aplicaciones de interacción conversacional."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 sonnet es el modelo de próxima generación más rápido de Anthropic. En comparación con Claude 3 Haiku, Claude 3.7 Sonnet ha mejorado en todas las habilidades y ha superado al modelo más grande de la generación anterior, Claude 3 Opus, en muchas pruebas de referencia de inteligencia."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 es el modelo Haiku más rápido e inteligente de Anthropic, con una velocidad relámpago y una capacidad de razonamiento ampliada."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 es el modelo más inteligente desarrollado por Anthropic hasta la fecha."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "El modelo v0-1.0-md es una versión antigua que ofrece servicios a través de la API v0"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "بهترین مدل برای کدگذاری و وظایف نمایندگی در حوزههای مختلف. GPT-5 جهشی در دقت، سرعت، استدلال، درک زمینه، تفکر ساختاری و حل مسئله ایجاد کرده است."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "نسخه پیشنمایش GPT-5 Chat که برای سناریوهای مکالمهای بهینهسازی شده است. از ورودی متنی و تصویری پشتیبانی میکند و فقط خروجی متنی ارائه میدهد. مناسب برای رباتهای گفتگو و برنامههای هوش مصنوعی مکالمهمحور."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "مدل GPT-5 استفاده شده در ChatGPT. ترکیبی از درک و تولید زبان قدرتمند، مناسب برای برنامههای تعاملی گفتگو محور."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 sonnet سریعترین مدل نسل بعدی Anthropic است. در مقایسه با Claude 3 Haiku، Claude 3.7 Sonnet در تمام مهارتها بهبود یافته و در بسیاری از آزمونهای استاندارد هوش از بزرگترین مدل نسل قبلی، Claude 3 Opus، پیشی گرفته است."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 سریعترین و هوشمندترین مدل Haiku از شرکت Anthropic است که دارای سرعتی برقآسا و توانایی تفکر توسعهیافته میباشد."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 هوشمندترین مدلی است که تاکنون توسط Anthropic ارائه شده است."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "مدل v0-1.0-md نسخه قدیمی مدلی است که از طریق API نسخه v0 ارائه میشود"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "Le meilleur modèle pour les tâches de codage inter-domaines et d'agents. GPT-5 réalise un bond en avant en précision, vitesse, raisonnement, reconnaissance contextuelle, pensée structurée et résolution de problèmes."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat est une version préliminaire optimisée pour les scénarios de conversation. Il prend en charge les entrées texte et image, mais ne génère que du texte, idéal pour les chatbots et les applications d’IA conversationnelle."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Modèle GPT-5 utilisé dans ChatGPT. Allie une compréhension et une génération linguistique puissantes, idéal pour les applications d'interaction conversationnelle."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 sonnet est le modèle de prochaine génération le plus rapide d'Anthropic. Par rapport à Claude 3 Haiku, Claude 3.7 Sonnet a amélioré ses compétences dans divers domaines et a surpassé le plus grand modèle de la génération précédente, Claude 3 Opus, dans de nombreux tests de référence intellectuels."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 est le modèle Haiku le plus rapide et le plus intelligent d’Anthropic, offrant une vitesse fulgurante et une capacité de raisonnement étendue."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 est le modèle le plus intelligent jamais conçu par Anthropic."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "Le modèle v0-1.0-md est une version ancienne proposée via l'API v0"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "Il miglior modello per compiti di codifica e agenti cross-domain. GPT-5 rappresenta un salto in termini di accuratezza, velocità, ragionamento, riconoscimento del contesto, pensiero strutturato e problem solving."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat è una versione di anteprima ottimizzata per scenari conversazionali. Supporta input di testo e immagini, ma produce solo output testuale, ideale per chatbot e applicazioni di intelligenza artificiale conversazionale."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Modello GPT-5 utilizzato in ChatGPT. Combina potenti capacità di comprensione e generazione del linguaggio, ideale per applicazioni di interazione conversazionale."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 sonnet è il modello di prossima generazione più veloce di Anthropic. Rispetto a Claude 3 Haiku, Claude 3.7 Sonnet ha migliorato le sue capacità in vari ambiti e ha superato il modello di generazione precedente, Claude 3 Opus, in molti test di intelligenza."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 è il modello Haiku più veloce e intelligente di Anthropic, con una velocità fulminea e una notevole capacità di ragionamento esteso."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 è il modello più intelligente mai realizzato da Anthropic fino ad oggi."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "Il modello v0-1.0-md è una versione precedente fornita tramite l'API v0"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "クロスドメインのコーディングおよびエージェントタスクに最適なモデル。GPT-5は正確性、速度、推論、コンテキスト認識、構造的思考、問題解決において飛躍的な進歩を遂げました。"
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat は会話シナリオ向けに最適化されたプレビュー版です。テキストと画像の入力に対応し、出力はテキストのみです。チャットボットや対話型AIアプリケーションに適しています。"
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "ChatGPTで使用されているGPT-5モデル。強力な言語理解と生成能力を兼ね備え、対話型インタラクションに適しています。"
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 Sonnetは、Anthropicの最も高速な次世代モデルです。Claude 3 Haikuと比較して、Claude 3.7 Sonnetはすべてのスキルで向上しており、多くの知能ベンチマークテストで前世代の最大モデルClaude 3 Opusを超えています。"
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 は、Anthropic による最速かつ最もスマートな Haiku モデルで、驚異的なスピードと高度な思考能力を備えています。"
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 は、Anthropic がこれまでに開発した中で最も高度な知能を持つモデルです。"
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "v0-1.0-md モデルは、v0 API を通じて提供される旧バージョンのモデルです"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "다중 분야 코딩 및 에이전트 작업에 최적화된 모델입니다. GPT-5는 정확성, 속도, 추론, 문맥 인식, 구조적 사고 및 문제 해결 능력에서 비약적인 발전을 이루었습니다."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat은 대화 시나리오에 최적화된 프리뷰 버전입니다. 텍스트와 이미지 입력을 지원하며, 텍스트로만 출력됩니다. 챗봇 및 대화형 AI 애플리케이션에 적합합니다."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "ChatGPT에 사용되는 GPT-5 모델로, 강력한 언어 이해 및 생성 능력을 결합하여 대화형 상호작용에 적합합니다."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 소네트는 Anthropic의 가장 빠른 차세대 모델입니다. Claude 3 하이쿠와 비교할 때, Claude 3.7 소네트는 모든 기술에서 향상되었으며, 많은 지능 기준 테스트에서 이전 세대의 가장 큰 모델인 Claude 3 오푸스를 초월했습니다."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5는 Anthropic에서 가장 빠르고 똑똑한 Haiku 모델로, 번개처럼 빠른 속도와 확장된 사고 능력을 갖추고 있습니다."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5는 지금까지 Anthropic이 개발한 가장 지능적인 모델입니다."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "v0-1.0-md 모델은 v0 API를 통해 제공되는 구버전 모델입니다"
|
|
3217
3226
|
},
|
|
@@ -1811,6 +1811,9 @@
|
|
|
1811
1811
|
"gpt-5": {
|
|
1812
1812
|
"description": "Het beste model voor cross-domain codering en agenttaken. GPT-5 maakt een sprong voorwaarts in nauwkeurigheid, snelheid, redeneren, contextherkenning, gestructureerd denken en probleemoplossing."
|
|
1813
1813
|
},
|
|
1814
|
+
"gpt-5-chat": {
|
|
1815
|
+
"description": "GPT-5 Chat is een previewversie die geoptimaliseerd is voor conversaties. Ondersteunt tekst- en afbeeldingsinvoer, geeft alleen tekst als output, geschikt voor chatbots en conversatiegerichte AI-toepassingen."
|
|
1816
|
+
},
|
|
1814
1817
|
"gpt-5-chat-latest": {
|
|
1815
1818
|
"description": "Het GPT-5-model gebruikt in ChatGPT. Combineert krachtige taalbegrip en generatie, geschikt voor interactieve dialoogtoepassingen."
|
|
1816
1819
|
},
|
|
@@ -3212,6 +3215,12 @@
|
|
|
3212
3215
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
3213
3216
|
"description": "Claude 3.7 sonnet is het snelste volgende generatie model van Anthropic. In vergelijking met Claude 3 Haiku heeft Claude 3.7 Sonnet verbeteringen in verschillende vaardigheden en overtreft het de grootste modellen van de vorige generatie, Claude 3 Opus, in veel intellectuele benchmarktests."
|
|
3214
3217
|
},
|
|
3218
|
+
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
3219
|
+
"description": "Claude Haiku 4.5 is het snelste en slimste Haiku-model van Anthropic, met razendsnelle prestaties en geavanceerde denkvermogens."
|
|
3220
|
+
},
|
|
3221
|
+
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
3222
|
+
"description": "Claude Sonnet 4.5 is het meest geavanceerde model dat Anthropic tot nu toe heeft ontwikkeld."
|
|
3223
|
+
},
|
|
3215
3224
|
"v0-1.0-md": {
|
|
3216
3225
|
"description": "Het v0-1.0-md model is een oudere versie die via de v0 API wordt aangeboden"
|
|
3217
3226
|
},
|