@scopieflows/app-contextual-ai 0.1.1 → 0.1.4

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 (50) hide show
  1. package/package.json +6 -21
  2. package/src/index.d.ts +4 -7
  3. package/src/index.d.ts.map +1 -0
  4. package/src/index.js +5 -41
  5. package/src/index.js.map +1 -1
  6. package/src/lib/actions/create-agent.d.ts +11 -10
  7. package/src/lib/actions/create-agent.d.ts.map +1 -0
  8. package/src/lib/actions/create-agent.js +4 -4
  9. package/src/lib/actions/create-agent.js.map +1 -1
  10. package/src/lib/actions/create-datastore.d.ts +5 -4
  11. package/src/lib/actions/create-datastore.d.ts.map +1 -0
  12. package/src/lib/actions/create-datastore.js +3 -3
  13. package/src/lib/actions/create-datastore.js.map +1 -1
  14. package/src/lib/actions/generate.d.ts +12 -11
  15. package/src/lib/actions/generate.d.ts.map +1 -0
  16. package/src/lib/actions/generate.js +3 -3
  17. package/src/lib/actions/generate.js.map +1 -1
  18. package/src/lib/actions/ingest-document.d.ts +10 -9
  19. package/src/lib/actions/ingest-document.d.ts.map +1 -0
  20. package/src/lib/actions/ingest-document.js +4 -4
  21. package/src/lib/actions/ingest-document.js.map +1 -1
  22. package/src/lib/actions/invite-users.d.ts +6 -5
  23. package/src/lib/actions/invite-users.d.ts.map +1 -0
  24. package/src/lib/actions/invite-users.js +3 -3
  25. package/src/lib/actions/invite-users.js.map +1 -1
  26. package/src/lib/actions/parse-file.d.ts +11 -10
  27. package/src/lib/actions/parse-file.d.ts.map +1 -0
  28. package/src/lib/actions/parse-file.js +3 -3
  29. package/src/lib/actions/parse-file.js.map +1 -1
  30. package/src/lib/actions/query-agent.d.ts +10 -9
  31. package/src/lib/actions/query-agent.d.ts.map +1 -0
  32. package/src/lib/actions/query-agent.js +4 -4
  33. package/src/lib/actions/query-agent.js.map +1 -1
  34. package/src/lib/auth.d.ts +5 -0
  35. package/src/lib/auth.d.ts.map +1 -0
  36. package/src/lib/auth.js +62 -0
  37. package/src/lib/auth.js.map +1 -0
  38. package/src/lib/triggers/new-agent.d.ts +14 -13
  39. package/src/lib/triggers/new-agent.d.ts.map +1 -0
  40. package/src/lib/triggers/new-agent.js +4 -4
  41. package/src/lib/triggers/new-agent.js.map +1 -1
  42. package/README.md +0 -7
  43. package/src/i18n/de.json +0 -90
  44. package/src/i18n/es.json +0 -90
  45. package/src/i18n/fr.json +0 -90
  46. package/src/i18n/ja.json +0 -90
  47. package/src/i18n/nl.json +0 -90
  48. package/src/i18n/pt.json +0 -90
  49. package/src/i18n/translation.json +0 -90
  50. package/src/i18n/zh.json +0 -90
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.contextualAiAuth = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const pieces_framework_1 = require("@scopieflows/apps-framework");
6
+ const contextual_client_1 = require("contextual-client");
7
+ const markdown = `
8
+ ## Contextual AI Connection Setup
9
+
10
+ ### Prerequisites
11
+ - Create a Contextual AI account at [Contextual AI](https://contextual.ai)
12
+ - Generate an API key from your workspace settings
13
+ - You'll receive $25 in free credits (or $50 with work email)
14
+
15
+ ### Authentication Fields
16
+
17
+ **API Key**: Your Contextual AI API key (required)
18
+ - Sign in to your Contextual AI workspace
19
+ - Navigate to API Keys in the sidebar
20
+ - Click "Create API Key" and follow the instructions
21
+ - Copy the generated key and paste it here
22
+
23
+ **Base URL**: The API base URL (optional)
24
+ - Leave blank to use the default: \`https://api.contextual.ai/v1\`
25
+ - Only change if you have a custom deployment
26
+ `;
27
+ exports.contextualAiAuth = pieces_framework_1.PieceAuth.CustomAuth({
28
+ required: true,
29
+ description: markdown,
30
+ props: {
31
+ apiKey: pieces_framework_1.PieceAuth.SecretText({
32
+ displayName: 'API Key',
33
+ description: 'Your Contextual AI API key',
34
+ required: true,
35
+ }),
36
+ baseUrl: pieces_framework_1.Property.ShortText({
37
+ displayName: 'Base URL',
38
+ description: 'API base URL (leave blank for default)',
39
+ required: false,
40
+ }),
41
+ },
42
+ validate: (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ auth }) {
43
+ try {
44
+ const { apiKey, baseUrl } = auth;
45
+ const client = new contextual_client_1.ContextualAI({
46
+ apiKey: apiKey,
47
+ baseURL: baseUrl || 'https://api.contextual.ai/v1',
48
+ });
49
+ yield client.datastores.list();
50
+ return {
51
+ valid: true,
52
+ };
53
+ }
54
+ catch (error) {
55
+ return {
56
+ valid: false,
57
+ error: `Authentication failed: ${error instanceof Error ? error.message : 'Unknown error'}. Please verify your API key and base URL.`,
58
+ };
59
+ }
60
+ }),
61
+ });
62
+ //# sourceMappingURL=auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/lib/auth.ts"],"names":[],"mappings":";;;;AAAA,oEAAoE;AACpE,yDAAiD;AAEjD,MAAM,QAAQ,GAAG;;;;;;;;;;;;;;;;;;;CAmBhB,CAAC;AAEW,QAAA,gBAAgB,GAAG,4BAAS,CAAC,UAAU,CAAC;IACnD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,QAAQ;IACrB,KAAK,EAAE;QACL,MAAM,EAAE,4BAAS,CAAC,UAAU,CAAC;YAC3B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,OAAO,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC1B,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,KAAK;SAChB,CAAC;KACH;IACD,QAAQ,EAAE,KAAiB,EAAE,oDAAZ,EAAE,IAAI,EAAE;QACvB,IAAI,CAAC;YACH,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;YAEjC,MAAM,MAAM,GAAG,IAAI,gCAAY,CAAC;gBAC9B,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO,IAAI,8BAA8B;aACnD,CAAC,CAAC;YAEH,MAAM,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;YAE/B,OAAO;gBACL,KAAK,EAAE,IAAI;aACZ,CAAC;QACJ,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO;gBACL,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,0BAA0B,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,eAAe,4CAA4C;aACtI,CAAC;QACJ,CAAC;IACH,CAAC,CAAA;CACF,CAAC,CAAC"}
@@ -1,14 +1,15 @@
1
- import { TriggerStrategy } from '@scopieflows/pieces-framework';
2
- export declare const newAgentTrigger: import("@scopieflows/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@scopieflows/pieces-framework").CustomAuthProperty<{
3
- apiKey: import("@scopieflows/pieces-framework").SecretTextProperty<true>;
4
- baseUrl: import("@scopieflows/pieces-framework").ShortTextProperty<false>;
5
- }>, {}> | import("@scopieflows/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@scopieflows/pieces-framework").CustomAuthProperty<{
6
- apiKey: import("@scopieflows/pieces-framework").SecretTextProperty<true>;
7
- baseUrl: import("@scopieflows/pieces-framework").ShortTextProperty<false>;
8
- }>, {}> | import("@scopieflows/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@scopieflows/pieces-framework").CustomAuthProperty<{
9
- apiKey: import("@scopieflows/pieces-framework").SecretTextProperty<true>;
10
- baseUrl: import("@scopieflows/pieces-framework").ShortTextProperty<false>;
11
- }>, {}> | import("@scopieflows/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@scopieflows/pieces-framework").CustomAuthProperty<{
12
- apiKey: import("@scopieflows/pieces-framework").SecretTextProperty<true>;
13
- baseUrl: import("@scopieflows/pieces-framework").ShortTextProperty<false>;
1
+ import { TriggerStrategy } from '@scopieflows/apps-framework';
2
+ export declare const newAgentTrigger: import("@scopieflows/apps-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@scopieflows/apps-framework").CustomAuthProperty<{
3
+ apiKey: import("@scopieflows/apps-framework").SecretTextProperty<true>;
4
+ baseUrl: import("@scopieflows/apps-framework").ShortTextProperty<false>;
5
+ }>, {}> | import("@scopieflows/apps-framework").ITrigger<TriggerStrategy.POLLING, import("@scopieflows/apps-framework").CustomAuthProperty<{
6
+ apiKey: import("@scopieflows/apps-framework").SecretTextProperty<true>;
7
+ baseUrl: import("@scopieflows/apps-framework").ShortTextProperty<false>;
8
+ }>, {}> | import("@scopieflows/apps-framework").ITrigger<TriggerStrategy.MANUAL, import("@scopieflows/apps-framework").CustomAuthProperty<{
9
+ apiKey: import("@scopieflows/apps-framework").SecretTextProperty<true>;
10
+ baseUrl: import("@scopieflows/apps-framework").ShortTextProperty<false>;
11
+ }>, {}> | import("@scopieflows/apps-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@scopieflows/apps-framework").CustomAuthProperty<{
12
+ apiKey: import("@scopieflows/apps-framework").SecretTextProperty<true>;
13
+ baseUrl: import("@scopieflows/apps-framework").ShortTextProperty<false>;
14
14
  }>, {}>;
15
+ //# sourceMappingURL=new-agent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"new-agent.d.ts","sourceRoot":"","sources":["../../../../src/lib/triggers/new-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,eAAe,EAAqC,MAAM,+BAA+B,CAAC;AAuClH,eAAO,MAAM,eAAe;;;;;;;;;;;;OAgC1B,CAAC"}
@@ -2,9 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.newAgentTrigger = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@scopieflows/pieces-framework");
6
- const pieces_common_1 = require("@scopieflows/pieces-common");
7
- const index_1 = require("../../index");
5
+ const pieces_framework_1 = require("@scopieflows/apps-framework");
6
+ const pieces_common_1 = require("@scopieflows/apps-common");
7
+ const auth_1 = require("../auth");
8
8
  const contextual_client_1 = require("contextual-client");
9
9
  const polling = {
10
10
  strategy: pieces_common_1.DedupeStrategy.TIMEBASED,
@@ -48,7 +48,7 @@ const polling = {
48
48
  }),
49
49
  };
50
50
  exports.newAgentTrigger = (0, pieces_framework_1.createTrigger)({
51
- auth: index_1.contextualAiAuth,
51
+ auth: auth_1.contextualAiAuth,
52
52
  name: 'new_agent',
53
53
  displayName: 'New Agent',
54
54
  description: 'Triggers when a new Contextual AI agent is created',
@@ -1 +1 @@
1
- {"version":3,"file":"new-agent.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/contextual-ai/src/lib/triggers/new-agent.ts"],"names":[],"mappings":";;;;AAAA,oEAAkH;AAClH,8DAAoF;AACpF,uCAA+C;AAC/C,yDAAiD;AAGjD,MAAM,OAAO,GAA+F;IAC1G,QAAQ,EAAE,8BAAc,CAAC,SAAS;IAClC,KAAK,EAAE,KAAmC,EAAE,oDAA9B,EAAE,IAAI,EAAE,gBAAgB,EAAE;;QACtC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QACvC,MAAM,MAAM,GAAG,IAAI,gCAAY,CAAC;YAC9B,MAAM,EAAE,MAAM;YACd,OAAO,EAAE,OAAO,IAAI,8BAA8B;SACnD,CAAC,CAAC;QAEH,MAAM,SAAS,GAAY,EAAE,CAAC;;YAC9B,KAA0B,eAAA,KAAA,sBAAA,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAA,IAAA,sDAAE,CAAC;gBAAvB,cAAoB;gBAApB,WAAoB;gBAAnC,MAAM,KAAK,KAAA,CAAA;gBACpB,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACxB,CAAC;;;;;;;;;QAED,MAAM,SAAS,GAAG,gBAAgB;YAChC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;gBACvB,OAAO,IAAI,CAAC;YACd,CAAC,CAAC;YACJ,CAAC,CAAC,SAAS,CAAC;QAEd,MAAM,KAAK,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC,KAAY,EAAE,EAAE,CAAC,CAAC;YAC7C,iBAAiB,EAAE,IAAI,CAAC,GAAG,EAAE;YAC7B,IAAI,EAAE;gBACJ,EAAE,EAAE,KAAK,CAAC,EAAE;gBACZ,IAAI,EAAE,KAAK,CAAC,IAAI;gBAChB,WAAW,EAAE,KAAK,CAAC,WAAW;aAC/B;SACF,CAAC,CAAC,CAAC;QAEJ,OAAO,KAAK,CAAC;IACf,CAAC,CAAA;CACF,CAAC;AAEW,QAAA,eAAe,GAAG,IAAA,gCAAa,EAAC;IAC3C,IAAI,EAAE,wBAAgB;IACtB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,WAAW;IACxB,WAAW,EAAE,oDAAoD;IACjE,KAAK,EAAE,EAAE;IACT,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,UAAU,EAAE;QACV,EAAE,EAAE,WAAW;QACf,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE,4BAA4B;KAC1C;IACK,QAAQ,CAAC,OAAO;;YACpB,MAAM,6BAAa,CAAC,QAAQ,CAAC,OAAO,EAAE;gBACpC,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,UAAU,EAAE,OAAO,CAAC,UAAU;aAC/B,CAAC,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;YACrB,MAAM,6BAAa,CAAC,SAAS,CAAC,OAAO,EAAE;gBACrC,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,UAAU,EAAE,OAAO,CAAC,UAAU;aAC/B,CAAC,CAAC;QACL,CAAC;KAAA;IACK,IAAI,CAAC,OAAO;;YAChB,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;CACF,CAAC,CAAC"}
1
+ {"version":3,"file":"new-agent.js","sourceRoot":"","sources":["../../../../src/lib/triggers/new-agent.ts"],"names":[],"mappings":";;;;AAAA,oEAAkH;AAClH,8DAAoF;AACpF,kCAA2C;AAC3C,yDAAiD;AAGjD,MAAM,OAAO,GAA+F;IAC1G,QAAQ,EAAE,8BAAc,CAAC,SAAS;IAClC,KAAK,EAAE,KAAmC,EAAE,oDAA9B,EAAE,IAAI,EAAE,gBAAgB,EAAE;;QACtC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QACvC,MAAM,MAAM,GAAG,IAAI,gCAAY,CAAC;YAC9B,MAAM,EAAE,MAAM;YACd,OAAO,EAAE,OAAO,IAAI,8BAA8B;SACnD,CAAC,CAAC;QAEH,MAAM,SAAS,GAAY,EAAE,CAAC;;YAC9B,KAA0B,eAAA,KAAA,sBAAA,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAA,IAAA,sDAAE,CAAC;gBAAvB,cAAoB;gBAApB,WAAoB;gBAAnC,MAAM,KAAK,KAAA,CAAA;gBACpB,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACxB,CAAC;;;;;;;;;QAED,MAAM,SAAS,GAAG,gBAAgB;YAChC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;gBACvB,OAAO,IAAI,CAAC;YACd,CAAC,CAAC;YACJ,CAAC,CAAC,SAAS,CAAC;QAEd,MAAM,KAAK,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC,KAAY,EAAE,EAAE,CAAC,CAAC;YAC7C,iBAAiB,EAAE,IAAI,CAAC,GAAG,EAAE;YAC7B,IAAI,EAAE;gBACJ,EAAE,EAAE,KAAK,CAAC,EAAE;gBACZ,IAAI,EAAE,KAAK,CAAC,IAAI;gBAChB,WAAW,EAAE,KAAK,CAAC,WAAW;aAC/B;SACF,CAAC,CAAC,CAAC;QAEJ,OAAO,KAAK,CAAC;IACf,CAAC,CAAA;CACF,CAAC;AAEW,QAAA,eAAe,GAAG,IAAA,gCAAa,EAAC;IAC3C,IAAI,EAAE,uBAAgB;IACtB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,WAAW;IACxB,WAAW,EAAE,oDAAoD;IACjE,KAAK,EAAE,EAAE;IACT,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,UAAU,EAAE;QACV,EAAE,EAAE,WAAW;QACf,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE,4BAA4B;KAC1C;IACK,QAAQ,CAAC,OAAO;;YACpB,MAAM,6BAAa,CAAC,QAAQ,CAAC,OAAO,EAAE;gBACpC,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,UAAU,EAAE,OAAO,CAAC,UAAU;aAC/B,CAAC,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;YACrB,MAAM,6BAAa,CAAC,SAAS,CAAC,OAAO,EAAE;gBACrC,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,UAAU,EAAE,OAAO,CAAC,UAAU;aAC/B,CAAC,CAAC;QACL,CAAC;KAAA;IACK,IAAI,CAAC,OAAO;;YAChB,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;CACF,CAAC,CAAC"}
package/README.md DELETED
@@ -1,7 +0,0 @@
1
- # pieces-contextual-ai
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build pieces-contextual-ai` to build the library.
package/src/i18n/de.json DELETED
@@ -1,90 +0,0 @@
1
- {
2
- "Integrate with Contextual AI to automate document processing and AI workflows": "Integration in kontextuelle KI zur Automatisierung der Dokumentenverarbeitung und der KI-Workflows",
3
- "API Key": "API-Schlüssel",
4
- "Base URL": "Basis-URL",
5
- "Your Contextual AI API key": "Ihr Kontextueller KI-API-Schlüssel",
6
- "API base URL (leave blank for default)": "API Basis-URL (leer lassen für Standard)",
7
- "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: ": "\n## Kontextuelle KI Verbindung Setup\n\n### Voraussetzungen\n- Erstellen Sie ein Kontextuelles KI Konto unter [Kontextuelle KI](https://contextual.ai)\n- Generieren Sie einen API-Schlüssel aus Ihren Workspace-Einstellungen\n- Sie erhalten 25 USD in freien Credits (oder $50 mit Arbeits-E-Mail)\n\n### Authentifizierungsfelder\n\n**API Schlüssel**: Ihr Kontextueller AI API-Schlüssel (erforderlich)\n- Anmelden in Ihrem Kontextuellen AI Arbeitsbereich\n- Navigieren Sie zu API-Keys in der Seitenleiste\n- Klicken Sie auf \"API-Schlüssel erstellen\" und folgen Sie den Anweisungen\n- Kopieren Sie hier den generierten Schlüssel und fügen Sie ihn ein:\n\n**Base URL**: Die API Basis-URL (optional)\n- ontextual.ai/v1`\n- Nur ändern, wenn du eine benutzerdefinierte Bereitstellung\n hast",
8
- "Query Agent": "Abfrage-Agent",
9
- "Generate Text": "Text generieren",
10
- "Ingest Document": "Dokument einlesen",
11
- "Parse File": "Datei analysieren",
12
- "Create Agent": "Agenten erstellen",
13
- "Invite Users": "Benutzer einladen",
14
- "Create Datastore": "Create Datastore",
15
- "Send a message to a Contextual AI agent and get a response": "Sende eine Nachricht an einen Kontextuellen KI-Agent und erhalte eine Antwort",
16
- "Generate text using Contextual AI's Grounded Language Model": "Text mithilfe des Basissprachenmodells der Kontextuellen AI generieren",
17
- "Upload and ingest a document into a Contextual AI datastore": "Dokument hochladen und in einen Kontextuellen KI-Datenspeicher einfügen",
18
- "Parse a document file into structured Markdown and/or JSON format": "Eine Dokumentdatei in strukturiertes Markdown und/oder JSON-Format analysieren",
19
- "Create a new Contextual AI agent with specified configuration": "Erstelle einen neuen Kontextuellen KI-Agent mit spezifizierter Konfiguration",
20
- "Invite new users to the Contextual AI workspace": "Neue Benutzer in den Kontextuellen AI-Arbeitsbereich einladen",
21
- "Create a new datastore for organizing documents": "Erstellen Sie einen neuen Datenspeicher für die Organisation von Dokumenten",
22
- "Agent": "Agent",
23
- "Message": "Nachricht",
24
- "Conversation ID": "Konversations-ID",
25
- "Include Retrieval Content": "Inklusive Abfrageinhalt",
26
- "Prompt": "Prompt",
27
- "Model Version": "Modellversion",
28
- "Knowledge Sources": "Wissensquellen",
29
- "System Prompt": "System-Prompt",
30
- "Max Tokens": "Max. Token",
31
- "Temperature": "Temperatur",
32
- "Top P": "Oben P",
33
- "Avoid Commentary": "Kommentar vermeiden",
34
- "Datastore": "Datastore",
35
- "Document File": "Dokumentdatei",
36
- "Custom Metadata": "Eigene Metadaten",
37
- "Configuration Override": "Konfiguration überschreiben",
38
- "Parse Mode": "Parse-Modus",
39
- "Page Range": "Page Range",
40
- "Enable Document Hierarchy": "Dokumenten-Hierarchie aktivieren",
41
- "Enable Split Tables": "Split-Tabellen aktivieren",
42
- "Max Split Table Cells": "Max. Tabellenzellen teilen",
43
- "Figure Caption Mode": "Bildunterschriftsmodus",
44
- "Agent Name": "Agentenname",
45
- "Description": "Beschreibung",
46
- "Datastores": "Datastores",
47
- "Filter Prompt": "Filter Aufforderung",
48
- "Users to Invite": "Benutzer einladen",
49
- "Tenant Short Name": "Mandant Kurzname",
50
- "Datastore Name": "Datastore Name",
51
- "Select the agent to query": "Wählen Sie den abzufragenden Agenten",
52
- "The message to send to the agent": "Die Nachricht an den Agenten senden",
53
- "Optional conversation ID to continue an existing conversation (leave empty for new conversation)": "Optionale Konversations-ID, um eine bestehende Konversation fortzuführen (leer lassen für neue Konversation)",
54
- "Include the text of retrieved contents in the response": "Fügen Sie den Text der abgerufenen Inhalte in die Antwort ein",
55
- "The text prompt to generate a response for": "Die Text-Eingabeaufforderung, um eine Antwort zu generieren",
56
- "The version of Contextual's GLM to use": "Die zu verwendende Version der GLM von Contextual",
57
- "Optional knowledge sources to ground the generation (leave empty for general generation)": "Optionale Wissensquellen, um die Generation zu verfestigen (lassen Sie leer für die allgemeine Generation)",
58
- "Optional system instructions for the model": "Optionale Systemanweisungen für das Modell",
59
- "Maximum number of tokens to generate (default: 1024)": "Maximale Anzahl zu generierender Tokens (Standard: 1024)",
60
- "Sampling temperature (0.0 to 1.0, lower = more focused, higher = more creative)": "Samplungstemperatur (0,0 bis 1,0, niedriger = stärker fokussiert, höher = kreativer)",
61
- "Nucleus sampling parameter (0.0 to 1.0)": "Nucleus Sampling Parameter (0.0 bis 1.0)",
62
- "Avoid providing additional conversational commentary not grounded in context": "Vermeiden Sie die Angabe zusätzlicher Gesprächskommentare nicht im Kontext begründet",
63
- "Select the datastore to upload the document to": "Wählen Sie den Datenspeicher, um das Dokument hochzuladen",
64
- "The document file to upload (PDF, HTML, DOC, DOCX, PPT, PPTX)": "Die hochzuladende Dokumentdatei (PDF, HTML, DOC, DOCX, PPT, PPTX)",
65
- "Optional custom metadata as key-value pairs (max 15 fields, 2KB total)": "Optionale benutzerdefinierte Metadaten als Schlüssel-Wert-Paare (max. 15 Felder, insgesamt 2KB",
66
- "Optional configuration override in JSON format for this specific document": "Optionale Konfiguration im JSON-Format für dieses spezifische Dokument überschreiben",
67
- "The document file to parse (PDF, DOC, DOCX, PPT, PPTX)": "Die zu analysierende Dokumentdatei (PDF, DOC, DOCX, PPT, PPTX)",
68
- "Parsing mode - basic for simple text, standard for complex documents": "Parsing-Modus - Basis für einfachen Text, Standard für komplexe Dokumente",
69
- "Optional page range to parse (e.g., \"0,1,2\" or \"0-2,5,6\")": "Optionaler Seitenbereich zum Parsen (z.B. \"0,1,2\" oder \"0-2,5,6\")",
70
- "Add table of contents with document structure (beta feature)": "Inhaltsverzeichnis mit Dokumentenstruktur (Beta-Funktion) hinzufügen",
71
- "Split large tables into multiple tables with headers": "Große Tabellen mit Header in mehrere Tabellen aufteilen",
72
- "Threshold for splitting large tables (only used when split tables is enabled)": "Grenzwert für die Aufteilung großer Tabellen (nur bei aktivierter Trennungstabelle)",
73
- "How thorough figure captions should be": "Wie gründlich die Bildunterschriften sein sollen",
74
- "Name for the new agent": "Name des neuen Agenten",
75
- "Optional description of the agent": "Optionale Beschreibung des Agenten",
76
- "Select datastores to associate with this agent (leave empty to create new datastore)": "Wählen Sie Datastoren, die mit diesem Agent assoziiert werden sollen (leer lassen um neue Daten zu erstellen)",
77
- "Optional system prompt for the agent": "Optionale Systemabfrage für den Agenten",
78
- "Optional prompt for filtering retrieved chunks": "Optionale Eingabeaufforderung zum Filtern abgerufener Chunks",
79
- "List of users to invite": "Liste der eingeladenen Benutzer",
80
- "The short name of the tenant/workspace": "Der Kurzname des Mandanten/Arbeitsbereiches",
81
- "Name for the new datastore": "Name für den neuen Datenspeicher",
82
- "GLM v2": "GLM v2",
83
- "GLM v1": "GLM v1",
84
- "Basic (text-only)": "Basis (nur Text)",
85
- "Standard (complex documents)": "Standard (komplexe Dokumente)",
86
- "Concise": "Konkret",
87
- "Detailed (beta)": "Detailliert (Beta)",
88
- "New Agent": "Neuer Agent",
89
- "Triggers when a new Contextual AI agent is created": "Wird ausgelöst, wenn ein neuer Kontextueller KI-Agent erstellt wird"
90
- }
package/src/i18n/es.json DELETED
@@ -1,90 +0,0 @@
1
- {
2
- "Integrate with Contextual AI to automate document processing and AI workflows": "Integrar con IA contextual para automatizar el procesamiento de documentos y flujos de trabajo de IA",
3
- "API Key": "Clave API",
4
- "Base URL": "URL base",
5
- "Your Contextual AI API key": "Tu clave de API contextual",
6
- "API base URL (leave blank for default)": "URL base de API (dejar en blanco por defecto)",
7
- "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: ": "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: The API base URL (optional)\n- Leave blank to use the default: `https://api.contextual.ai/v1`\n- Only change if you have a custom deployment\n",
8
- "Query Agent": "Consultar agente",
9
- "Generate Text": "Generar texto",
10
- "Ingest Document": "Documento íntimo",
11
- "Parse File": "Analizar archivo",
12
- "Create Agent": "Crear agente",
13
- "Invite Users": "Invitar usuarios",
14
- "Create Datastore": "Create Datastore",
15
- "Send a message to a Contextual AI agent and get a response": "Enviar un mensaje a un agente de IA contextual y obtener una respuesta",
16
- "Generate text using Contextual AI's Grounded Language Model": "Generar texto usando el Modelo de Idioma Contextual de II",
17
- "Upload and ingest a document into a Contextual AI datastore": "Subir e ingerir un documento en un datastore de IA contextual",
18
- "Parse a document file into structured Markdown and/or JSON format": "Analizar un archivo de documento en formato estructurado Markdown y/o JSON",
19
- "Create a new Contextual AI agent with specified configuration": "Crear un nuevo agente de IA contextual con la configuración especificada",
20
- "Invite new users to the Contextual AI workspace": "Invitar nuevos usuarios al área de trabajo de IA contextual",
21
- "Create a new datastore for organizing documents": "Crear un nuevo datastore para organizar documentos",
22
- "Agent": "Agente",
23
- "Message": "Mensaje",
24
- "Conversation ID": "ID de conversación",
25
- "Include Retrieval Content": "Incluye contenido de recuperación",
26
- "Prompt": "Petición",
27
- "Model Version": "Versión del modelo",
28
- "Knowledge Sources": "Fuentes de conocimiento",
29
- "System Prompt": "Prompt del sistema",
30
- "Max Tokens": "Tokens máximos",
31
- "Temperature": "Temperatura",
32
- "Top P": "Top P",
33
- "Avoid Commentary": "Evitar comentarios",
34
- "Datastore": "Datastore",
35
- "Document File": "Archivo del documento",
36
- "Custom Metadata": "Metadatos personalizados",
37
- "Configuration Override": "Anulación de configuración",
38
- "Parse Mode": "Modo de análisis",
39
- "Page Range": "Page Range",
40
- "Enable Document Hierarchy": "Habilitar jerarquía de documentos",
41
- "Enable Split Tables": "Activar Tablas de Dividir",
42
- "Max Split Table Cells": "Máx. Dividir celdas de mesa",
43
- "Figure Caption Mode": "Modo Figura Leyenda",
44
- "Agent Name": "Nombre del agente",
45
- "Description": "Descripción",
46
- "Datastores": "Datastores",
47
- "Filter Prompt": "Punto de filtro",
48
- "Users to Invite": "Usuarios a invitar",
49
- "Tenant Short Name": "Nombre corto del inquilino",
50
- "Datastore Name": "Datastore Name",
51
- "Select the agent to query": "Seleccione el agente a consultar",
52
- "The message to send to the agent": "El mensaje a enviar al agente",
53
- "Optional conversation ID to continue an existing conversation (leave empty for new conversation)": "ID de conversación opcional para continuar una conversación existente (dejar vacío para una nueva conversación)",
54
- "Include the text of retrieved contents in the response": "Incluye el texto de los contenidos recuperados en la respuesta",
55
- "The text prompt to generate a response for": "El mensaje de texto para generar una respuesta para",
56
- "The version of Contextual's GLM to use": "La versión de la GLM de Contextual a usar",
57
- "Optional knowledge sources to ground the generation (leave empty for general generation)": "Fuentes de conocimiento opcionales para calentar la generación (dejar vacía para la generación general)",
58
- "Optional system instructions for the model": "Instrucciones opcionales del sistema para el modelo",
59
- "Maximum number of tokens to generate (default: 1024)": "Número máximo de tokens a generar (por defecto: 1024)",
60
- "Sampling temperature (0.0 to 1.0, lower = more focused, higher = more creative)": "Temperatura de muestreo (0,0 a 1,0, menor = más enfocado, mayor = más creativo)",
61
- "Nucleus sampling parameter (0.0 to 1.0)": "Parámetro de muestreo de nucleos (0.0 a 1.0)",
62
- "Avoid providing additional conversational commentary not grounded in context": "Evitar proporcionar comentarios de conversación adicionales no basados en el contexto",
63
- "Select the datastore to upload the document to": "Seleccione el datastore al que subir el documento",
64
- "The document file to upload (PDF, HTML, DOC, DOCX, PPT, PPTX)": "El archivo de documento a subir (PDF, HTML, DOC, DOCX, PPT, PPTX)",
65
- "Optional custom metadata as key-value pairs (max 15 fields, 2KB total)": "Metadatos personalizados opcionales como pares clave-valor (máx. 15 campos, 2KB total)",
66
- "Optional configuration override in JSON format for this specific document": "Configuración opcional anulada en formato JSON para este documento específico",
67
- "The document file to parse (PDF, DOC, DOCX, PPT, PPTX)": "El archivo de documento a analizar (PDF, DOC, DOCX, PPT, PPTX)",
68
- "Parsing mode - basic for simple text, standard for complex documents": "Modo de análisis - básico para texto simple, estándar para documentos complejos",
69
- "Optional page range to parse (e.g., \"0,1,2\" or \"0-2,5,6\")": "Rango de página opcional a analizar (por ejemplo, \"0,1,2\" o \"0-2,5,6\")",
70
- "Add table of contents with document structure (beta feature)": "Añadir tabla de contenidos con estructura de documentos (característica beta)",
71
- "Split large tables into multiple tables with headers": "Dividir tablas grandes en múltiples tablas con cabeceras",
72
- "Threshold for splitting large tables (only used when split tables is enabled)": "Umbral para dividir tablas grandes (solo se utiliza cuando las tablas divididas están habilitadas)",
73
- "How thorough figure captions should be": "Cuán completos deben ser los subtítulos de figura",
74
- "Name for the new agent": "Nombre para el nuevo agente",
75
- "Optional description of the agent": "Descripción opcional del agente",
76
- "Select datastores to associate with this agent (leave empty to create new datastore)": "Seleccionar almacenes de datos para asociar con este agente (dejar vacío para crear un nuevo datastore)",
77
- "Optional system prompt for the agent": "Pedido opcional del sistema para el agente",
78
- "Optional prompt for filtering retrieved chunks": "Pedido opcional para filtrar los fragmentos recuperados",
79
- "List of users to invite": "Lista de usuarios a invitar",
80
- "The short name of the tenant/workspace": "El nombre corto del inquilino/área de trabajo",
81
- "Name for the new datastore": "Nombre para el nuevo datastore",
82
- "GLM v2": "GLM v2",
83
- "GLM v1": "GLM v1",
84
- "Basic (text-only)": "Básico (sólo texto)",
85
- "Standard (complex documents)": "Estándar (documentos complejos)",
86
- "Concise": "Conciso",
87
- "Detailed (beta)": "Detallado (beta)",
88
- "New Agent": "Nuevo agente",
89
- "Triggers when a new Contextual AI agent is created": "Dispara cuando se crea un nuevo agente de IA contextual"
90
- }
package/src/i18n/fr.json DELETED
@@ -1,90 +0,0 @@
1
- {
2
- "Integrate with Contextual AI to automate document processing and AI workflows": "Intégrer à l'IA contextuelle pour automatiser le traitement des documents et les flux de travail IA",
3
- "API Key": "Clé API",
4
- "Base URL": "URL de base",
5
- "Your Contextual AI API key": "Votre clé API contextuelle AI",
6
- "API base URL (leave blank for default)": "URL de base de l'API (laissez vide pour les valeurs par défaut)",
7
- "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: ": "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: The API base URL (optional)\n- Leave blank to use the default: `https://api.contextual.ai/v1`\n- Only change if you have a custom deployment\n",
8
- "Query Agent": "Agent de requête",
9
- "Generate Text": "Générer du texte",
10
- "Ingest Document": "Document Ingest",
11
- "Parse File": "Analyser le fichier",
12
- "Create Agent": "Créer un agent",
13
- "Invite Users": "Inviter des utilisateurs",
14
- "Create Datastore": "Create Datastore",
15
- "Send a message to a Contextual AI agent and get a response": "Envoyer un message à un agent IA Contextuel et obtenir une réponse",
16
- "Generate text using Contextual AI's Grounded Language Model": "Générer du texte en utilisant le modèle de langage de base de l'IA contextuelle",
17
- "Upload and ingest a document into a Contextual AI datastore": "Télécharger et ingérer un document dans un datastore IA Contextuel",
18
- "Parse a document file into structured Markdown and/or JSON format": "Analyser un fichier de document dans un format structuré Markdown et/ou JSON",
19
- "Create a new Contextual AI agent with specified configuration": "Créer un nouvel agent IA contextuel avec une configuration spécifiée",
20
- "Invite new users to the Contextual AI workspace": "Invitez de nouveaux utilisateurs à l'espace de travail contextuel AI",
21
- "Create a new datastore for organizing documents": "Créer un nouveau datastore pour organiser les documents",
22
- "Agent": "Agent",
23
- "Message": "Message",
24
- "Conversation ID": "ID de la conversation",
25
- "Include Retrieval Content": "Inclure le contenu de récupération",
26
- "Prompt": "Prompt",
27
- "Model Version": "Version du modèle",
28
- "Knowledge Sources": "Sources de connaissances",
29
- "System Prompt": "Message du système",
30
- "Max Tokens": "Tokens max",
31
- "Temperature": "Température",
32
- "Top P": "Top P",
33
- "Avoid Commentary": "Éviter les commentaires",
34
- "Datastore": "Datastore",
35
- "Document File": "Fichier de document",
36
- "Custom Metadata": "Métadonnées personnalisées",
37
- "Configuration Override": "Remplacer la configuration",
38
- "Parse Mode": "Mode d'analyse",
39
- "Page Range": "Page Range",
40
- "Enable Document Hierarchy": "Activer la hiérarchie des documents",
41
- "Enable Split Tables": "Activer les tables partagées",
42
- "Max Split Table Cells": "Nombre maximum de cellules de table divisées",
43
- "Figure Caption Mode": "Mode de légende de la figure",
44
- "Agent Name": "Nom de l'agent",
45
- "Description": "Libellé",
46
- "Datastores": "Datastores",
47
- "Filter Prompt": "Message de filtre",
48
- "Users to Invite": "Utilisateurs à inviter",
49
- "Tenant Short Name": "Nom court du locataire",
50
- "Datastore Name": "Datastore Name",
51
- "Select the agent to query": "Sélectionnez l'agent à interroger",
52
- "The message to send to the agent": "Le message à envoyer à l'agent",
53
- "Optional conversation ID to continue an existing conversation (leave empty for new conversation)": "ID optionnel de la conversation pour continuer une conversation existante (laisser vide pour une nouvelle conversation)",
54
- "Include the text of retrieved contents in the response": "Inclure le texte du contenu récupéré dans la réponse",
55
- "The text prompt to generate a response for": "L'invite de texte pour générer une réponse pour",
56
- "The version of Contextual's GLM to use": "La version du GLM de Contextuel à utiliser",
57
- "Optional knowledge sources to ground the generation (leave empty for general generation)": "Sources optionnelles de connaissances pour mettre à terre la génération (laisser vide pour la génération générale)",
58
- "Optional system instructions for the model": "Instructions système optionnelles pour le modèle",
59
- "Maximum number of tokens to generate (default: 1024)": "Nombre maximum de jetons à générer (par défaut: 1024)",
60
- "Sampling temperature (0.0 to 1.0, lower = more focused, higher = more creative)": "Température d'échantillonnage (0.0 à 1.0, inférieur = plus concentré, plus élevé = plus créatif)",
61
- "Nucleus sampling parameter (0.0 to 1.0)": "Paramètre d'échantillonnage du noyau (0.0 à 1.0)",
62
- "Avoid providing additional conversational commentary not grounded in context": "Éviter de fournir des commentaires de conversation supplémentaires non fondés dans le contexte",
63
- "Select the datastore to upload the document to": "Sélectionnez le datastore vers lequel télécharger le document",
64
- "The document file to upload (PDF, HTML, DOC, DOCX, PPT, PPTX)": "Le fichier de document à télécharger (PDF, HTML, DOC, DOCX, PPT, PPTX)",
65
- "Optional custom metadata as key-value pairs (max 15 fields, 2KB total)": "Métadonnées personnalisées optionnelles comme paires clé-valeur (maximum 15 champs, 2KB total)",
66
- "Optional configuration override in JSON format for this specific document": "Substitution de configuration optionnelle au format JSON pour ce document spécifique",
67
- "The document file to parse (PDF, DOC, DOCX, PPT, PPTX)": "Le fichier de document à analyser (PDF, DOC, DOCX, PPT, PPTX)",
68
- "Parsing mode - basic for simple text, standard for complex documents": "Mode d'analyse - basique pour le texte simple, standard pour les documents complexes",
69
- "Optional page range to parse (e.g., \"0,1,2\" or \"0-2,5,6\")": "Plage de pages facultative à analyser (par exemple, \"0,1,2\" ou \"0-2,5,6\")",
70
- "Add table of contents with document structure (beta feature)": "Ajouter une table des matières avec la structure du document (fonctionnalité bêta)",
71
- "Split large tables into multiple tables with headers": "Diviser les grandes tables en plusieurs tables avec des en-têtes",
72
- "Threshold for splitting large tables (only used when split tables is enabled)": "Seuil de séparation des grandes tables (uniquement utilisé lorsque les tables séparées sont activées)",
73
- "How thorough figure captions should be": "Quelle doit être la précision des légendes de chiffres",
74
- "Name for the new agent": "Nom du nouvel agent",
75
- "Optional description of the agent": "Description optionnelle de l'agent",
76
- "Select datastores to associate with this agent (leave empty to create new datastore)": "Sélectionnez les datastores à associer à cet agent (laissez vide pour créer un nouveau datastore)",
77
- "Optional system prompt for the agent": "Demande de système optionnelle pour l'agent",
78
- "Optional prompt for filtering retrieved chunks": "Demande optionnelle de filtrage des chunks récupérés",
79
- "List of users to invite": "Liste des utilisateurs à inviter",
80
- "The short name of the tenant/workspace": "Le nom abrégé du locataire/de l'espace de travail",
81
- "Name for the new datastore": "Nom du nouveau datastore",
82
- "GLM v2": "GLM v2",
83
- "GLM v1": "GLM v1",
84
- "Basic (text-only)": "Basique (texte uniquement)",
85
- "Standard (complex documents)": "Standard (documents complexes)",
86
- "Concise": "Concise",
87
- "Detailed (beta)": "Détaillé (bêta)",
88
- "New Agent": "Nouvel Agent",
89
- "Triggers when a new Contextual AI agent is created": "Déclenche lorsqu'un nouvel agent IA contextuelle est créé"
90
- }
package/src/i18n/ja.json DELETED
@@ -1,90 +0,0 @@
1
- {
2
- "Integrate with Contextual AI to automate document processing and AI workflows": "ドキュメント処理とAIワークフローを自動化するためのコンテキストAIとの統合",
3
- "API Key": "API キー",
4
- "Base URL": "ベースURL",
5
- "Your Contextual AI API key": "コンテキストの AI API キー",
6
- "API base URL (leave blank for default)": "API ベース URL (既定値は空白のまま)",
7
- "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: ": "\n## Contextual AI Connection Setup\n\n### Prerequisites\n- Create a Contextual AI account at [Contextual AI](https://contextual.ai)\n- Generate an API key from your workspace settings\n- You'll receive $25 in free credits (or $50 with work email)\n\n### Authentication Fields\n\n**API Key**: Your Contextual AI API key (required)\n- Sign in to your Contextual AI workspace\n- Navigate to API Keys in the sidebar\n- Click \"Create API Key\" and follow the instructions\n- Copy the generated key and paste it here\n\n**Base URL**: The API base URL (optional)\n- Leave blank to use the default: `https://api.contextual.ai/v1`\n- Only change if you have a custom deployment\n",
8
- "Query Agent": "クエリエージェント",
9
- "Generate Text": "テキストの生成",
10
- "Ingest Document": "Ingest Document",
11
- "Parse File": "解析ファイル",
12
- "Create Agent": "エージェントを作成",
13
- "Invite Users": "ユーザーを招待",
14
- "Create Datastore": "Create Datastore",
15
- "Send a message to a Contextual AI agent and get a response": "コンテキストの AI エージェントにメッセージを送信し、応答を取得します",
16
- "Generate text using Contextual AI's Grounded Language Model": "コンテキストAIのグラウンド言語モデルを使用してテキストを生成",
17
- "Upload and ingest a document into a Contextual AI datastore": "ドキュメントをコンテキストの AI データストアにアップロードして取り込みます。",
18
- "Parse a document file into structured Markdown and/or JSON format": "ドキュメントファイルを構造化Markdownおよび/またはJSON形式にパースします",
19
- "Create a new Contextual AI agent with specified configuration": "指定された設定で新しいコンテキストAIエージェントを作成します",
20
- "Invite new users to the Contextual AI workspace": "Contextual AI ワークスペースに新規ユーザーを招待",
21
- "Create a new datastore for organizing documents": "ドキュメントを整理するための新しいデータストアを作成します",
22
- "Agent": "エージェント",
23
- "Message": "メッセージ",
24
- "Conversation ID": "会話ID",
25
- "Include Retrieval Content": "検索内容を含める",
26
- "Prompt": "Prompt",
27
- "Model Version": "モデルのバージョン",
28
- "Knowledge Sources": "ナレッジソース",
29
- "System Prompt": "システムのプロンプト表示",
30
- "Max Tokens": "最大トークン",
31
- "Temperature": "温度",
32
- "Top P": "トップ P",
33
- "Avoid Commentary": "コメントを避けてください",
34
- "Datastore": "Datastore",
35
- "Document File": "ドキュメントファイル",
36
- "Custom Metadata": "カスタムメタデータ",
37
- "Configuration Override": "設定の上書き",
38
- "Parse Mode": "解析モード",
39
- "Page Range": "Page Range",
40
- "Enable Document Hierarchy": "ドキュメント階層を有効にする",
41
- "Enable Split Tables": "テーブルの分割を有効にする",
42
- "Max Split Table Cells": "テーブルセルの最大分割数",
43
- "Figure Caption Mode": "図表番号モード",
44
- "Agent Name": "エージェント名",
45
- "Description": "Description",
46
- "Datastores": "Datastores",
47
- "Filter Prompt": "フィルタのプロンプト表示",
48
- "Users to Invite": "招待するユーザー",
49
- "Tenant Short Name": "テナントショート名",
50
- "Datastore Name": "Datastore Name",
51
- "Select the agent to query": "問い合わせるエージェントを選択します",
52
- "The message to send to the agent": "エージェントに送信するメッセージ",
53
- "Optional conversation ID to continue an existing conversation (leave empty for new conversation)": "既存の会話を続行するオプションの会話ID(新しい会話は空白のまま)",
54
- "Include the text of retrieved contents in the response": "取得した内容のテキストを返信に含める",
55
- "The text prompt to generate a response for": "応答の生成を促すテキスト",
56
- "The version of Contextual's GLM to use": "使用する Contextual の GLM のバージョン",
57
- "Optional knowledge sources to ground the generation (leave empty for general generation)": "生成を確立するオプションの知識ソース (一般世代には空白のまま)",
58
- "Optional system instructions for the model": "モデルのオプションのシステム手順",
59
- "Maximum number of tokens to generate (default: 1024)": "生成するトークンの最大数(デフォルト:1024)",
60
- "Sampling temperature (0.0 to 1.0, lower = more focused, higher = more creative)": "サンプリング温度(0.0から1.0、低い方が集中、高い方がクリエイティブ)",
61
- "Nucleus sampling parameter (0.0 to 1.0)": "核サンプリングパラメータ (0.0 から 1.0)",
62
- "Avoid providing additional conversational commentary not grounded in context": "コンテキストに基づいていない追加の会話的なコメントを提供しないでください",
63
- "Select the datastore to upload the document to": "ドキュメントをアップロードするデータストアを選択してください",
64
- "The document file to upload (PDF, HTML, DOC, DOCX, PPT, PPTX)": "アップロードするドキュメントファイル (PDF、HTML、DOC、DOCX、PPT、PPTX)",
65
- "Optional custom metadata as key-value pairs (max 15 fields, 2KB total)": "キーと値のペアとしてオプションのカスタムメタデータ(最大 15 フィールド、合計 2KB )",
66
- "Optional configuration override in JSON format for this specific document": "この特定のドキュメントのJSON形式でオプションの設定を上書きする",
67
- "The document file to parse (PDF, DOC, DOCX, PPT, PPTX)": "解析するドキュメントファイル (PDF、DOC、DOCX、PPT、PPTX)",
68
- "Parsing mode - basic for simple text, standard for complex documents": "解析モード - 単純なテキスト、複合ドキュメントの標準",
69
- "Optional page range to parse (e.g., \"0,1,2\" or \"0-2,5,6\")": "パースする任意のページ範囲(例:\"0,1,2\" または \"0-2,5,6\")",
70
- "Add table of contents with document structure (beta feature)": "ドキュメント構造(ベータ機能)で目次を追加",
71
- "Split large tables into multiple tables with headers": "大きなテーブルをヘッダー付きで複数のテーブルに分割",
72
- "Threshold for splitting large tables (only used when split tables is enabled)": "大きなテーブルを分割するためのしきい値 (分割テーブルが有効な場合のみ使用)",
73
- "How thorough figure captions should be": "どのように徹底的な図表番号をする必要があります",
74
- "Name for the new agent": "新しいエージェントの名前",
75
- "Optional description of the agent": "エージェントのオプション説明",
76
- "Select datastores to associate with this agent (leave empty to create new datastore)": "このエージェントに関連付けるデータストアを選択します (新しいデータストアを作成するには空のままにしてください)",
77
- "Optional system prompt for the agent": "エージェントのオプションのシステムプロンプトが表示されます",
78
- "Optional prompt for filtering retrieved chunks": "取得したチャンクをフィルタリングするためのオプションのプロンプトです",
79
- "List of users to invite": "招待するユーザーのリスト",
80
- "The short name of the tenant/workspace": "テナント/ワークスペースの短い名前",
81
- "Name for the new datastore": "新しいデータストアの名前",
82
- "GLM v2": "GLM v2",
83
- "GLM v1": "GLM v1",
84
- "Basic (text-only)": "Basic (text-only)",
85
- "Standard (complex documents)": "標準 (複合ドキュメント)",
86
- "Concise": "Concise",
87
- "Detailed (beta)": "詳細(ベータ版)",
88
- "New Agent": "新しいエージェント",
89
- "Triggers when a new Contextual AI agent is created": "新しいコンテキストの AI エージェントが作成されたときにトリガーします"
90
- }