teradataml 20.0.0.4__py3-none-any.whl → 20.0.0.5__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.
Potentially problematic release.
This version of teradataml might be problematic. Click here for more details.
- teradataml/LICENSE-3RD-PARTY.pdf +0 -0
- teradataml/README.md +86 -13
- teradataml/__init__.py +2 -1
- teradataml/_version.py +2 -2
- teradataml/analytics/analytic_function_executor.py +7 -12
- teradataml/analytics/json_parser/analytic_functions_argument.py +4 -0
- teradataml/analytics/sqle/__init__.py +16 -1
- teradataml/analytics/utils.py +15 -1
- teradataml/automl/__init__.py +290 -106
- teradataml/automl/autodataprep/__init__.py +471 -0
- teradataml/automl/data_preparation.py +29 -10
- teradataml/automl/data_transformation.py +11 -0
- teradataml/automl/feature_engineering.py +64 -4
- teradataml/automl/feature_exploration.py +639 -25
- teradataml/automl/model_training.py +1 -1
- teradataml/clients/auth_client.py +2 -2
- teradataml/common/constants.py +61 -26
- teradataml/common/messagecodes.py +2 -1
- teradataml/common/messages.py +5 -4
- teradataml/common/utils.py +255 -37
- teradataml/context/context.py +225 -87
- teradataml/data/apriori_example.json +22 -0
- teradataml/data/docs/sqle/docs_17_20/Apriori.py +138 -0
- teradataml/data/docs/sqle/docs_17_20/NERExtractor.py +121 -0
- teradataml/data/docs/sqle/docs_17_20/NGramSplitter.py +3 -3
- teradataml/data/docs/sqle/docs_17_20/SMOTE.py +212 -0
- teradataml/data/docs/sqle/docs_17_20/TextMorph.py +119 -0
- teradataml/data/docs/sqle/docs_17_20/TextParser.py +54 -3
- teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/DFFT.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFT2.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFTConv.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +4 -4
- teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +6 -6
- teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +4 -4
- teradataml/data/docs/uaf/docs_17_20/MultivarRegr.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/PACF.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/PowerTransform.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/Resample.py +5 -5
- teradataml/data/docs/uaf/docs_17_20/SAX.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/SimpleExp.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/Smoothma.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/UNDIFF.py +1 -1
- teradataml/data/jsons/sqle/17.20/NGramSplitter.json +6 -6
- teradataml/data/jsons/sqle/17.20/TD_Apriori.json +181 -0
- teradataml/data/jsons/sqle/17.20/TD_NERExtractor.json +145 -0
- teradataml/data/jsons/sqle/17.20/TD_SMOTE.json +267 -0
- teradataml/data/jsons/sqle/17.20/TD_TextMorph.json +134 -0
- teradataml/data/jsons/sqle/17.20/TD_TextParser.json +114 -9
- teradataml/data/jsons/sqle/20.00/AI_AnalyzeSentiment.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_AskLLM.json +420 -0
- teradataml/data/jsons/sqle/20.00/AI_DetectLanguage.json +343 -0
- teradataml/data/jsons/sqle/20.00/AI_ExtractKeyPhrases.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_MaskPII.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_RecognizeEntities.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_RecognizePIIEntities.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_TextClassifier.json +359 -0
- teradataml/data/jsons/sqle/20.00/AI_TextEmbeddings.json +360 -0
- teradataml/data/jsons/sqle/20.00/AI_TextSummarize.json +343 -0
- teradataml/data/jsons/sqle/20.00/AI_TextTranslate.json +343 -0
- teradataml/data/jsons/sqle/20.00/TD_SMOTE.json +2 -2
- teradataml/data/jsons/sqle/20.00/TD_VectorDistance.json +1 -1
- teradataml/data/ner_dict.csv +8 -0
- teradataml/data/ner_input_eng.csv +7 -0
- teradataml/data/ner_rule.csv +5 -0
- teradataml/data/pos_input.csv +40 -0
- teradataml/data/tdnerextractor_example.json +14 -0
- teradataml/data/teradataml_example.json +13 -0
- teradataml/data/textmorph_example.json +5 -0
- teradataml/data/to_num_data.csv +4 -0
- teradataml/data/tochar_data.csv +5 -0
- teradataml/data/trans_dense.csv +16 -0
- teradataml/data/trans_sparse.csv +55 -0
- teradataml/dataframe/copy_to.py +37 -26
- teradataml/dataframe/data_transfer.py +61 -45
- teradataml/dataframe/dataframe.py +130 -50
- teradataml/dataframe/dataframe_utils.py +15 -2
- teradataml/dataframe/functions.py +109 -9
- teradataml/dataframe/sql.py +328 -76
- teradataml/dbutils/dbutils.py +33 -13
- teradataml/dbutils/filemgr.py +14 -10
- teradataml/lib/aed_0_1.dll +0 -0
- teradataml/opensource/_base.py +6 -157
- teradataml/options/configure.py +4 -5
- teradataml/scriptmgmt/UserEnv.py +305 -38
- teradataml/scriptmgmt/lls_utils.py +376 -130
- teradataml/store/__init__.py +1 -1
- teradataml/table_operators/Apply.py +16 -1
- teradataml/table_operators/Script.py +20 -1
- teradataml/table_operators/table_operator_util.py +58 -9
- teradataml/utils/dtypes.py +2 -1
- teradataml/utils/internal_buffer.py +22 -2
- teradataml/utils/validators.py +313 -57
- {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.5.dist-info}/METADATA +89 -14
- {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.5.dist-info}/RECORD +107 -77
- {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.5.dist-info}/WHEEL +0 -0
- {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.5.dist-info}/top_level.txt +0 -0
- {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.5.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,420 @@
|
|
|
1
|
+
{
|
|
2
|
+
"json_schema_major_version": "1",
|
|
3
|
+
"json_schema_minor_version": "2",
|
|
4
|
+
"json_content_version": "1",
|
|
5
|
+
"function_name": "AI_AskLLM",
|
|
6
|
+
"function_version": "1.0",
|
|
7
|
+
"function_type": "fastpath",
|
|
8
|
+
"function_category": "Text Analytics AI",
|
|
9
|
+
"function_alias_name": "AIAskLLM",
|
|
10
|
+
"function_r_name": "aa.ai_askllm",
|
|
11
|
+
"supports_view": false,
|
|
12
|
+
"short_description": "This function enables users to provide a tailored prompt to the LLM, enhancing results according to their unique use cases or data input requirements. Users will have the option to specify two input columns: one for the data and the other for a question or reference.",
|
|
13
|
+
"long_description": "This function enables users to provide a tailored prompt to the LLM, enhancing results according to their unique use cases or data input requirements. Users will have the option to specify two input columns: one for the data and the other for a question or reference.",
|
|
14
|
+
"input_tables": [
|
|
15
|
+
{
|
|
16
|
+
"requiredInputKind": [
|
|
17
|
+
"PartitionByAny",
|
|
18
|
+
"PartitionByKey"
|
|
19
|
+
],
|
|
20
|
+
"isOrdered": false,
|
|
21
|
+
"partitionByOne": false,
|
|
22
|
+
"name": "InputTable",
|
|
23
|
+
"alternateNames": [],
|
|
24
|
+
"isRequired": true,
|
|
25
|
+
"rDescription": "Specifies the table containing the questions.",
|
|
26
|
+
"description": "Specifies the table containing the questions.",
|
|
27
|
+
"datatype": "TABLE_ALIAS",
|
|
28
|
+
"allowsLists": false,
|
|
29
|
+
"rName": "data",
|
|
30
|
+
"useInR": true,
|
|
31
|
+
"rOrderNum": 0
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"requiredInputKind": [
|
|
35
|
+
"PartitionByAny",
|
|
36
|
+
"PartitionByKey"
|
|
37
|
+
],
|
|
38
|
+
"isOrdered": false,
|
|
39
|
+
"partitionByOne": false,
|
|
40
|
+
"name": "ContextTable",
|
|
41
|
+
"alternateNames": [],
|
|
42
|
+
"isRequired": true,
|
|
43
|
+
"rDescription": "Specifies the table containing the context to answer the question.",
|
|
44
|
+
"description": "Specifies the table containing the context to answer the question.",
|
|
45
|
+
"datatype": "TABLE_ALIAS",
|
|
46
|
+
"allowsLists": false,
|
|
47
|
+
"rName": "context",
|
|
48
|
+
"useInR": true,
|
|
49
|
+
"rOrderNum": 1
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
],
|
|
53
|
+
"argument_clauses": [
|
|
54
|
+
{
|
|
55
|
+
"name": "ApiBase",
|
|
56
|
+
"alternateNames": [],
|
|
57
|
+
"isRequired": false,
|
|
58
|
+
"rOrderNum": 2,
|
|
59
|
+
"allowNaN": false,
|
|
60
|
+
"description": "Specifies the LLM API base URL for azure.",
|
|
61
|
+
"rDescription": "Specifies the LLM API base URL for azure.",
|
|
62
|
+
"datatype": "STRING",
|
|
63
|
+
"allowsLists": false,
|
|
64
|
+
"allowPadding": true,
|
|
65
|
+
"rName": "api.base",
|
|
66
|
+
"useInR": true,
|
|
67
|
+
"rFormulaUsage": false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "ApiKey",
|
|
71
|
+
"alternateNames": [],
|
|
72
|
+
"isRequired": false,
|
|
73
|
+
"rOrderNum": 3,
|
|
74
|
+
"allowNaN": false,
|
|
75
|
+
"description": "Specifies the LLM API Key for azure.",
|
|
76
|
+
"rDescription": "Specifies the LLM API Key for azure.",
|
|
77
|
+
"datatype": "STRING",
|
|
78
|
+
"allowsLists": false,
|
|
79
|
+
"allowPadding": true,
|
|
80
|
+
"rName": "api.key",
|
|
81
|
+
"useInR": true,
|
|
82
|
+
"rFormulaUsage": false
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "ApiVersion",
|
|
86
|
+
"alternateNames": [],
|
|
87
|
+
"isRequired": false,
|
|
88
|
+
"rOrderNum": 4,
|
|
89
|
+
"allowNaN": false,
|
|
90
|
+
"description": "Specifies the LLM API version for azure.",
|
|
91
|
+
"rDescription": "Specifies the LLM API version for azure.",
|
|
92
|
+
"datatype": "STRING",
|
|
93
|
+
"allowsLists": false,
|
|
94
|
+
"allowPadding": true,
|
|
95
|
+
"rName": "api.version",
|
|
96
|
+
"useInR": true,
|
|
97
|
+
"rFormulaUsage": false
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "DeploymentId",
|
|
101
|
+
"alternateNames": [],
|
|
102
|
+
"isRequired": false,
|
|
103
|
+
"rOrderNum": 5,
|
|
104
|
+
"allowNaN": false,
|
|
105
|
+
"description": "Specifies the deployment id of the LLM. It takes engine id for azure OpenAI.",
|
|
106
|
+
"rDescription": "Specifies the deployment id of the LLM. It takes engine id for azure OpenAI.",
|
|
107
|
+
"datatype": "STRING",
|
|
108
|
+
"allowsLists": false,
|
|
109
|
+
"allowPadding": true,
|
|
110
|
+
"rName": "deployment.id",
|
|
111
|
+
"useInR": true,
|
|
112
|
+
"rFormulaUsage": false
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "ModelName",
|
|
116
|
+
"alternateNames": [],
|
|
117
|
+
"isRequired": false,
|
|
118
|
+
"rOrderNum": 6,
|
|
119
|
+
"allowNaN": false,
|
|
120
|
+
"description": "Name of the large language model to be used for text analytics tasks.",
|
|
121
|
+
"rDescription": "Name of the large language model to be used for text analytics tasks.",
|
|
122
|
+
"datatype": "STRING",
|
|
123
|
+
"allowsLists": false,
|
|
124
|
+
"allowPadding": true,
|
|
125
|
+
"rName": "model.name",
|
|
126
|
+
"useInR": true,
|
|
127
|
+
"rFormulaUsage": false
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "ModelArgs",
|
|
131
|
+
"alternateNames": [],
|
|
132
|
+
"isRequired": false,
|
|
133
|
+
"rOrderNum": 7,
|
|
134
|
+
"allowNaN": false,
|
|
135
|
+
"description": "JSON string representing the inference parameters for the selected LLM Model.",
|
|
136
|
+
"rDescription": "JSON string representing the inference parameters for the selected LLM Model.",
|
|
137
|
+
"datatype": "STRING",
|
|
138
|
+
"allowsLists": false,
|
|
139
|
+
"allowPadding": true,
|
|
140
|
+
"rName": "model.args",
|
|
141
|
+
"useInR": true,
|
|
142
|
+
"rFormulaUsage": false
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "ApiType",
|
|
146
|
+
"alternateNames": [],
|
|
147
|
+
"isRequired": true,
|
|
148
|
+
"rOrderNum": 8,
|
|
149
|
+
"permittedValues": ["azure","aws","gcp","nim"],
|
|
150
|
+
"allowNaN": false,
|
|
151
|
+
"description": "Identification of the cloud platform.",
|
|
152
|
+
"rDescription": "Identification of the cloud platform.",
|
|
153
|
+
"datatype": "STRING",
|
|
154
|
+
"allowsLists": false,
|
|
155
|
+
"allowPadding": true,
|
|
156
|
+
"rName": "api.type",
|
|
157
|
+
"useInR": true,
|
|
158
|
+
"rFormulaUsage": false,
|
|
159
|
+
"rDefaultValue": null
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "AccessKey",
|
|
163
|
+
"alternateNames": [],
|
|
164
|
+
"isRequired": false,
|
|
165
|
+
"rOrderNum": 9,
|
|
166
|
+
"allowNaN": false,
|
|
167
|
+
"description": "Specifies the AWS Bedrock service access key.",
|
|
168
|
+
"rDescription": "Specifies the AWS Bedrock service access key.",
|
|
169
|
+
"datatype": "STRING",
|
|
170
|
+
"allowsLists": false,
|
|
171
|
+
"allowPadding": true,
|
|
172
|
+
"rName": "access.key",
|
|
173
|
+
"useInR": true,
|
|
174
|
+
"rFormulaUsage": false
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "SecretKey",
|
|
178
|
+
"alternateNames": [],
|
|
179
|
+
"isRequired": false,
|
|
180
|
+
"rOrderNum": 10,
|
|
181
|
+
"allowNaN": false,
|
|
182
|
+
"description": "Specifies the AWS Bedrock service secret key.",
|
|
183
|
+
"rDescription": "Specifies the AWS Bedrock service secret key.",
|
|
184
|
+
"datatype": "STRING",
|
|
185
|
+
"allowsLists": false,
|
|
186
|
+
"allowPadding": true,
|
|
187
|
+
"rName": "secret.key",
|
|
188
|
+
"useInR": true,
|
|
189
|
+
"rFormulaUsage": false
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "SessionKey",
|
|
193
|
+
"alternateNames": [],
|
|
194
|
+
"isRequired": false,
|
|
195
|
+
"rOrderNum": 11,
|
|
196
|
+
"allowNaN": false,
|
|
197
|
+
"description": "Specifies the AWS bedrock service session key.",
|
|
198
|
+
"rDescription": "Specifies the AWS bedrock service session key.",
|
|
199
|
+
"datatype": "STRING",
|
|
200
|
+
"allowsLists": false,
|
|
201
|
+
"allowPadding": true,
|
|
202
|
+
"rName": "session.key",
|
|
203
|
+
"useInR": true,
|
|
204
|
+
"rFormulaUsage": false
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "Region",
|
|
208
|
+
"alternateNames": [],
|
|
209
|
+
"isRequired": false,
|
|
210
|
+
"rOrderNum": 12,
|
|
211
|
+
"allowNaN": false,
|
|
212
|
+
"description": "Specifies the name of the AWS Bedrock service region or Google Cloud service region depending on the api type.",
|
|
213
|
+
"rDescription": "Specifies the name of the AWS Bedrock service region or Google Cloud service region depending on the api type.",
|
|
214
|
+
"datatype": "STRING",
|
|
215
|
+
"allowsLists": false,
|
|
216
|
+
"allowPadding": true,
|
|
217
|
+
"rName": "region",
|
|
218
|
+
"useInR": true,
|
|
219
|
+
"rFormulaUsage": false
|
|
220
|
+
},
|
|
221
|
+
|
|
222
|
+
{
|
|
223
|
+
"name": "AccessToken",
|
|
224
|
+
"alternateNames": [],
|
|
225
|
+
"isRequired": false,
|
|
226
|
+
"rOrderNum": 13,
|
|
227
|
+
"allowNaN": false,
|
|
228
|
+
"description": "Specifies the session token for google cloud.",
|
|
229
|
+
"rDescription": "Specifies the session token for google cloud.",
|
|
230
|
+
"datatype": "STRING",
|
|
231
|
+
"allowsLists": false,
|
|
232
|
+
"allowPadding": true,
|
|
233
|
+
"rName": "access.token",
|
|
234
|
+
"useInR": true,
|
|
235
|
+
"rFormulaUsage": false
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "Project",
|
|
239
|
+
"alternateNames": [],
|
|
240
|
+
"isRequired": false,
|
|
241
|
+
"rOrderNum": 14,
|
|
242
|
+
"allowNaN": false,
|
|
243
|
+
"description": "Specify the name of the gcp project.",
|
|
244
|
+
"rDescription": "Specify the name of the gcp project.",
|
|
245
|
+
"datatype": "STRING",
|
|
246
|
+
"allowsLists": false,
|
|
247
|
+
"allowPadding": true,
|
|
248
|
+
"rName": "project",
|
|
249
|
+
"useInR": true,
|
|
250
|
+
"rFormulaUsage": false
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "EnableSafety",
|
|
254
|
+
"alternateNames": [],
|
|
255
|
+
"isRequired": false,
|
|
256
|
+
"defaultValue": "TRUE",
|
|
257
|
+
"rOrderNum": 15,
|
|
258
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
259
|
+
"allowNaN": false,
|
|
260
|
+
"description": "Specifies if the safety feature needs to be enabled when api_type is gcp.",
|
|
261
|
+
"rDescription": "Specifies if the safety feature needs to be enabled when api_type is gcp.",
|
|
262
|
+
"datatype": "STRING",
|
|
263
|
+
"allowsLists": false,
|
|
264
|
+
"allowPadding": true,
|
|
265
|
+
"rName": "enable.safety",
|
|
266
|
+
"useInR": true,
|
|
267
|
+
"rFormulaUsage": false
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"targetTable": [
|
|
271
|
+
"InputTable"
|
|
272
|
+
],
|
|
273
|
+
"checkDuplicate": true,
|
|
274
|
+
"allowedTypes": ["VARCHAR"],
|
|
275
|
+
"allowedTypeGroups": [
|
|
276
|
+
"VARCHAR"
|
|
277
|
+
],
|
|
278
|
+
"matchLengthOfArgument": "",
|
|
279
|
+
"allowPadding": false,
|
|
280
|
+
"name": "TextColumn",
|
|
281
|
+
"alternateNames": [],
|
|
282
|
+
"isRequired": true,
|
|
283
|
+
"rDescription": "Specifies the name of the text column to be used as input.",
|
|
284
|
+
"description": "Specifies the name of the text column to be used as input.",
|
|
285
|
+
"datatype": "COLUMNS",
|
|
286
|
+
"allowsLists": false,
|
|
287
|
+
"rName": "text.column",
|
|
288
|
+
"useInR": true,
|
|
289
|
+
"rFormulaUsage": false,
|
|
290
|
+
"rOrderNum": 16
|
|
291
|
+
},
|
|
292
|
+
|
|
293
|
+
{
|
|
294
|
+
"defaultValue": true,
|
|
295
|
+
"permittedValues": [
|
|
296
|
+
"true",
|
|
297
|
+
"false"
|
|
298
|
+
],
|
|
299
|
+
"isOutputColumn": false,
|
|
300
|
+
"name": "isDebug",
|
|
301
|
+
"alternateNames": [],
|
|
302
|
+
"isRequired": false,
|
|
303
|
+
"rDescription": "Specify whether error logging is required.",
|
|
304
|
+
"description": "Specify whether error logging is required.",
|
|
305
|
+
"datatype": "BOOLEAN",
|
|
306
|
+
"allowsLists": false,
|
|
307
|
+
"rName": "isDebug",
|
|
308
|
+
"useInR": true,
|
|
309
|
+
"rOrderNum": 17
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"targetTable": [
|
|
313
|
+
"InputTable"
|
|
314
|
+
],
|
|
315
|
+
"checkDuplicate": true,
|
|
316
|
+
"allowedTypes": [],
|
|
317
|
+
"allowedTypeGroups": [
|
|
318
|
+
"ALL"
|
|
319
|
+
],
|
|
320
|
+
"matchLengthOfArgument": "",
|
|
321
|
+
"allowPadding": false,
|
|
322
|
+
"name": "Accumulate",
|
|
323
|
+
"alternateNames": [],
|
|
324
|
+
"isRequired": false,
|
|
325
|
+
"rDescription": "Specifies the input table columns to copy to the output table. By default, the function doesn't copy any input table columns to the output table.",
|
|
326
|
+
"description": "Specifies the input table columns to copy to the output table. By default, the function doesn't copy any input table columns to the output table.",
|
|
327
|
+
"datatype": "COLUMNS",
|
|
328
|
+
"allowsLists": true,
|
|
329
|
+
"rName": "accumulate",
|
|
330
|
+
"useInR": true,
|
|
331
|
+
"rOrderNum": 18
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "AUTHORIZATION",
|
|
335
|
+
"alternateNames": [],
|
|
336
|
+
"isRequired": false,
|
|
337
|
+
"rOrderNum":19,
|
|
338
|
+
"allowNaN": false,
|
|
339
|
+
"description": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
340
|
+
"rDescription": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
341
|
+
"datatype": "STRING",
|
|
342
|
+
"allowsLists": false,
|
|
343
|
+
"allowPadding": true,
|
|
344
|
+
"rName": "authorization",
|
|
345
|
+
"useInR": true,
|
|
346
|
+
"rFormulaUsage": false
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "prompt",
|
|
350
|
+
"alternateNames": [],
|
|
351
|
+
"isRequired": false,
|
|
352
|
+
"rOrderNum":20,
|
|
353
|
+
"allowNaN": false,
|
|
354
|
+
"description": "Specifies the custom prompt.",
|
|
355
|
+
"rDescription": "SSpecifies the custom prompt.",
|
|
356
|
+
"datatype": "STRING",
|
|
357
|
+
"allowsLists": false,
|
|
358
|
+
"allowPadding": true,
|
|
359
|
+
"rName": "prompt",
|
|
360
|
+
"useInR": true,
|
|
361
|
+
"rFormulaUsage": false
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "QUESTIONPOSITION",
|
|
365
|
+
"alternateNames": [],
|
|
366
|
+
"isRequired": false,
|
|
367
|
+
"rOrderNum":21,
|
|
368
|
+
"allowNaN": false,
|
|
369
|
+
"description": "Specifies the position of the question in the custom prompt.",
|
|
370
|
+
"rDescription": "Specifies the position of the question in the custom prompt.",
|
|
371
|
+
"datatype": "STRING",
|
|
372
|
+
"allowsLists": false,
|
|
373
|
+
"allowPadding": true,
|
|
374
|
+
"rName": "question.position",
|
|
375
|
+
"useInR": true,
|
|
376
|
+
"rFormulaUsage": false
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "DATAPOSITION",
|
|
380
|
+
"alternateNames": [],
|
|
381
|
+
"isRequired": false,
|
|
382
|
+
"rOrderNum":22,
|
|
383
|
+
"allowNaN": false,
|
|
384
|
+
"description": "Specifies the position of the input data in the custom prompt.",
|
|
385
|
+
"rDescription": "Specifies the position of the input data in the custom prompt.",
|
|
386
|
+
"datatype": "STRING",
|
|
387
|
+
"allowsLists": false,
|
|
388
|
+
"allowPadding": true,
|
|
389
|
+
"rName": "data.position",
|
|
390
|
+
"useInR": true,
|
|
391
|
+
"rFormulaUsage": false
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"targetTable": [
|
|
395
|
+
"ContextTable"
|
|
396
|
+
],
|
|
397
|
+
"checkDuplicate": true,
|
|
398
|
+
"allowedTypes": ["VARCHAR"],
|
|
399
|
+
"allowedTypeGroups": [
|
|
400
|
+
"VARCHAR"
|
|
401
|
+
],
|
|
402
|
+
"matchLengthOfArgument": "",
|
|
403
|
+
"allowPadding": false,
|
|
404
|
+
"name": "ContextColumn",
|
|
405
|
+
"alternateNames": [],
|
|
406
|
+
"isRequired": true,
|
|
407
|
+
"rDescription": "Specifies the name of the context column to be used as input.",
|
|
408
|
+
"description": "Specifies the name of the context column to be used as input.",
|
|
409
|
+
"datatype": "COLUMNS",
|
|
410
|
+
"allowsLists": false,
|
|
411
|
+
"rName": "context.column",
|
|
412
|
+
"useInR": true,
|
|
413
|
+
"rFormulaUsage": false,
|
|
414
|
+
"rOrderNum": 23
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
]
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
|