pygpt-net 2.7.6__py3-none-any.whl → 2.7.8__py3-none-any.whl

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 (120) hide show
  1. pygpt_net/CHANGELOG.txt +13 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +5 -1
  4. pygpt_net/controller/assistant/batch.py +2 -2
  5. pygpt_net/controller/assistant/files.py +7 -6
  6. pygpt_net/controller/assistant/threads.py +0 -0
  7. pygpt_net/controller/chat/command.py +0 -0
  8. pygpt_net/controller/chat/remote_tools.py +3 -9
  9. pygpt_net/controller/chat/stream.py +2 -2
  10. pygpt_net/controller/chat/{handler/worker.py → stream_worker.py} +13 -35
  11. pygpt_net/controller/dialogs/confirm.py +35 -58
  12. pygpt_net/controller/lang/mapping.py +9 -9
  13. pygpt_net/controller/remote_store/{google/batch.py → batch.py} +209 -252
  14. pygpt_net/controller/remote_store/remote_store.py +982 -13
  15. pygpt_net/core/command/command.py +0 -0
  16. pygpt_net/core/db/viewer.py +1 -1
  17. pygpt_net/core/debug/models.py +2 -2
  18. pygpt_net/core/realtime/worker.py +3 -1
  19. pygpt_net/{controller/remote_store/google → core/remote_store/anthropic}/__init__.py +0 -1
  20. pygpt_net/core/remote_store/anthropic/files.py +211 -0
  21. pygpt_net/core/remote_store/anthropic/store.py +208 -0
  22. pygpt_net/core/remote_store/openai/store.py +5 -4
  23. pygpt_net/core/remote_store/remote_store.py +5 -1
  24. pygpt_net/{controller/remote_store/openai → core/remote_store/xai}/__init__.py +0 -1
  25. pygpt_net/core/remote_store/xai/files.py +225 -0
  26. pygpt_net/core/remote_store/xai/store.py +219 -0
  27. pygpt_net/data/config/config.json +18 -5
  28. pygpt_net/data/config/models.json +193 -4
  29. pygpt_net/data/config/settings.json +179 -36
  30. pygpt_net/data/icons/folder_eye.svg +1 -0
  31. pygpt_net/data/icons/folder_eye_filled.svg +1 -0
  32. pygpt_net/data/icons/folder_open.svg +1 -0
  33. pygpt_net/data/icons/folder_open_filled.svg +1 -0
  34. pygpt_net/data/locale/locale.de.ini +6 -3
  35. pygpt_net/data/locale/locale.en.ini +46 -12
  36. pygpt_net/data/locale/locale.es.ini +6 -3
  37. pygpt_net/data/locale/locale.fr.ini +6 -3
  38. pygpt_net/data/locale/locale.it.ini +6 -3
  39. pygpt_net/data/locale/locale.pl.ini +7 -4
  40. pygpt_net/data/locale/locale.uk.ini +6 -3
  41. pygpt_net/data/locale/locale.zh.ini +6 -3
  42. pygpt_net/icons.qrc +4 -0
  43. pygpt_net/icons_rc.py +282 -138
  44. pygpt_net/plugin/cmd_mouse_control/worker.py +2 -1
  45. pygpt_net/plugin/cmd_mouse_control/worker_sandbox.py +2 -1
  46. pygpt_net/provider/api/anthropic/__init__.py +10 -3
  47. pygpt_net/provider/api/anthropic/chat.py +342 -11
  48. pygpt_net/provider/api/anthropic/computer.py +844 -0
  49. pygpt_net/provider/api/anthropic/remote_tools.py +172 -0
  50. pygpt_net/provider/api/anthropic/store.py +307 -0
  51. pygpt_net/{controller/chat/handler/anthropic_stream.py → provider/api/anthropic/stream.py} +99 -10
  52. pygpt_net/provider/api/anthropic/tools.py +32 -77
  53. pygpt_net/provider/api/anthropic/utils.py +30 -0
  54. pygpt_net/{controller/chat/handler → provider/api/anthropic/worker}/__init__.py +0 -0
  55. pygpt_net/provider/api/anthropic/worker/importer.py +278 -0
  56. pygpt_net/provider/api/google/chat.py +62 -9
  57. pygpt_net/provider/api/google/store.py +124 -3
  58. pygpt_net/{controller/chat/handler/google_stream.py → provider/api/google/stream.py} +92 -25
  59. pygpt_net/provider/api/google/utils.py +185 -0
  60. pygpt_net/provider/api/google/worker/importer.py +16 -28
  61. pygpt_net/provider/api/langchain/__init__.py +0 -0
  62. pygpt_net/{controller/chat/handler/langchain_stream.py → provider/api/langchain/stream.py} +1 -1
  63. pygpt_net/provider/api/llama_index/__init__.py +0 -0
  64. pygpt_net/{controller/chat/handler/llamaindex_stream.py → provider/api/llama_index/stream.py} +1 -1
  65. pygpt_net/provider/api/openai/assistants.py +2 -2
  66. pygpt_net/provider/api/openai/image.py +2 -2
  67. pygpt_net/provider/api/openai/store.py +4 -1
  68. pygpt_net/{controller/chat/handler/openai_stream.py → provider/api/openai/stream.py} +1 -1
  69. pygpt_net/provider/api/openai/utils.py +69 -3
  70. pygpt_net/provider/api/openai/worker/importer.py +19 -61
  71. pygpt_net/provider/api/openai/worker/importer_assistants.py +230 -0
  72. pygpt_net/provider/api/x_ai/__init__.py +138 -15
  73. pygpt_net/provider/api/x_ai/audio.py +43 -11
  74. pygpt_net/provider/api/x_ai/chat.py +92 -4
  75. pygpt_net/provider/api/x_ai/image.py +149 -47
  76. pygpt_net/provider/api/x_ai/realtime/__init__.py +12 -0
  77. pygpt_net/provider/api/x_ai/realtime/client.py +1825 -0
  78. pygpt_net/provider/api/x_ai/realtime/realtime.py +198 -0
  79. pygpt_net/provider/api/x_ai/{remote.py → remote_tools.py} +183 -70
  80. pygpt_net/provider/api/x_ai/responses.py +507 -0
  81. pygpt_net/provider/api/x_ai/store.py +610 -0
  82. pygpt_net/{controller/chat/handler/xai_stream.py → provider/api/x_ai/stream.py} +42 -10
  83. pygpt_net/provider/api/x_ai/tools.py +59 -8
  84. pygpt_net/{controller/chat/handler → provider/api/x_ai}/utils.py +1 -2
  85. pygpt_net/provider/api/x_ai/vision.py +1 -4
  86. pygpt_net/provider/api/x_ai/worker/importer.py +308 -0
  87. pygpt_net/provider/audio_input/xai_grok_voice.py +390 -0
  88. pygpt_net/provider/audio_output/xai_tts.py +325 -0
  89. pygpt_net/provider/core/config/patch.py +39 -3
  90. pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +2 -2
  91. pygpt_net/provider/core/model/patch.py +39 -1
  92. pygpt_net/tools/image_viewer/tool.py +334 -34
  93. pygpt_net/tools/image_viewer/ui/dialogs.py +319 -22
  94. pygpt_net/tools/text_editor/ui/dialogs.py +3 -2
  95. pygpt_net/tools/text_editor/ui/widgets.py +0 -0
  96. pygpt_net/ui/dialog/assistant.py +1 -1
  97. pygpt_net/ui/dialog/plugins.py +13 -5
  98. pygpt_net/ui/dialog/remote_store.py +552 -0
  99. pygpt_net/ui/dialogs.py +3 -5
  100. pygpt_net/ui/layout/ctx/ctx_list.py +58 -7
  101. pygpt_net/ui/menu/tools.py +6 -13
  102. pygpt_net/ui/widget/dialog/base.py +16 -5
  103. pygpt_net/ui/widget/dialog/{remote_store_google.py → remote_store.py} +10 -10
  104. pygpt_net/ui/widget/element/button.py +4 -4
  105. pygpt_net/ui/widget/image/display.py +2 -2
  106. pygpt_net/ui/widget/lists/context.py +2 -2
  107. pygpt_net/ui/widget/textarea/editor.py +0 -0
  108. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/METADATA +15 -2
  109. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/RECORD +107 -89
  110. pygpt_net/controller/remote_store/google/store.py +0 -615
  111. pygpt_net/controller/remote_store/openai/batch.py +0 -524
  112. pygpt_net/controller/remote_store/openai/store.py +0 -699
  113. pygpt_net/ui/dialog/remote_store_google.py +0 -539
  114. pygpt_net/ui/dialog/remote_store_openai.py +0 -539
  115. pygpt_net/ui/widget/dialog/remote_store_openai.py +0 -56
  116. pygpt_net/ui/widget/lists/remote_store_google.py +0 -248
  117. pygpt_net/ui/widget/lists/remote_store_openai.py +0 -317
  118. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/LICENSE +0 -0
  119. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/WHEEL +0 -0
  120. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/entry_points.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.7.6",
4
- "app.version": "2.7.6",
5
- "updated_at": "2026-01-03T00:00:00"
3
+ "version": "2.7.8",
4
+ "app.version": "2.7.8",
5
+ "updated_at": "2026-01-06T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
@@ -3192,11 +3192,200 @@
3192
3192
  ]
3193
3193
  },
3194
3194
  "ctx": 256000,
3195
- "tokens": 16384,
3195
+ "tokens": 0,
3196
+ "default": false,
3197
+ "input": [
3198
+ "text",
3199
+ "image"
3200
+ ],
3201
+ "output": [
3202
+ "text"
3203
+ ],
3204
+ "extra": {},
3205
+ "imported": false,
3206
+ "provider": "x_ai",
3207
+ "tool_calls": true
3208
+ },
3209
+ "grok-4-1-fast-non-reasoning": {
3210
+ "id": "grok-4-1-fast-non-reasoning",
3211
+ "name": "grok-4-1-fast-non-reasoning",
3212
+ "mode": [
3213
+ "chat",
3214
+ "llama_index",
3215
+ "agent_llama",
3216
+ "agent_openai",
3217
+ "agent",
3218
+ "expert"
3219
+ ],
3220
+ "llama_index": {
3221
+ "args": [
3222
+ {
3223
+ "name": "model",
3224
+ "value": "grok-4-1-fast-non-reasoning",
3225
+ "type": "str"
3226
+ }
3227
+ ],
3228
+ "env": [
3229
+ {
3230
+ "name": "OPENAI_API_KEY",
3231
+ "value": "{api_key_xai}",
3232
+ "type": "str"
3233
+ },
3234
+ {
3235
+ "name": "OPENAI_API_BASE",
3236
+ "value": "{api_endpoint_xai}",
3237
+ "type": "str"
3238
+ }
3239
+ ]
3240
+ },
3241
+ "ctx": 256000,
3242
+ "tokens": 0,
3196
3243
  "default": false,
3197
3244
  "input": [
3245
+ "text",
3246
+ "image"
3247
+ ],
3248
+ "output": [
3198
3249
  "text"
3199
3250
  ],
3251
+ "extra": {},
3252
+ "imported": false,
3253
+ "provider": "x_ai",
3254
+ "tool_calls": true
3255
+ },
3256
+ "grok-4-1-fast-reasoning": {
3257
+ "id": "grok-4-1-fast-reasoning",
3258
+ "name": "grok-4-1-fast-reasoning",
3259
+ "mode": [
3260
+ "chat",
3261
+ "llama_index",
3262
+ "agent_llama",
3263
+ "agent_openai",
3264
+ "agent",
3265
+ "expert"
3266
+ ],
3267
+ "llama_index": {
3268
+ "args": [
3269
+ {
3270
+ "name": "model",
3271
+ "value": "grok-4-1-fast-reasoning",
3272
+ "type": "str"
3273
+ }
3274
+ ],
3275
+ "env": [
3276
+ {
3277
+ "name": "OPENAI_API_KEY",
3278
+ "value": "{api_key_xai}",
3279
+ "type": "str"
3280
+ },
3281
+ {
3282
+ "name": "OPENAI_API_BASE",
3283
+ "value": "{api_endpoint_xai}",
3284
+ "type": "str"
3285
+ }
3286
+ ]
3287
+ },
3288
+ "ctx": 256000,
3289
+ "tokens": 0,
3290
+ "default": false,
3291
+ "input": [
3292
+ "text",
3293
+ "image"
3294
+ ],
3295
+ "output": [
3296
+ "text"
3297
+ ],
3298
+ "extra": {},
3299
+ "imported": false,
3300
+ "provider": "x_ai",
3301
+ "tool_calls": true
3302
+ },
3303
+ "grok-4-fast-non-reasoning": {
3304
+ "id": "grok-4-fast-non-reasoning",
3305
+ "name": "grok-4-fast-non-reasoning",
3306
+ "mode": [
3307
+ "chat",
3308
+ "llama_index",
3309
+ "agent_llama",
3310
+ "agent_openai",
3311
+ "agent",
3312
+ "expert"
3313
+ ],
3314
+ "llama_index": {
3315
+ "args": [
3316
+ {
3317
+ "name": "model",
3318
+ "value": "grok-4-fast-non-reasoning",
3319
+ "type": "str"
3320
+ }
3321
+ ],
3322
+ "env": [
3323
+ {
3324
+ "name": "OPENAI_API_KEY",
3325
+ "value": "{api_key_xai}",
3326
+ "type": "str"
3327
+ },
3328
+ {
3329
+ "name": "OPENAI_API_BASE",
3330
+ "value": "{api_endpoint_xai}",
3331
+ "type": "str"
3332
+ }
3333
+ ]
3334
+ },
3335
+ "ctx": 256000,
3336
+ "tokens": 0,
3337
+ "default": false,
3338
+ "input": [
3339
+ "text",
3340
+ "image"
3341
+ ],
3342
+ "output": [
3343
+ "text"
3344
+ ],
3345
+ "extra": {},
3346
+ "imported": false,
3347
+ "provider": "x_ai",
3348
+ "tool_calls": true
3349
+ },
3350
+ "grok-4-fast-reasoning": {
3351
+ "id": "grok-4-fast-reasoning",
3352
+ "name": "grok-4-fast-reasoning",
3353
+ "mode": [
3354
+ "chat",
3355
+ "llama_index",
3356
+ "agent_llama",
3357
+ "agent_openai",
3358
+ "agent",
3359
+ "expert"
3360
+ ],
3361
+ "llama_index": {
3362
+ "args": [
3363
+ {
3364
+ "name": "model",
3365
+ "value": "grok-4-fast-reasoning",
3366
+ "type": "str"
3367
+ }
3368
+ ],
3369
+ "env": [
3370
+ {
3371
+ "name": "OPENAI_API_KEY",
3372
+ "value": "{api_key_xai}",
3373
+ "type": "str"
3374
+ },
3375
+ {
3376
+ "name": "OPENAI_API_BASE",
3377
+ "value": "{api_endpoint_xai}",
3378
+ "type": "str"
3379
+ }
3380
+ ]
3381
+ },
3382
+ "ctx": 256000,
3383
+ "tokens": 0,
3384
+ "default": false,
3385
+ "input": [
3386
+ "text",
3387
+ "image"
3388
+ ],
3200
3389
  "output": [
3201
3390
  "text"
3202
3391
  ],
@@ -344,6 +344,28 @@
344
344
  "advanced": false,
345
345
  "tab": "xAI"
346
346
  },
347
+ "api_key_management_xai": {
348
+ "section": "api_keys",
349
+ "type": "text",
350
+ "slider": false,
351
+ "label": "settings.api_key_management.xai",
352
+ "description": "settings.api_key_management.xai.desc",
353
+ "value": "",
354
+ "min": null,
355
+ "max": null,
356
+ "multiplier": null,
357
+ "step": null,
358
+ "extra": {
359
+ "bold": true
360
+ },
361
+ "urls": {
362
+ "API Keys": "https://console.x.ai"
363
+ },
364
+ "secret": true,
365
+ "persist": true,
366
+ "advanced": false,
367
+ "tab": "xAI"
368
+ },
347
369
  "api_endpoint_xai": {
348
370
  "section": "api_keys",
349
371
  "type": "text",
@@ -974,12 +996,26 @@
974
996
  "use": "models",
975
997
  "slider": false,
976
998
  "label": "settings.ctx.auto_summary.model",
999
+ "description": "settings.ctx.auto_summary.model.desc",
977
1000
  "value": "gpt-3.5-turbo-1106",
978
1001
  "min": null,
979
1002
  "max": null,
980
1003
  "multiplier": null,
981
1004
  "step": null,
982
1005
  "advanced": false
1006
+ },
1007
+ "ctx.auto_summary": {
1008
+ "section": "ctx",
1009
+ "type": "bool",
1010
+ "slider": false,
1011
+ "label": "settings.ctx.auto_summary",
1012
+ "description": "settings.ctx.auto_summary.desc",
1013
+ "value": true,
1014
+ "min": null,
1015
+ "max": null,
1016
+ "multiplier": null,
1017
+ "step": null,
1018
+ "advanced": false
983
1019
  },
984
1020
  "ctx.records.folders.top": {
985
1021
  "section": "ctx",
@@ -1065,18 +1101,6 @@
1065
1101
  "step": null,
1066
1102
  "advanced": false
1067
1103
  },
1068
- "ctx.auto_summary": {
1069
- "section": "ctx",
1070
- "type": "bool",
1071
- "slider": false,
1072
- "label": "settings.ctx.auto_summary",
1073
- "value": true,
1074
- "min": null,
1075
- "max": null,
1076
- "multiplier": null,
1077
- "step": null,
1078
- "advanced": false
1079
- },
1080
1104
  "lock_modes": {
1081
1105
  "section": "ctx",
1082
1106
  "type": "bool",
@@ -1160,9 +1184,9 @@
1160
1184
  "slider": true,
1161
1185
  "label": "settings.max_output_tokens",
1162
1186
  "description": "settings.zero.limit.desc",
1163
- "value": 50,
1187
+ "value": 64000,
1164
1188
  "min": 0,
1165
- "max": 32000,
1189
+ "max": 2000000,
1166
1190
  "multiplier": 1,
1167
1191
  "step": 1,
1168
1192
  "advanced": false
@@ -1173,9 +1197,9 @@
1173
1197
  "slider": true,
1174
1198
  "label": "settings.max_total_tokens",
1175
1199
  "description": "settings.zero.limit.desc",
1176
- "value": 400,
1200
+ "value": 256000,
1177
1201
  "min": 0,
1178
- "max": 256000,
1202
+ "max": 2000000,
1179
1203
  "multiplier": 1,
1180
1204
  "step": 1,
1181
1205
  "advanced": false
@@ -2032,7 +2056,7 @@
2032
2056
  "advanced": false,
2033
2057
  "tab": "Google",
2034
2058
  "urls": {
2035
- "Google Docs": "https://ai.google.dev/gemini-api/docs/file-search#metadata"
2059
+ "Google Docs": "https://ai.google.dev/gemini-api/docs/file-search"
2036
2060
  }
2037
2061
  },
2038
2062
  "remote_tools.anthropic.web_search": {
@@ -2049,18 +2073,89 @@
2049
2073
  "advanced": false,
2050
2074
  "tab": "Anthropic"
2051
2075
  },
2052
- "remote_tools.xai.mode": {
2076
+ "remote_tools.anthropic.web_fetch": {
2053
2077
  "section": "remote_tools",
2054
- "type": "combo",
2078
+ "type": "bool",
2055
2079
  "slider": false,
2056
- "label": "settings.remote_tools.xai.mode",
2057
- "description": "settings.remote_tools.xai.mode.desc",
2058
- "value": "auto",
2059
- "keys": [
2060
- {"auto": "auto"},
2061
- {"on": "on"},
2062
- {"off": "off"}
2063
- ],
2080
+ "label": "settings.remote_tools.anthropic.web_fetch",
2081
+ "description": "settings.remote_tools.anthropic.web_fetch.desc",
2082
+ "value": true,
2083
+ "min": null,
2084
+ "max": null,
2085
+ "multiplier": null,
2086
+ "step": null,
2087
+ "advanced": false,
2088
+ "tab": "Anthropic"
2089
+ },
2090
+ "remote_tools.anthropic.code_execution": {
2091
+ "section": "remote_tools",
2092
+ "type": "bool",
2093
+ "slider": false,
2094
+ "label": "settings.remote_tools.anthropic.code_execution",
2095
+ "description": "settings.remote_tools.anthropic.code_execution.desc",
2096
+ "value": true,
2097
+ "min": null,
2098
+ "max": null,
2099
+ "multiplier": null,
2100
+ "step": null,
2101
+ "advanced": false,
2102
+ "tab": "Anthropic"
2103
+ },
2104
+ "remote_tools.anthropic.mcp": {
2105
+ "section": "remote_tools",
2106
+ "type": "bool",
2107
+ "slider": false,
2108
+ "label": "settings.remote_tools.anthropic.mcp",
2109
+ "description": "settings.remote_tools.anthropic.mcp.desc",
2110
+ "value": true,
2111
+ "min": null,
2112
+ "max": null,
2113
+ "multiplier": null,
2114
+ "step": null,
2115
+ "advanced": false,
2116
+ "tab": "Anthropic"
2117
+ },
2118
+ "remote_tools.anthropic.mcp.tools": {
2119
+ "section": "remote_tools",
2120
+ "type": "textarea",
2121
+ "slider": false,
2122
+ "label": "settings.remote_tools.anthropic.mcp.tools",
2123
+ "description": "settings.remote_tools.anthropic.mcp.tools.desc",
2124
+ "value": "",
2125
+ "min": null,
2126
+ "max": null,
2127
+ "multiplier": null,
2128
+ "step": null,
2129
+ "advanced": false,
2130
+ "tab": "Anthropic",
2131
+ "urls": {
2132
+ "Anthropic Docs": "https://platform.claude.com/docs/en/agents-and-tools/remote-mcp-servers"
2133
+ }
2134
+ },
2135
+ "remote_tools.anthropic.mcp.mcp_servers": {
2136
+ "section": "remote_tools",
2137
+ "type": "textarea",
2138
+ "slider": false,
2139
+ "label": "settings.remote_tools.anthropic.mcp.mcp_servers",
2140
+ "description": "settings.remote_tools.anthropic.mcp.mcp_servers.desc",
2141
+ "value": "",
2142
+ "min": null,
2143
+ "max": null,
2144
+ "multiplier": null,
2145
+ "step": null,
2146
+ "advanced": false,
2147
+ "tab": "Anthropic",
2148
+ "urls": {
2149
+ "Anthropic Docs": "https://platform.claude.com/docs/en/agents-and-tools/remote-mcp-servers"
2150
+ }
2151
+ },
2152
+ "remote_tools.xai.web_search": {
2153
+ "section": "remote_tools",
2154
+ "type": "bool",
2155
+ "slider": false,
2156
+ "label": "settings.remote_tools.xai.web_search",
2157
+ "description": "settings.remote_tools.xai.web_search.desc",
2158
+ "value": true,
2064
2159
  "min": null,
2065
2160
  "max": null,
2066
2161
  "multiplier": null,
@@ -2068,12 +2163,12 @@
2068
2163
  "advanced": false,
2069
2164
  "tab": "xAI"
2070
2165
  },
2071
- "remote_tools.xai.sources.web": {
2166
+ "remote_tools.xai.x_search": {
2072
2167
  "section": "remote_tools",
2073
2168
  "type": "bool",
2074
2169
  "slider": false,
2075
- "label": "settings.remote_tools.xai.sources.web",
2076
- "description": "settings.remote_tools.xai.sources.web.desc",
2170
+ "label": "settings.remote_tools.xai.x_search",
2171
+ "description": "settings.remote_tools.xai.x_search.desc",
2077
2172
  "value": true,
2078
2173
  "min": null,
2079
2174
  "max": null,
@@ -2082,12 +2177,12 @@
2082
2177
  "advanced": false,
2083
2178
  "tab": "xAI"
2084
2179
  },
2085
- "remote_tools.xai.sources.x": {
2180
+ "remote_tools.xai.code_execution": {
2086
2181
  "section": "remote_tools",
2087
2182
  "type": "bool",
2088
2183
  "slider": false,
2089
- "label": "settings.remote_tools.xai.sources.x",
2090
- "description": "settings.remote_tools.xai.sources.x.desc",
2184
+ "label": "settings.remote_tools.xai.code_execution",
2185
+ "description": "settings.remote_tools.xai.code_execution.desc",
2091
2186
  "value": true,
2092
2187
  "min": null,
2093
2188
  "max": null,
@@ -2096,12 +2191,12 @@
2096
2191
  "advanced": false,
2097
2192
  "tab": "xAI"
2098
2193
  },
2099
- "remote_tools.xai.sources.news": {
2194
+ "remote_tools.xai.mcp": {
2100
2195
  "section": "remote_tools",
2101
2196
  "type": "bool",
2102
2197
  "slider": false,
2103
- "label": "settings.remote_tools.xai.sources.news",
2104
- "description": "settings.remote_tools.xai.sources.news.desc",
2198
+ "label": "settings.remote_tools.xai.mcp",
2199
+ "description": "settings.remote_tools.xai.mcp.desc",
2105
2200
  "value": true,
2106
2201
  "min": null,
2107
2202
  "max": null,
@@ -2110,6 +2205,54 @@
2110
2205
  "advanced": false,
2111
2206
  "tab": "xAI"
2112
2207
  },
2208
+ "remote_tools.xai.mcp.args": {
2209
+ "section": "remote_tools",
2210
+ "type": "textarea",
2211
+ "slider": false,
2212
+ "label": "settings.remote_tools.xai.mcp.args",
2213
+ "description": "settings.remote_tools.xai.mcp.args.desc",
2214
+ "value": "",
2215
+ "min": null,
2216
+ "max": null,
2217
+ "multiplier": null,
2218
+ "step": null,
2219
+ "advanced": false,
2220
+ "tab": "xAI",
2221
+ "urls": {
2222
+ "xAI Docs": "https://docs.x.ai/docs/guides/tools/remote-mcp-tools"
2223
+ }
2224
+ },
2225
+ "remote_tools.xai.collections": {
2226
+ "section": "remote_tools",
2227
+ "type": "bool",
2228
+ "slider": false,
2229
+ "label": "settings.remote_tools.xai.collections",
2230
+ "description": "settings.remote_tools.xai.collections.desc",
2231
+ "value": true,
2232
+ "min": null,
2233
+ "max": null,
2234
+ "multiplier": null,
2235
+ "step": null,
2236
+ "advanced": false,
2237
+ "tab": "xAI"
2238
+ },
2239
+ "remote_tools.xai.collections.args": {
2240
+ "section": "remote_tools",
2241
+ "type": "text",
2242
+ "slider": false,
2243
+ "label": "settings.remote_tools.xai.collections.args",
2244
+ "description": "settings.remote_tools.xai.collections.args.desc",
2245
+ "value": "",
2246
+ "min": null,
2247
+ "max": null,
2248
+ "multiplier": null,
2249
+ "step": null,
2250
+ "advanced": false,
2251
+ "tab": "xAI",
2252
+ "urls": {
2253
+ "xAI Docs": "https://docs.x.ai/docs/guides/tools/collections-search-tool"
2254
+ }
2255
+ },
2113
2256
  "llama.idx.list": {
2114
2257
  "section": "llama-index",
2115
2258
  "type": "dict",
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#686868"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640v242q-18-14-38-23t-42-19v-200H447l-80-80H160v480h120v80H160ZM640-40q-91 0-168-48T360-220q35-84 112-132t168-48q91 0 168 48t112 132q-35 84-112 132T640-40Zm0-80q57 0 107.5-26t82.5-74q-32-48-82.5-74T640-320q-57 0-107.5 26T450-220q32 48 82.5 74T640-120Zm0-40q-25 0-42.5-17.5T580-220q0-25 17.5-42.5T640-280q25 0 42.5 17.5T700-220q0 25-17.5 42.5T640-160Zm-480-80v-480 277-37 240Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#686868"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640v249q-51-42-112.5-65.5T640-480q-143 0-247.5 94T252-160h-92ZM640-40q-91 0-168-48T360-220q35-84 112-132t168-48q91 0 168 48t112 132q-35 84-112 132T640-40Zm0-80q42 0 71-29t29-71q0-42-29-71t-71-29q-42 0-71 29t-29 71q0 42 29 71t71 29Zm0-40q-25 0-42.5-17.5T580-220q0-25 17.5-42.5T640-280q25 0 42.5 17.5T700-220q0 25-17.5 42.5T640-160Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#686868"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640H447l-80-80H160v480l96-320h684L837-217q-8 26-29.5 41.5T760-160H160Zm84-80h516l72-240H316l-72 240Zm0 0 72-240-72 240Zm-84-400v-80 80Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#686868"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640H160v400l96-320h684L837-217q-8 26-29.5 41.5T760-160H160Z"/></svg>
@@ -291,11 +291,11 @@ confirm.profile.delete = Sind Sie sicher, dass Sie das Profil löschen möchten?
291
291
  confirm.profile.delete_all = Sind Sie sicher, dass Sie das Profil samt aller Konfigurationsdateien und Benutzerdateien im Profil-Arbeitsverzeichnis löschen möchten?
292
292
  confirm.profile.reset = Sind Sie sicher, dass Sie das Profil auf die Standardeinstellungen zurücksetzen möchten? WARNUNG: Alle Konfigurationsdateien und die Kontext-Datenbank werden entfernt! Das Datenverzeichnis wird beibehalten - um es zu entfernen, müssen Sie es manuell löschen oder die Lösch-Option verwenden.
293
293
  confirm.remote_store.clear = Vektor-Speicher leeren (nur lokal)?
294
+ confirm.remote_store.files.truncate = Sind Sie sicher, dass Sie alle Dateien von allen Speichern entfernen möchten?
295
+ confirm.remote_store.files.truncate.store = Sind Sie sicher, dass Sie alle Dateien aus dem ausgewählten Speicher entfernen möchten?
294
296
  confirm.remote_store.import = Alle Vektor-Speicher von API importieren?
295
297
  confirm.remote_store.import_files = Alle Dateien von API importieren?
296
298
  confirm.remote_store.import_files.store = Aktuelle Speicherdateien von API importieren?
297
- confirm.remote_store.openai.files.truncate = Sind Sie sicher, dass Sie alle Dateien von allen Speichern entfernen möchten?
298
- confirm.remote_store.openai.files.truncate.store = Sind Sie sicher, dass Sie alle Dateien aus dem ausgewählten Speicher entfernen möchten?
299
299
  confirm.remote_store.refresh = Alle Speicher aktualisieren?
300
300
  confirm.remote_store.truncate = Alle Vektor-Speicher in der API löschen?
301
301
  context.btn.clear = Erinnerung löschen
@@ -439,6 +439,7 @@ dialog.profile.status.removed = Profil von der Liste entfernt
439
439
  dialog.profile.status.updated = Profil aktualisiert.
440
440
  dialog.profile.tip = Durch das Erstellen neuer Profile können Sie separate Einstellungen, unterschiedliche Kontexthistorien und Benutzerdaten verwenden und schnell zwischen ihnen wechseln.
441
441
  dialog.profile.workdir.label = Arbeitsverzeichnis (Verzeichnis für Konfigurationsdateien und Benutzerdaten)
442
+ dialog.remote_store = Externe Vektorbasen (OpenAI, Google, etc.)
442
443
  dialog.remote_store.alert.assign = Bitte zuerst einen Vektor-Speicher dem Assistenten zuweisen.
443
444
  dialog.remote_store.alert.select = Bitte zuerst Vektor-Speicher auswählen.
444
445
  dialog.remote_store.btn.close = Abbrechen
@@ -1140,9 +1141,9 @@ profile.current.suffix = (aktuell)
1140
1141
  remote_store.expire_days = Ablauftage
1141
1142
  remote_store.expire_days.desc = 0 = Niemals
1142
1143
  remote_store.files.suffix = Dateien
1144
+ remote_store.hide_threads = Thread-Vektor-Speicher verbergen
1143
1145
  remote_store.id = ID
1144
1146
  remote_store.name = Name
1145
- remote_store.openai.hide_threads = Thread-Vektor-Speicher verbergen
1146
1147
  remote_store.status = Status
1147
1148
  remote_store.thread_only = (nur aktueller Thread)
1148
1149
  reset.description = Beschreibung
@@ -1279,7 +1280,9 @@ settings.ctx.attachment.verbose = Ausführlicher Modus
1279
1280
  settings.ctx.attachment.verbose.desc = Verwenden Sie die Anhänge in der Konsole
1280
1281
  settings.ctx.audio = Audio-Symbol immer anzeigen
1281
1282
  settings.ctx.auto_summary = Kontext automatisch zusammenfassen
1283
+ settings.ctx.auto_summary.desc = Aktivieren Sie die automatische Zusammenfassung des Kontexts in der Konversationsliste links.
1282
1284
  settings.ctx.auto_summary.model = Modell für automatische Zusammenfassung verwendet
1285
+ settings.ctx.auto_summary.model.desc = Wählen Sie ein Modell, das zum Zusammenfassen des Kontexts und zur Erstellung des Titels in der Konversationsliste links verwendet wird.
1283
1286
  settings.ctx.code_interpreter = Ausgabe des Code-Interpreters anzeigen
1284
1287
  settings.ctx.code_interpreter.desc = Wenn diese Option aktiviert ist, wird die Ausgabe des Code-Interpreters in der Assistant-API in Echtzeit angezeigt (im Stream-Modus).
1285
1288
  settings.ctx.convert_lists = Listen in Absätze umwandeln