pygpt-net 2.4.44__py3-none-any.whl → 2.4.46__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.
- CHANGELOG.md +10 -0
- README.md +32 -8
- pygpt_net/CHANGELOG.txt +10 -0
- pygpt_net/__init__.py +2 -2
- pygpt_net/controller/chat/text.py +5 -2
- pygpt_net/controller/idx/__init__.py +2 -1
- pygpt_net/controller/lang/mapping.py +32 -9
- pygpt_net/controller/settings/__init__.py +2 -2
- pygpt_net/core/idx/chat.py +71 -11
- pygpt_net/data/config/config.json +7 -2
- pygpt_net/data/config/models.json +311 -14
- pygpt_net/data/config/modes.json +2 -2
- pygpt_net/data/config/settings.json +104 -11
- pygpt_net/data/config/settings_section.json +3 -0
- pygpt_net/data/css/style.css +1 -0
- pygpt_net/data/locale/locale.de.ini +19 -3
- pygpt_net/data/locale/locale.en.ini +20 -3
- pygpt_net/data/locale/locale.es.ini +19 -3
- pygpt_net/data/locale/locale.fr.ini +19 -3
- pygpt_net/data/locale/locale.it.ini +19 -3
- pygpt_net/data/locale/locale.pl.ini +19 -3
- pygpt_net/data/locale/locale.uk.ini +19 -3
- pygpt_net/data/locale/locale.zh.ini +19 -3
- pygpt_net/data/locale/plugin.cmd_web.de.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.en.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.es.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.it.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +1 -1
- pygpt_net/data/locale/plugin.mailer.en.ini +9 -9
- pygpt_net/provider/core/config/patch.py +22 -1
- pygpt_net/provider/core/model/patch.py +156 -1
- pygpt_net/provider/loaders/hub/google/gmail.py +2 -2
- pygpt_net/provider/loaders/web_github_issues.py +13 -0
- pygpt_net/provider/loaders/web_github_repo.py +10 -0
- pygpt_net/provider/loaders/web_google_gmail.py +3 -2
- pygpt_net/provider/loaders/web_rss.py +1 -0
- pygpt_net/provider/loaders/web_sitemap.py +7 -2
- pygpt_net/tools/indexer/ui/web.py +14 -3
- pygpt_net/ui/dialog/settings.py +22 -7
- pygpt_net/ui/widget/dialog/url.py +14 -3
- {pygpt_net-2.4.44.dist-info → pygpt_net-2.4.46.dist-info}/METADATA +33 -9
- {pygpt_net-2.4.44.dist-info → pygpt_net-2.4.46.dist-info}/RECORD +48 -48
- {pygpt_net-2.4.44.dist-info → pygpt_net-2.4.46.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.44.dist-info → pygpt_net-2.4.46.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.44.dist-info → pygpt_net-2.4.46.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"api_key": {
|
3
|
-
"section": "
|
3
|
+
"section": "api_keys",
|
4
4
|
"type": "text",
|
5
5
|
"slider": false,
|
6
6
|
"label": "settings.api_key",
|
@@ -13,12 +13,16 @@
|
|
13
13
|
"extra": {
|
14
14
|
"bold": true
|
15
15
|
},
|
16
|
+
"urls": {
|
17
|
+
"OpenAI API Keys": "https://platform.openai.com/account/api-keys"
|
18
|
+
},
|
16
19
|
"secret": true,
|
17
20
|
"persist": true,
|
18
|
-
"advanced": false
|
21
|
+
"advanced": false,
|
22
|
+
"tab": "OpenAI"
|
19
23
|
},
|
20
24
|
"organization_key": {
|
21
|
-
"section": "
|
25
|
+
"section": "api_keys",
|
22
26
|
"type": "text",
|
23
27
|
"slider": false,
|
24
28
|
"label": "settings.organization_key",
|
@@ -30,15 +34,13 @@
|
|
30
34
|
"extra": {
|
31
35
|
"bold": true
|
32
36
|
},
|
33
|
-
"urls": {
|
34
|
-
"OpenAI API Keys": "https://platform.openai.com/account/api-keys"
|
35
|
-
},
|
36
37
|
"secret": true,
|
37
38
|
"persist": true,
|
38
|
-
"advanced": false
|
39
|
+
"advanced": false,
|
40
|
+
"tab": "OpenAI"
|
39
41
|
},
|
40
42
|
"api_endpoint": {
|
41
|
-
"section": "
|
43
|
+
"section": "api_keys",
|
42
44
|
"type": "text",
|
43
45
|
"slider": false,
|
44
46
|
"label": "settings.api_endpoint",
|
@@ -49,10 +51,11 @@
|
|
49
51
|
"multiplier": null,
|
50
52
|
"step": null,
|
51
53
|
"secret": false,
|
52
|
-
"advanced": false
|
54
|
+
"advanced": false,
|
55
|
+
"tab": "OpenAI"
|
53
56
|
},
|
54
57
|
"api_proxy": {
|
55
|
-
"section": "
|
58
|
+
"section": "api_keys",
|
56
59
|
"type": "text",
|
57
60
|
"slider": false,
|
58
61
|
"label": "settings.api_proxy",
|
@@ -63,7 +66,97 @@
|
|
63
66
|
"multiplier": null,
|
64
67
|
"step": null,
|
65
68
|
"secret": false,
|
66
|
-
"advanced": false
|
69
|
+
"advanced": false,
|
70
|
+
"tab": "OpenAI"
|
71
|
+
},
|
72
|
+
"api_key_google": {
|
73
|
+
"section": "api_keys",
|
74
|
+
"type": "text",
|
75
|
+
"slider": false,
|
76
|
+
"label": "settings.api_key.google",
|
77
|
+
"description": "settings.api_key.google.desc",
|
78
|
+
"value": "",
|
79
|
+
"min": null,
|
80
|
+
"max": null,
|
81
|
+
"multiplier": null,
|
82
|
+
"step": null,
|
83
|
+
"extra": {
|
84
|
+
"bold": true
|
85
|
+
},
|
86
|
+
"secret": true,
|
87
|
+
"persist": true,
|
88
|
+
"advanced": false,
|
89
|
+
"tab": "Google"
|
90
|
+
},
|
91
|
+
"api_key_anthropic": {
|
92
|
+
"section": "api_keys",
|
93
|
+
"type": "text",
|
94
|
+
"slider": false,
|
95
|
+
"label": "settings.api_key.anthropic",
|
96
|
+
"description": "settings.api_key.anthropic.desc",
|
97
|
+
"value": "",
|
98
|
+
"min": null,
|
99
|
+
"max": null,
|
100
|
+
"multiplier": null,
|
101
|
+
"step": null,
|
102
|
+
"extra": {
|
103
|
+
"bold": true
|
104
|
+
},
|
105
|
+
"secret": true,
|
106
|
+
"persist": true,
|
107
|
+
"advanced": false,
|
108
|
+
"tab": "Anthropic"
|
109
|
+
},
|
110
|
+
"api_key_hugging_face": {
|
111
|
+
"section": "api_keys",
|
112
|
+
"type": "text",
|
113
|
+
"slider": false,
|
114
|
+
"label": "settings.api_key.hugging_face",
|
115
|
+
"description": "settings.api_key.hugging_face.desc",
|
116
|
+
"value": "",
|
117
|
+
"min": null,
|
118
|
+
"max": null,
|
119
|
+
"multiplier": null,
|
120
|
+
"step": null,
|
121
|
+
"extra": {
|
122
|
+
"bold": true
|
123
|
+
},
|
124
|
+
"secret": true,
|
125
|
+
"persist": true,
|
126
|
+
"advanced": false,
|
127
|
+
"tab": "HuggingFace"
|
128
|
+
},
|
129
|
+
"api_azure_version": {
|
130
|
+
"section": "api_keys",
|
131
|
+
"type": "text",
|
132
|
+
"slider": false,
|
133
|
+
"label": "settings.api_azure_version",
|
134
|
+
"description": "settings.api_azure_version.desc",
|
135
|
+
"value": "",
|
136
|
+
"min": null,
|
137
|
+
"max": null,
|
138
|
+
"multiplier": null,
|
139
|
+
"step": null,
|
140
|
+
"secret": false,
|
141
|
+
"persist": true,
|
142
|
+
"advanced": false,
|
143
|
+
"tab": "Azure OpenAI"
|
144
|
+
},
|
145
|
+
"api_azure_endpoint": {
|
146
|
+
"section": "api_keys",
|
147
|
+
"type": "text",
|
148
|
+
"slider": false,
|
149
|
+
"label": "settings.api_azure_endpoint",
|
150
|
+
"description": "settings.api_azure_endpoint.desc",
|
151
|
+
"value": "",
|
152
|
+
"min": null,
|
153
|
+
"max": null,
|
154
|
+
"multiplier": null,
|
155
|
+
"step": null,
|
156
|
+
"secret": false,
|
157
|
+
"persist": true,
|
158
|
+
"advanced": false,
|
159
|
+
"tab": "Azure OpenAI"
|
67
160
|
},
|
68
161
|
"app.env": {
|
69
162
|
"section": "general",
|
pygpt_net/data/css/style.css
CHANGED
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Werkzeug: Abruf
|
|
100
100
|
assistant.vector_store = Vektor Speicher
|
101
101
|
attachments.auto_index = Automatische Indizierung beim Hochladen
|
102
102
|
attachments.btn.add = Datei hinzufügen
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Web
|
104
104
|
attachments.btn.clear = Dateien löschen
|
105
105
|
attachments.capture_clear = Beim Erfassen löschen
|
106
106
|
attachments.clear.confirm = Liste löschen?
|
@@ -346,7 +346,7 @@ dialog.start.title = API-KEY ist noch nicht konfiguriert
|
|
346
346
|
dialog.start.title.text = Ihr API-Schlüssel ist noch nicht konfiguriert...\nSie erhalten einen API-Schlüssel, indem Sie ein Konto auf der OpenAI-Website registrieren:
|
347
347
|
dialog.url.dismiss = Abbrechen
|
348
348
|
dialog.url.tip = Geben Sie die URL der Webseite an, die Sie als zusätzlichen Kontext anfügen möchten, z.B. https://de.wikipedia.org/wiki/Elon_Musk, oder ein YouTube-Video zur Transkription, z.B. https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title = Web
|
349
|
+
dialog.url.title = Fügen Sie Web- oder externe Inhalte als zusätzlichen Kontext hinzu.
|
350
350
|
dialog.url.update = Hinzufügen
|
351
351
|
dialog.workdir.change.confirm = Sind Sie sicher, dass Sie das Arbeitsverzeichnis zu folgendem ändern/verschieben möchten:\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = Verzeichnis ist nicht leer! Vorgang wird abgebrochen.
|
@@ -751,10 +751,20 @@ settings.agent.llama.steps.desc = Maximale Schritte in einer Iteration, bevor da
|
|
751
751
|
settings.agent.llama.verbose = Ausführlich (Protokollausgabe in die Konsole)
|
752
752
|
settings.agent.mode = Interner Modus für Agenten
|
753
753
|
settings.agent.mode.desc = Interner Modus für die Verwendung im Agentenmodus
|
754
|
+
settings.api_azure_endpoint = API-Endpunkt
|
755
|
+
settings.api_azure_endpoint.desc = Azure OpenAI API-Endpunkt, https://<Ihr-Ressourcenname>.openai.azure.com/
|
756
|
+
settings.api_azure_version = OpenAI API-Version
|
757
|
+
settings.api_azure_version.desc = Azure OpenAI API-Version, z.B. 2023-07-01-preview
|
754
758
|
settings.api_endpoint = API-Endpunkt
|
755
759
|
settings.api_endpoint.desc = OpenAI API-Endpunkt-URL (oder kompatibel), standardmäßig: https://api.openai.com/v1
|
756
760
|
settings.api_key = OpenAI API-KEY
|
761
|
+
settings.api_key.anthropic = Anthropic API-SCHLÜSSEL
|
762
|
+
settings.api_key.anthropic.desc = Erforderlich für die Anthropic-API und Claude-Modelle.
|
757
763
|
settings.api_key.desc = Erforderlich für das OpenAI-API. Wenn Sie benutzerdefinierte Endpunkte oder lokale APIs verwenden möchten, können Sie hier jeden Wert eingeben.
|
764
|
+
settings.api_key.google = Google API-SCHLÜSSEL
|
765
|
+
settings.api_key.google.desc = Erforderlich für die Google-API und Gemini-Modelle.
|
766
|
+
settings.api_key.hugging_face = HuggingFace API-SCHLÜSSEL
|
767
|
+
settings.api_key.hugging_face.desc = Erforderlich für die HuggingFace-API.
|
758
768
|
settings.app.env = Anwendungsumgebung (os.environ)
|
759
769
|
settings.app.env.desc = Zusätzliche Umgebungsvariablen, die beim Start der Anwendung gesetzt werden sollen
|
760
770
|
settings.audio.input.channels = Kanäle
|
@@ -867,6 +877,12 @@ settings.render.plain = Markdown-Formatierung in der Ausgabe deaktivieren (RAW-T
|
|
867
877
|
settings.restart.required = Ein Neustart der Anwendung ist notwendig, damit die Änderungen für diese Option übernommen werden.
|
868
878
|
settings.section.access = Barrierefreiheit
|
869
879
|
settings.section.agent = Agenten und Experten
|
880
|
+
settings.section.api_keys = API-Schlüssel
|
881
|
+
settings.section.api_keys.anthropic = Anthropic
|
882
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
883
|
+
settings.section.api_keys.google = Google
|
884
|
+
settings.section.api_keys.huggingface = HuggingFace
|
885
|
+
settings.section.api_keys.openai = OpenAI
|
870
886
|
settings.section.audio = Audio
|
871
887
|
settings.section.ctx = Kontext
|
872
888
|
settings.section.files = Dateien und Anhänge
|
@@ -937,7 +953,7 @@ tip.input.attachments.uploaded = Hier ist eine Liste von Dateien, die im Assista
|
|
937
953
|
tip.output.tab.calendar = Mit dem Kalender können Sie zu ausgewählten Gesprächen von einem bestimmten Tag navigieren. Klicken Sie in den Kalender auf einen Tag, um die Anzeige des Chat-Verlaufs auf diesen Tag zu beschränken. Sie können auch Tagesnotizen erstellen und ihnen farbige Etiketten zuweisen.
|
938
954
|
tip.output.tab.draw = Sie können das Zeichenwerkzeug für schnelle Skizzen oder das Erfassen eines Bildes von der Kamera verwenden, und dann solche Bilder im Vision-Modus zur Analyse an die KI senden. Sie können hier ein Bild mit der Kamera erfassen oder ein Bild von der Festplatte öffnen. Wenn Sie ein Bild verwenden, wird es als Anhang in der gesendeten Nachricht enthalten sein.
|
939
955
|
tip.output.tab.files = Dieses Verzeichnis mit Arbeitsdateien befindet sich auf Ihrer Festplatte. Die Dateien hier sind für KI zum Lesen zugänglich. KI kann Dateien lesen und schreiben sowie Code aus diesem Verzeichnis ausführen. Sie können dieses Verzeichnis lokal auf Ihrem System öffnen und beliebige Dateien hierhin verschieben. Sie können auch die Dateien mit Llama-Index indizieren, damit sie als zusätzliche Wissens Quelle dienen.
|
940
|
-
tip.output.tab.notepad =
|
956
|
+
tip.output.tab.notepad = Der Notizblock kann als Werkzeug zum Notieren und Speichern von Informationen dienen. Sie können hier beliebigen Text speichern, Text aus dem Chatfenster kopieren und alle Informationen werden automatisch gespeichert. Sie können weitere Notizblöcke erstellen, indem Sie einen neuen Tab erstellen.
|
941
957
|
tip.tokens.ctx = Kontext (Erinnerung): in Gebrauch / alle - Token
|
942
958
|
tip.tokens.input = Token: Benutzereingabeaufforderung + Systemaufforderung + Kontext + extra + Anhänge = Summe / Maximum
|
943
959
|
tip.toolbox.assistants = Die Liste der Assistenten zeigt die erstellten Assistenten, die auf dem entfernten Server arbeiten. Alle Änderungen werden mit dem entfernten Assistenten synchronisiert.
|
@@ -378,7 +378,7 @@ dialog.start.title = Api Key is not configured yet
|
|
378
378
|
dialog.start.title.text = Your API key is not configured yet...\nYou will obtain an API key by registering an account on the OpenAI website:
|
379
379
|
dialog.url.dismiss = Cancel
|
380
380
|
dialog.url.tip = Provide the URL of the web page you want to attach as additional context, e.g., https://pl.wikipedia.org/wiki/Elon_Musk, or a YouTube video to transcribe, e.g., https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
381
|
-
dialog.url.title =
|
381
|
+
dialog.url.title = Add web or external content to provide additional context.
|
382
382
|
dialog.url.update = Add
|
383
383
|
dialog.workdir.change.confirm = Are you sure you want to change/move workdir to:\n{path}?
|
384
384
|
dialog.workdir.change.empty.alert = Directory is not empty! Aborting.
|
@@ -920,10 +920,20 @@ settings.agent.llama.steps.desc = Max steps in one iteration before goal achieve
|
|
920
920
|
settings.agent.llama.verbose = Verbose (log output to console)
|
921
921
|
settings.agent.mode = Sub-mode for agents
|
922
922
|
settings.agent.mode.desc = Sub-mode to use in Agent (Autonomous) mode
|
923
|
+
settings.api_azure_endpoint = API Endpoint
|
924
|
+
settings.api_azure_endpoint.desc = Azure OpenAI API endpoint, https://<your-resource-name>.openai.azure.com/
|
925
|
+
settings.api_azure_version = OpenAI API version
|
926
|
+
settings.api_azure_version.desc = Azure OpenAI API version, e.g. 2023-07-01-preview
|
923
927
|
settings.api_endpoint = API Endpoint
|
924
928
|
settings.api_endpoint.desc = OpenAI API (or compatible) endpoint URL, default: https://api.openai.com/v1
|
925
929
|
settings.api_key = OpenAI API KEY
|
930
|
+
settings.api_key.anthropic = Anthropic API KEY
|
931
|
+
settings.api_key.anthropic.desc = Required for the Anthropic API and Claude models.
|
926
932
|
settings.api_key.desc = Required for the OpenAI API. If you wish to use custom endpoints or local APIs, then you may enter any value here.
|
933
|
+
settings.api_key.google = Google API KEY
|
934
|
+
settings.api_key.google.desc = Required for the Google API and Gemini models.
|
935
|
+
settings.api_key.hugging_face = HuggingFace API KEY
|
936
|
+
settings.api_key.hugging_face.desc = Required for the HuggingFace API.
|
927
937
|
settings.api_proxy = Proxy address
|
928
938
|
settings.api_proxy.desc = Optional, proxy for OpenAI API, e.g. http://proxy.example.com or socks5://user:pass@host:port
|
929
939
|
settings.app.env = Application environment (os.environ)
|
@@ -1094,6 +1104,12 @@ settings.section.agent = Agents and experts
|
|
1094
1104
|
settings.section.agent.autonomous = Autonomous
|
1095
1105
|
settings.section.agent.experts = Experts
|
1096
1106
|
settings.section.agent.llama = Agents
|
1107
|
+
settings.section.api_keys = API Keys
|
1108
|
+
settings.section.api_keys.anthropic = Anthropic
|
1109
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
1110
|
+
settings.section.api_keys.google = Google
|
1111
|
+
settings.section.api_keys.huggingface = HuggingFace
|
1112
|
+
settings.section.api_keys.openai = OpenAI
|
1097
1113
|
settings.section.audio = Audio
|
1098
1114
|
settings.section.ctx = Context
|
1099
1115
|
settings.section.developer = Developer
|
@@ -1177,7 +1193,7 @@ tip.input.attachments.uploaded = Here is a list of files uploaded to the server
|
|
1177
1193
|
tip.output.tab.calendar = Using the calendar, you can navigate back to selected conversations from a specific day. Click on a day in the calendar to limit the display of chat history to that day. You can also create day notes and assign them colorful labels.
|
1178
1194
|
tip.output.tab.draw = You can use the drawing tool for quick sketching or capturing an image from the camera, and then send such images to the AI in Vision mode for analysis. You can capture an image with the camera here or open an image from the disk. When using an image, it will be included in the sent message as an attachment.
|
1179
1195
|
tip.output.tab.files = This working files directory is on your disk. The files here are accessible for AI. AI can write and read files, as well as run code from this directory. You can open this directory locally on your system and place any files here. You can also index the files from here with LlamaIndex, so they serve as an additional knowledge source.
|
1180
|
-
tip.output.tab.notepad = The notepad can serve as a tool for taking notes and storing information. You can keep any text here, copy text from the chat window, and all information will be automatically saved. You can create more notepads
|
1196
|
+
tip.output.tab.notepad = The notepad can serve as a tool for taking notes and storing information. You can keep any text here, copy text from the chat window, and all information will be automatically saved. You can create more notepads by creating a new Tab.
|
1181
1197
|
tip.tokens.ctx = Context (memory): in use / all - tokens
|
1182
1198
|
tip.tokens.input = Tokens: input prompt + system prompt + context + extra + attachments = sum / max
|
1183
1199
|
tip.toolbox.assistants = The list of assistants shows the assistants created and operating on the remote server. Any changes will be synchronized with the remote assistant.
|
@@ -1200,7 +1216,8 @@ toolbox.indexes.label = Index
|
|
1200
1216
|
toolbox.llama_index.label = LlamaIndex
|
1201
1217
|
toolbox.llama_index.mode.chat = Chat
|
1202
1218
|
toolbox.llama_index.mode.label = Mode
|
1203
|
-
toolbox.llama_index.mode.
|
1219
|
+
toolbox.llama_index.mode.retrieval = Retrieve Only
|
1220
|
+
toolbox.llama_index.mode.query = Query the Index Only
|
1204
1221
|
toolbox.mode.label = Mode
|
1205
1222
|
toolbox.model.label = Model
|
1206
1223
|
toolbox.name.ai = AI Name
|
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Herramienta: recuperación
|
|
100
100
|
assistant.vector_store = Almacén de vectores
|
101
101
|
attachments.auto_index = Indexación automática al subir
|
102
102
|
attachments.btn.add = Añadir archivo
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Web
|
104
104
|
attachments.btn.clear = Limpiar archivos
|
105
105
|
attachments.capture_clear = Limpiar al capturar
|
106
106
|
attachments.clear.confirm = ¿Limpiar la lista?
|
@@ -346,7 +346,7 @@ dialog.start.title = La API KEY aún no está configurada
|
|
346
346
|
dialog.start.title.text = Su clave de API aún no está configurada...\nObtendrá una clave de API registrando una cuenta en el sitio web de OpenAI:
|
347
347
|
dialog.url.dismiss = Cancelar
|
348
348
|
dialog.url.tip = Proporcione la URL de la página web que desea adjuntar como contexto adicional, por ejemplo, https://es.wikipedia.org/wiki/Elon_Musk, o un video de YouTube para transcribir, por ejemplo, https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title =
|
349
|
+
dialog.url.title = Añadir contenido web o externo como contexto adicional.
|
350
350
|
dialog.url.update = Agregar
|
351
351
|
dialog.workdir.change.confirm = ¿Está seguro de querer cambiar/mover el directorio de trabajo a:\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = ¡El directorio no está vacío! Cancelando la operación.
|
@@ -750,10 +750,20 @@ settings.agent.llama.steps.desc = Pasos máximos en una iteración antes de que
|
|
750
750
|
settings.agent.llama.verbose = Verboso (salida de registro a la consola)
|
751
751
|
settings.agent.mode = Modo interno para agentes
|
752
752
|
settings.agent.mode.desc = Modo interno para usar en modo Agente
|
753
|
+
settings.api_azure_endpoint = Punto final de la API
|
754
|
+
settings.api_azure_endpoint.desc = Punto final de la API de Azure OpenAI, https://<tu-nombre-de-recurso>.openai.azure.com/
|
755
|
+
settings.api_azure_version = Versión de la API de OpenAI
|
756
|
+
settings.api_azure_version.desc = Versión de la API de Azure OpenAI, p.ej., 2023-07-01-preview
|
753
757
|
settings.api_endpoint = Punto final de la API
|
754
758
|
settings.api_endpoint.desc = URL del punto final de la API de OpenAI (o compatible), por defecto: https://api.openai.com/v1
|
755
759
|
settings.api_key = Clave API de OpenAI
|
760
|
+
settings.api_key.anthropic = CLAVE API de Anthropic
|
761
|
+
settings.api_key.anthropic.desc = Requerido para la API de Anthropic y los modelos Claude.
|
756
762
|
settings.api_key.desc = Requerido para la API de OpenAI. Si deseas usar puntos finales personalizados o APIs locales, puedes introducir aquí cualquier valor.
|
763
|
+
settings.api_key.google = CLAVE API de Google
|
764
|
+
settings.api_key.google.desc = Requerido para la API de Google y los modelos Gemini.
|
765
|
+
settings.api_key.hugging_face = CLAVE API de HuggingFace
|
766
|
+
settings.api_key.hugging_face.desc = Requerido para la API de HuggingFace.
|
757
767
|
settings.app.env = Entorno de la aplicación (os.environ)
|
758
768
|
settings.app.env.desc = Variables de entorno adicionales para configurar en el inicio de la aplicación
|
759
769
|
settings.audio.input.channels = Canaux
|
@@ -867,6 +877,12 @@ settings.render.plain = Desactivar el formato markdown en la salida (modo de tex
|
|
867
877
|
settings.restart.required = Es necesario reiniciar la aplicación para que los cambios en esta opción se apliquen.
|
868
878
|
settings.section.access = Accesibilidad
|
869
879
|
settings.section.agent = Agentes y expertos
|
880
|
+
settings.section.api_keys = Claves API
|
881
|
+
settings.section.api_keys.anthropic = Anthropic
|
882
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
883
|
+
settings.section.api_keys.google = Google
|
884
|
+
settings.section.api_keys.huggingface = HuggingFace
|
885
|
+
settings.section.api_keys.openai = OpenAI
|
870
886
|
settings.section.audio = Audio
|
871
887
|
settings.section.ctx = Contexto
|
872
888
|
settings.section.files = Archivos y adjuntos
|
@@ -937,7 +953,7 @@ tip.input.attachments.uploaded = Aquí tienes una lista de archivos subidos al s
|
|
937
953
|
tip.output.tab.calendar = Usando el calendario, puedes navegar de vuelta a conversaciones seleccionadas de un día específico. Haz clic en un día en el calendario para limitar la visualización del historial de chat a ese día. También puedes crear notas diarias y asignarles etiquetas de colores.
|
938
954
|
tip.output.tab.draw = Puedes usar la herramienta de dibujo para hacer bocetos rápidos o capturar una imagen de la cámara, y luego enviar dichas imágenes a la IA en modo Visión para su análisis. Puedes capturar una imagen con la cámara aquí o abrir una imagen desde el disco. Al usar una imagen, se incluirá en el mensaje enviado como un adjunto.
|
939
955
|
tip.output.tab.files = Este directorio de archivos de trabajo se encuentra en tu disco. Los archivos aquí son accesibles para que la IA los lea. La IA puede escribir y leer archivos, así como ejecutar código desde este directorio. Puedes abrir este directorio localmente en tu sistema y colocar cualquier archivo aquí. También puedes indexar los archivos con LlamaIndex, para que sirvan como una fuente de conocimiento adicional.
|
940
|
-
tip.output.tab.notepad = El bloc de notas puede servir como una herramienta para tomar notas y almacenar información. Puedes mantener cualquier texto aquí, copiar texto
|
956
|
+
tip.output.tab.notepad = El bloc de notas puede servir como una herramienta para tomar notas y almacenar información. Puedes mantener cualquier texto aquí, copiar texto desde la ventana de chat, y toda la información se guardará automáticamente. Puedes crear más blocs de notas creando una nueva pestaña.
|
941
957
|
tip.tokens.ctx = Contexto (memoria): en uso / todos - tokens
|
942
958
|
tip.tokens.input = Fichas: indicación del usuario + indicación del sistema + contexto + adicional + adjuntos = suma / máximo
|
943
959
|
tip.toolbox.assistants = La lista de asistentes muestra los asistentes creados y operando en el servidor remoto. Cualquier cambio se sincronizará con el asistente remoto.
|
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Outil : récupération
|
|
100
100
|
assistant.vector_store = Base vectorielle
|
101
101
|
attachments.auto_index = Indexation automatique lors du téléchargement
|
102
102
|
attachments.btn.add = Ajouter un fichier
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Web
|
104
104
|
attachments.btn.clear = Effacer les fichiers
|
105
105
|
attachments.capture_clear = Effacer à la capture
|
106
106
|
attachments.clear.confirm = Effacer la liste ?
|
@@ -346,7 +346,7 @@ dialog.start.title = La CLÉ API n’est pas encore configurée
|
|
346
346
|
dialog.start.title.text = Votre clé API n'est pas encore configurée...\nVous obtiendrez une clé API en vous inscrivant sur le site web d'OpenAI :
|
347
347
|
dialog.url.dismiss = Annuler
|
348
348
|
dialog.url.tip = Fournissez l'URL de la page Web que vous souhaitez joindre comme contexte supplémentaire, par exemple, https://fr.wikipedia.org/wiki/Elon_Musk, ou une vidéo YouTube à transcrire, par exemple, https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title =
|
349
|
+
dialog.url.title = Ajoutez du contenu web ou externe comme contexte supplémentaire.
|
350
350
|
dialog.url.update = Ajouter
|
351
351
|
dialog.workdir.change.confirm = Êtes-vous sûr de vouloir changer/déplacer le répertoire de travail vers :\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = Le répertoire n'est pas vide ! Opération annulée.
|
@@ -750,10 +750,20 @@ settings.agent.llama.steps.desc = Étapes maximales dans une itération avant qu
|
|
750
750
|
settings.agent.llama.verbose = Verbeux (sortie du journal vers la console)
|
751
751
|
settings.agent.mode = Mode interne pour les agents
|
752
752
|
settings.agent.mode.desc = Mode interne à utiliser en mode Agent
|
753
|
+
settings.api_azure_endpoint = Point de terminaison de l'API
|
754
|
+
settings.api_azure_endpoint.desc = Point de terminaison de l'API Azure OpenAI, https://<votre-nom-de-ressource>.openai.azure.com/
|
755
|
+
settings.api_azure_version = Version de l'API OpenAI
|
756
|
+
settings.api_azure_version.desc = Version de l'API Azure OpenAI, par exemple 2023-07-01-preview
|
753
757
|
settings.api_endpoint = Point de terminaison API
|
754
758
|
settings.api_endpoint.desc = URL du point de terminaison de l'API OpenAI (ou compatible), par défaut : https://api.openai.com/v1
|
755
759
|
settings.api_key = Clé API OpenAI
|
760
|
+
settings.api_key.anthropic = Clé API Anthropic
|
761
|
+
settings.api_key.anthropic.desc = Requis pour l'API Anthropic et les modèles Claude.
|
756
762
|
settings.api_key.desc = Requis pour l'API OpenAI. Si vous souhaitez utiliser des points de terminaison personnalisés ou des API locales, vous pouvez entrer n'importe quelle valeur ici.
|
763
|
+
settings.api_key.google = Clé API Google
|
764
|
+
settings.api_key.google.desc = Requis pour l'API Google et les modèles Gemini.
|
765
|
+
settings.api_key.hugging_face = Clé API HuggingFace
|
766
|
+
settings.api_key.hugging_face.desc = Requis pour l'API HuggingFace.
|
757
767
|
settings.app.env = Environnement de l'application (os.environ)
|
758
768
|
settings.app.env.desc = Variables d'environnement supplémentaires à définir au démarrage de l'application
|
759
769
|
settings.audio.input.channels = Canaux
|
@@ -867,6 +877,12 @@ settings.render.plain = Désactiver le formatage markdown dans la sortie (mode t
|
|
867
877
|
settings.restart.required = Un redémarrage de l'application est requis pour que les modifications de cette option soient appliquées.
|
868
878
|
settings.section.access = Accessibilité
|
869
879
|
settings.section.agent = Agents et experts
|
880
|
+
settings.section.api_keys = Clés API
|
881
|
+
settings.section.api_keys.anthropic = Anthropic
|
882
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
883
|
+
settings.section.api_keys.google = Google
|
884
|
+
settings.section.api_keys.huggingface = HuggingFace
|
885
|
+
settings.section.api_keys.openai = OpenAI
|
870
886
|
settings.section.audio = Audio
|
871
887
|
settings.section.ctx = Contexte
|
872
888
|
settings.section.files = Fichiers et pièces jointes
|
@@ -937,7 +953,7 @@ tip.input.attachments.uploaded = Voici une liste de fichiers téléchargés sur
|
|
937
953
|
tip.output.tab.calendar = En utilisant le calendrier, vous pouvez revenir à des conversations sélectionnées d'un jour spécifique. Cliquez sur un jour dans le calendrier pour limiter l'affichage de l'historique de chat à ce jour. Vous pouvez également créer des notes de jour et leur attribuer des étiquettes colorées.
|
938
954
|
tip.output.tab.draw = Vous pouvez utiliser l'outil de dessin pour esquisser rapidement ou capturer une image de la caméra, puis envoyer de telles images à l'IA en mode Vision pour analyse. Vous pouvez capturer une image avec la caméra ici ou ouvrir une image du disque. Lors de l'utilisation d'une image, elle sera incluse dans le message envoyé en tant que pièce jointe.
|
939
955
|
tip.output.tab.files = Ce répertoire de fichiers de travail se trouve sur votre disque. Les fichiers ici sont accessibles pour l'IA à lire. L'IA peut lire et écrire des fichiers, ainsi qu'exécuter du code à partir de ce répertoire. Vous pouvez ouvrir ce répertoire localement sur votre système et placer n'importe quels fichiers ici. Vous pouvez également indexer les fichiers avec LlamaIndex, afin qu'ils servent de source de connaissances supplémentaire.
|
940
|
-
tip.output.tab.notepad = Le bloc-notes peut servir d'outil pour prendre des notes et stocker des informations. Vous pouvez
|
956
|
+
tip.output.tab.notepad = Le bloc-notes peut servir d'outil pour prendre des notes et stocker des informations. Vous pouvez garder n'importe quel texte ici, copier du texte depuis la fenêtre de chat, et toutes les informations seront automatiquement enregistrées. Vous pouvez créer plus de blocs-notes en créant un nouvel onglet.
|
941
957
|
tip.tokens.ctx = Contexte (mémoire) : en utilisation / total - jetons
|
942
958
|
tip.tokens.input = Jetons: invite de l'utilisateur + invite système + contexte + extra + pièces jointes = somme / maximum
|
943
959
|
tip.toolbox.assistants = La liste des assistants montre les assistants créés et opérant sur le serveur distant. Tout changement sera synchronisé avec l'assistant distant.
|
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Strumento: recupero
|
|
100
100
|
assistant.vector_store = Archivio vettoriale
|
101
101
|
attachments.auto_index = Indicizzazione automatica al caricamento
|
102
102
|
attachments.btn.add = Aggiungi file
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Web
|
104
104
|
attachments.btn.clear = Pulisci file
|
105
105
|
attachments.capture_clear = Pulisci alla cattura
|
106
106
|
attachments.clear.confirm = Pulire l'elenco?
|
@@ -346,7 +346,7 @@ dialog.start.title = API KEY non ancora configurata
|
|
346
346
|
dialog.start.title.text = La tua API key non è ancora configurata...\nOtterrai una API key registrando un account sul sito web di OpenAI:
|
347
347
|
dialog.url.dismiss = Annulla
|
348
348
|
dialog.url.tip = Fornisci l'URL della pagina web che desideri allegare come contesto aggiuntivo, ad esempio, https://it.wikipedia.org/wiki/Elon_Musk, o un video YouTube da trascrivere, ad esempio, https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title =
|
349
|
+
dialog.url.title = Aggiungi contenuti web o esterni come contesto aggiuntivo.
|
350
350
|
dialog.url.update = Aggiungi
|
351
351
|
dialog.workdir.change.confirm = Sei sicuro di voler cambiare/spostare la workdir a:\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = La cartella non è vuota! Annullamento dell'operazione.
|
@@ -751,10 +751,20 @@ settings.agent.llama.steps.desc = Passi massimi in un'iterazione prima che l'obi
|
|
751
751
|
settings.agent.llama.verbose = Verboso (output del log sulla console)
|
752
752
|
settings.agent.mode = Modalità interna per agenti
|
753
753
|
settings.agent.mode.desc = Modalità interna da utilizzare in modalità Agente
|
754
|
+
settings.api_azure_endpoint = Endpoint API
|
755
|
+
settings.api_azure_endpoint.desc = Endpoint API Azure OpenAI, https://<il-tuo-nome-risorsa>.openai.azure.com/
|
756
|
+
settings.api_azure_version = Versione API OpenAI
|
757
|
+
settings.api_azure_version.desc = Versione Azure OpenAI API, es. 2023-07-01-preview
|
754
758
|
settings.api_endpoint = Endpoint API
|
755
759
|
settings.api_endpoint.desc = URL del punto di terminazione API OpenAI (o compatibile), di default: https://api.openai.com/v1
|
756
760
|
settings.api_key = OpenAI API KEY
|
761
|
+
settings.api_key.anthropic = CHIAVE API Anthropic
|
762
|
+
settings.api_key.anthropic.desc = Necessario per l'API Anthropic e i modelli Claude.
|
757
763
|
settings.api_key.desc = Richiesto per l'API OpenAI. Se desideri utilizzare endpoint personalizzati o API locali, puoi inserire qui qualsiasi valore.
|
764
|
+
settings.api_key.google = CHIAVE API Google
|
765
|
+
settings.api_key.google.desc = Necessario per l'API Google e i modelli Gemini.
|
766
|
+
settings.api_key.hugging_face = CHIAVE API HuggingFace
|
767
|
+
settings.api_key.hugging_face.desc = Necessario per l'API HuggingFace.
|
758
768
|
settings.app.env = Ambiente dell'applicazione (os.environ)
|
759
769
|
settings.app.env.desc = Variabili d'ambiente aggiuntive da impostare all'avvio dell'applicazione
|
760
770
|
settings.audio.input.channels = Canali
|
@@ -867,6 +877,12 @@ settings.render.code_syntax = Stile di evidenziazione della sintassi del codice
|
|
867
877
|
settings.restart.required = È necessario riavviare l'applicazione affinché le modifiche a questa opzione siano applicate.
|
868
878
|
settings.section.access = Accessibilità
|
869
879
|
settings.section.agent = Agenti ed esperti
|
880
|
+
settings.section.api_keys = Chiavi API
|
881
|
+
settings.section.api_keys.anthropic = Anthropic
|
882
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
883
|
+
settings.section.api_keys.google = Google
|
884
|
+
settings.section.api_keys.huggingface = HuggingFace
|
885
|
+
settings.section.api_keys.openai = OpenAI
|
870
886
|
settings.section.audio = Audio
|
871
887
|
settings.section.ctx = Contesto
|
872
888
|
settings.section.files = File e allegati
|
@@ -937,7 +953,7 @@ tip.input.attachments.uploaded = Qui è presente un elenco di файлы caricat
|
|
937
953
|
tip.output.tab.calendar = Utilizzando il calendario, puoi tornare a conversazioni selezionate di un giorno specifico. Clicca su un giorno nel calendario per limitare la visualizzazione della cronologia della chat a quel giorno. Puoi anche creare note giornaliere e assegnarle etichette colorate.
|
938
954
|
tip.output.tab.draw = Puoi utilizzare lo strumento di disegno per fare rapidi schizzi o catturare un'immagine dalla fotocamera, e poi inviare tali immagini all'IA in modalità Vision per l'analisi. Puoi catturare un'immagine con la fotocamera qui o aprire un'immagine dal disco. Quando utilizzi un'immagine, questa sarà inclusa nel messaggio inviato come allegato.
|
939
955
|
tip.output.tab.files = Questa directory di file di lavoro si trova sul tuo disco. I file qui sono accessibili per l'IA per la lettura. L'IA può scrivere e leggere file, così come eseguire codice da questa directory. Puoi aprire questa directory localmente sul tuo sistema e posizionare qui qualsiasi file. Puoi anche indicizzare i file con LlamaIndex, in modo che servano come fonte di conoscenza aggiuntiva.
|
940
|
-
tip.output.tab.notepad = Il blocco note può servire come strumento per prendere appunti e memorizzare informazioni. Puoi
|
956
|
+
tip.output.tab.notepad = Il blocco note può servire come strumento per prendere appunti e memorizzare informazioni. Puoi mantenere qualsiasi testo qui, copiare testo dalla finestra della chat e tutte le informazioni verranno salvate automaticamente. Puoi creare più blocchi note creando una nuova scheda.
|
941
957
|
tip.tokens.ctx = Contesto (memoria): in uso / totale - token
|
942
958
|
tip.tokens.input = Gettoni: prompt dell'utente + prompt di sistema + contesto + extra + allegati = somma / massimo
|
943
959
|
tip.toolbox.assistants = L'elenco degli assistenti mostra gli assistenti creati e operanti sul сервер remoto. Tutte le modifiche saranno sincronizzate con l'assistente remoto.
|
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Tool: retrieval
|
|
100
100
|
assistant.vector_store = Baza wektorowa
|
101
101
|
attachments.auto_index = Auto-indeksacja przy przesyłaniu
|
102
102
|
attachments.btn.add = Dodaj plik
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Sieć
|
104
104
|
attachments.btn.clear = Wyczyść
|
105
105
|
attachments.capture_clear = Wyczyść przy przechwytywaniu
|
106
106
|
attachments.clear.confirm = Wyczyścić listę plików?
|
@@ -346,7 +346,7 @@ dialog.start.title = Klucz API nie jest zdefiniowany
|
|
346
346
|
dialog.start.title.text = Nie skonfigurowałeś jeszcze klucza API...\nKlucz API uzyskasz rejestrując konto na stronie internetowej OpenAI:
|
347
347
|
dialog.url.dismiss = Anuluj
|
348
348
|
dialog.url.tip = Podaj URL strony internetowej, którą chcesz dołączyć jako dodatkowy kontekst, np. https://pl.wikipedia.org/wiki/Elon_Musk, lub film na YouTube do transkrypcji, np. https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title =
|
349
|
+
dialog.url.title = Dodaj treść z sieci lub zewnętrzne jako dodatkowy kontekst.
|
350
350
|
dialog.url.update = Dodaj
|
351
351
|
dialog.workdir.change.confirm = Czy jesteś pewny, że chcesz zmienić/przenieść katalog roboczy do:\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = Katalog nie jest pusty! Anulowanie.
|
@@ -751,10 +751,20 @@ settings.agent.llama.steps.desc = Maksymalna liczba kroków w jednej iteracji pr
|
|
751
751
|
settings.agent.llama.verbose = Szczegółowy (logowanie do konsoli)
|
752
752
|
settings.agent.mode = Tryb wewnętrzny dla agentów
|
753
753
|
settings.agent.mode.desc = Tryb wewnętrzny do użycia w trybie Agenta
|
754
|
+
settings.api_azure_endpoint = Punkt końcowy API
|
755
|
+
settings.api_azure_endpoint.desc = Punkt końcowy Azure OpenAI API, https://<twoja-nazwa-zasobu>.openai.azure.com/
|
756
|
+
settings.api_azure_version = Wersja API OpenAI
|
757
|
+
settings.api_azure_version.desc = Wersja Azure OpenAI API, np. 2023-07-01-preview
|
754
758
|
settings.api_endpoint = Punkt końcowy API
|
755
759
|
settings.api_endpoint.desc = Adres URL punktu końcowego API OpenAI (lub kompatybilnego), domyślnie: https://api.openai.com/v1
|
756
760
|
settings.api_key = Klucz API OpenAI
|
761
|
+
settings.api_key.anthropic = Klucz API Anthropic
|
762
|
+
settings.api_key.anthropic.desc = Wymagane dla API Anthropic i modeli Claude.
|
757
763
|
settings.api_key.desc = Wymagany dla API OpenAI. Jeśli chcesz używać niestandardowych punktów końcowych lub lokalnych API, możesz tutaj wprowadzić dowolną wartość.
|
764
|
+
settings.api_key.google = Klucz API Google
|
765
|
+
settings.api_key.google.desc = Wymagane dla API Google i modeli Gemini.
|
766
|
+
settings.api_key.hugging_face = Klucz API HuggingFace
|
767
|
+
settings.api_key.hugging_face.desc = Wymagane dla API HuggingFace.
|
758
768
|
settings.app.env = Środowisko aplikacji (os.environ)
|
759
769
|
settings.app.env.desc = Dodatkowe zmienne środowiskowe do ustawienia przy starcie aplikacji
|
760
770
|
settings.audio.input.channels = Kanały
|
@@ -868,6 +878,12 @@ settings.render.plain = Wyłącz formatowanie markdown w wyjściu (tryb plain-te
|
|
868
878
|
settings.restart.required = Restart aplikacji jest wymagany, aby zmiany dla tej opcji zostały wprowadzone.
|
869
879
|
settings.section.access = Dostępność
|
870
880
|
settings.section.agent = Agenci i eksperci
|
881
|
+
settings.section.api_keys = Klucze API
|
882
|
+
settings.section.api_keys.anthropic = Anthropic
|
883
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
884
|
+
settings.section.api_keys.google = Google
|
885
|
+
settings.section.api_keys.huggingface = HuggingFace
|
886
|
+
settings.section.api_keys.openai = OpenAI
|
871
887
|
settings.section.audio = Audio
|
872
888
|
settings.section.ctx = Kontekst
|
873
889
|
settings.section.files = Pliki i załączniki
|
@@ -938,7 +954,7 @@ tip.input.attachments.uploaded = Tutaj znajduje się lista plików przesłanych
|
|
938
954
|
tip.output.tab.calendar = Korzystając z kalendarza, możesz wrócić do wybranych rozmów z określonego dnia. Kliknij na dzień w kalendarzu, aby ograniczyć wyświetlanie historii czatu do tego dnia. Możesz również tworzyć notatki dnia i przypisywać im kolorowe etykiety.
|
939
955
|
tip.output.tab.draw = Możesz użyć narzędzia do rysowania do szybkiego szkicowania lub przechwytywania obrazu z kamery, a następnie wysyłać takie obrazy do AI w trybie Vision do analizy. Możesz tu przechwycić obraz za pomocą kamery lub otworzyć obraz z dysku. Przy użyciu obrazu zostanie on dołączony do wysłanej wiadomości jako załącznik.
|
940
956
|
tip.output.tab.files = Katalog z plikami roboczymi znajduje się na Twoim dysku. Pliki tutaj są dostępne dla AI. AI może czytać i zapisywać pliki, a także uruchamiać kod z tego katalogu. Możesz otworzyć ten katalog lokalnie w swoim systemie i umieścić tutaj dowolne pliki. Możesz także zindeksować pliki tutaj przy użyciu LlamaIndex, aby służyły jako dodatkowe źródło wiedzy.
|
941
|
-
tip.output.tab.notepad = Notatnik może służyć jako narzędzie do robienia notatek i przechowywania informacji. Możesz tutaj przechowywać dowolny tekst, kopiować tekst z okna czatu, a wszystkie informacje
|
957
|
+
tip.output.tab.notepad = Notatnik może służyć jako narzędzie do robienia notatek i przechowywania informacji. Możesz tutaj przechowywać dowolny tekst, kopiować tekst z okna czatu, a wszystkie informacje będą automatycznie zapisywane. Możesz tworzyć więcej notatników, tworząc nową kartę.
|
942
958
|
tip.tokens.ctx = Kontekst (pamięć): w użyciu / całość - l.tokenów
|
943
959
|
tip.tokens.input = Tokeny: prompt użytkownika + systemowy prompt + kontekst + dodatkowe + załączniki = suma / max
|
944
960
|
tip.toolbox.assistants = Lista asystentów pokazuje asystentów stworzonych i działających na zdalnym serwerze. Wszelkie zmiany zostaną zsynchronizowane ze zdalnym asystentem.
|
@@ -100,7 +100,7 @@ assistant.tool.retrieval = Інструмент: пошук
|
|
100
100
|
assistant.vector_store = Векторне сховище
|
101
101
|
attachments.auto_index = Автоматичне індексування при завантаженні
|
102
102
|
attachments.btn.add = Додати файл
|
103
|
-
attachments.btn.add_url =
|
103
|
+
attachments.btn.add_url = Веб
|
104
104
|
attachments.btn.clear = Очистити файли
|
105
105
|
attachments.capture_clear = Очистити під час захоплення
|
106
106
|
attachments.clear.confirm = Очистити список?
|
@@ -346,7 +346,7 @@ dialog.start.title = API КЛЮЧ ще не налаштований
|
|
346
346
|
dialog.start.title.text = Ваш API ключ ще не налаштований...\nВи отримаєте API ключ, зареєструвавшись на сайті OpenAI:
|
347
347
|
dialog.url.dismiss = Скасувати
|
348
348
|
dialog.url.tip = Вкажіть URL веб-сторінки, яку ви хочете прикріпити як додатковий контекст, наприклад, https://uk.wikipedia.org/wiki/Ілон_Маск, або відео на YouTube для транскрипції, наприклад, https://www.youtube.com/watch?v=CRRlbK5w8AE.
|
349
|
-
dialog.url.title =
|
349
|
+
dialog.url.title = Додайте веб-або зовнішній контент як додатковий контекст.
|
350
350
|
dialog.url.update = Додати
|
351
351
|
dialog.workdir.change.confirm = Ви впевнені, що хочете змінити/перемістити робочий каталог до:\n{path}?
|
352
352
|
dialog.workdir.change.empty.alert = Каталог не порожній! Операцію скасовано.
|
@@ -750,10 +750,20 @@ settings.agent.llama.steps.desc = Максимальна кількість кр
|
|
750
750
|
settings.agent.llama.verbose = Докладно (вивід журналу в консоль)
|
751
751
|
settings.agent.mode = Внутрішній режим для агентів
|
752
752
|
settings.agent.mode.desc = Внутрішній режим для використання в режимі Агента
|
753
|
+
settings.api_azure_endpoint = Кінцева точка API
|
754
|
+
settings.api_azure_endpoint.desc = Кінцева точка Azure OpenAI API, https://<ваше-імена-ресурсу>.openai.azure.com/
|
755
|
+
settings.api_azure_version = Версія API OpenAI
|
756
|
+
settings.api_azure_version.desc = Версія Azure OpenAI API, напр. 2023-07-01-preview
|
753
757
|
settings.api_endpoint = Кінцева точка API
|
754
758
|
settings.api_endpoint.desc = URL кінцевої точки API OpenAI (або сумісного), за замовчуванням: https://api.openai.com/v1
|
755
759
|
settings.api_key = OpenAI API КЛЮЧ
|
760
|
+
settings.api_key.anthropic = КЛЮЧ API Anthropic
|
761
|
+
settings.api_key.anthropic.desc = Потрібен для API Anthropic і моделей Claude.
|
756
762
|
settings.api_key.desc = Необхідний для API OpenAI. Якщо ви бажаєте використовувати налаштовані кінцеві точки або локальні API, тоді ви можете ввести будь-яке значення тут.
|
763
|
+
settings.api_key.google = КЛЮЧ API Google
|
764
|
+
settings.api_key.google.desc = Потрібен для API Google і моделей Gemini.
|
765
|
+
settings.api_key.hugging_face = КЛЮЧ API HuggingFace
|
766
|
+
settings.api_key.hugging_face.desc = Потрібен для API HuggingFace.
|
757
767
|
settings.app.env = Оточення додатка (os.environ)
|
758
768
|
settings.app.env.desc = Додаткові змінні середовища для встановлення при запуску додатка
|
759
769
|
settings.audio.input.channels = Канали
|
@@ -867,6 +877,12 @@ settings.render.plain = Вимкнути форматування markdown у в
|
|
867
877
|
settings.restart.required = Для внесення змін у цю опцію необхідно перезапустити програму.
|
868
878
|
settings.section.access = Доступність
|
869
879
|
settings.section.agent = Агенти та експерти
|
880
|
+
settings.section.api_keys = Ключі API
|
881
|
+
settings.section.api_keys.anthropic = Anthropic
|
882
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
883
|
+
settings.section.api_keys.google = Google
|
884
|
+
settings.section.api_keys.huggingface = HuggingFace
|
885
|
+
settings.section.api_keys.openai = OpenAI
|
870
886
|
settings.section.audio = Аудіо
|
871
887
|
settings.section.ctx = Контекст
|
872
888
|
settings.section.files = Файли та вкладення
|
@@ -937,7 +953,7 @@ tip.input.attachments.uploaded = Тут є список файлів, заван
|
|
937
953
|
tip.output.tab.calendar = Використовуючи календар, ви можете повертатись до обраних розмов з певного дня. Натисніть на день у календарі, щоб обмежити відображення історії чату до цього дня. Ви також можете створювати денні нотатки та присвоювати їм кольорові мітки.
|
938
954
|
tip.output.tab.draw = Ви можете використовувати інструмент малювання для швидкого скетчингу або захоплення зображення з камери, а потім надсилати такі зображення ШІ у режимі Vision для аналізу. Ви можете захопити зображення за допомогою камери тут або відкрити зображення з диску. При використанні зображення, воно буде включене в наді слане повідомлення як вкладення.
|
939
955
|
tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою LlamaIndex, щоб вони служили додатковим джерелом знань.
|
940
|
-
tip.output.tab.notepad = Блокнот може слугувати інструментом для
|
956
|
+
tip.output.tab.notepad = Блокнот може слугувати інструментом для ведення нотаток та зберігання інформації. Ви можете зберігати тут будь-який текст, копіювати текст із вікна чату, і вся інформація буде автоматично зберігатися. Ви можете створити більше блокнотів, створивши нову вкладку.
|
941
957
|
tip.tokens.ctx = Контекст (пам'ять): використано / всього - токени
|
942
958
|
tip.tokens.input = Токени: запит користувача + системний запит + контекст + додаткові + вкладення = сума / макс
|
943
959
|
tip.toolbox.assistants = Список асистентів показує асистентів, створених і що працюють на віддаленому сервері. Будь-які зміни будуть синхронізовані з віддаленим асистентом.
|