You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/build/reference/customtask/cmem_plugin_kubernetes-Execute.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,16 @@ Pods are an abstraction that represent groups of one or more application contain
75
75
76
76
77
77
78
+
### Container
79
+
80
+
In case there is more than one container in the pod OR the default container selection does not work, you need to specify the container ID in addition to the pod ID.
- Automatic schema generation based on configuration
29
28
- Built-in error handling and workflow cancellation support
30
29
31
-
## Configuration
32
-
33
-
-**URL**: OpenAI API endpoint (default: https://api.openai.com/v1)
34
-
-**API Key**: Your OpenAI API key for authentication
35
-
-**Model**: The embedding model to use (e.g., text-embedding-3-small)
36
-
-**Timeout**: Request timeout in milliseconds (default: 10000)
37
-
-**Buffer Size**: Number of texts to process per batch (default: 100)
38
-
-**Input Paths**: Comma-separated list of entity paths to embed (default: "text")
39
-
-**Output Paths**: Configurable paths for embedding vectors and source text
40
-
41
30
## Input/Output
42
31
43
32
-**Input**: Entities with text data in specified paths
@@ -56,27 +45,37 @@ representations that capture semantic meaning.
56
45
57
46
### Base URL
58
47
59
-
URL of the OpenAI API (without endpoint path and without trailing slash)
48
+
The base URL of the OpenAI compatible API (without endpoint path).
60
49
61
50
- ID: `base_url`
62
51
- Datatype: `string`
63
-
- Default Value: `https://api.openai.com/v1`
52
+
- Default Value: `https://api.openai.com/v1/`
53
+
54
+
55
+
56
+
### API Type
57
+
58
+
Select the API client type. This determines the authentication method and endpoint configuration used for API requests. Choose `OPENAI` for direct OpenAI API access or `AZURE_OPENAI` for Azure-hosted OpenAI services. Consider using the API version advanced parameter in case you access Azure-hosted OpenAI services.
59
+
60
+
- ID: `api_type`
61
+
- Datatype: `enumeration`
62
+
- Default Value: `OPENAI`
64
63
65
64
66
65
67
-
### The OpenAI API key
66
+
### API key
68
67
69
-
Fill the OpenAI API key if needed (or give a dummy value in case you access an unsecured endpoint).
68
+
An optional API key for authentication.
70
69
71
70
- ID: `api_key`
72
71
- Datatype: `password`
73
72
- Default Value: `None`
74
73
75
74
76
75
77
-
### The embeddings model, e.g. text-embedding-3-small
76
+
### Embeddings model
78
77
79
-
The embeddings model to use (e.g., text-embedding-3-small).
78
+
The identifier of the embeddings model to use. Available model IDs for some public providers can be found here: [Claude](https://docs.claude.com/en/docs/build-with-claude/embeddings#available-models), [OpenAI](https://platform.openai.com/docs/guides/embeddings#embedding-models).
80
79
81
80
- ID: `model`
82
81
- Datatype: `string`
@@ -108,9 +107,19 @@ Paths from input entities to forward to output without modification. These paths
108
107
109
108
## Advanced Parameter
110
109
111
-
### Timeout (Single Request, in Milliseconds)
110
+
### API Version
111
+
112
+
Azure OpenAI API version (only used when API Type is `AZURE_OPENAI`). For more information about OpenAI API version at Azure, please see [the documentation](https://learn.microsoft.com/en-gb/azure/ai-foundry/openai/api-version-lifecycle).
113
+
114
+
- ID: `api_version`
115
+
- Datatype: `string`
116
+
- Default Value: `None`
117
+
118
+
112
119
120
+
### Timeout (milliseconds)
113
121
122
+
The timeout for a single API request in milliseconds.
0 commit comments