Skip to content

Commit 30a97b0

Browse files
Refactor TableResponse into ArrowTableResponse + ParquetTableResponse and Regenerate SDK with API Gateway 1.1485.0 (#323)
1 parent 1dba559 commit 30a97b0

115 files changed

Lines changed: 4345 additions & 23 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 92 additions & 1 deletion
Large diffs are not rendered by default.

config.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,13 @@
216216
"skipValidation": {
217217
"Filesystem": ["ResourceType"]
218218
},
219-
"tableOperations": [
219+
"arrowTableOperations": [
220220
"readTableDataset",
221221
"getResultsSqlQuery"
222+
],
223+
"parquetTableOperations": [
224+
"parquetExperimentSeries",
225+
"parquetExperimentArtifactTable"
222226
]
223227
}
224228
},

docs-snippets-npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"sls": {
2525
"dependencies": {
2626
"com.palantir.foundry.api:api-gateway": {
27-
"minVersion": "1.1483.0",
27+
"minVersion": "1.1485.0",
2828
"maxVersion": "1.x.x",
2929
"optional": false
3030
}

docs-snippets-npm/src/index.ts

Lines changed: 37 additions & 2 deletions
Large diffs are not rendered by default.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MediaReferenceType
2+
3+
MediaReferenceType
4+
5+
## Properties
6+
| Name | Type | Required | Description |
7+
| ------------ | ------------- | ------------- | ------------- |
8+
**type** | Literal["mediaReference"] | Yes | None |
9+
10+
11+
[[Back to Model list]](../../../../README.md#models-v1-link) [[Back to API list]](../../../../README.md#apis-v1-link) [[Back to README]](../../../../README.md)

docs/v1/Ontologies/models/OntologyDataType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ BooleanType | boolean
2424
CipherTextType | cipherText
2525
MarkingType | marking
2626
UnsupportedType | unsupported
27+
MediaReferenceType | mediaReference
2728
OntologyArrayType | array
2829
OntologyObjectSetType | objectSet
2930
BinaryType | binary

docs/v1/Ontologies/models/QueryDataType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ LongType | long
2525
BooleanType | boolean
2626
UnsupportedType | unsupported
2727
AttachmentType | attachment
28+
MediaReferenceType | mediaReference
2829
NullType | null
2930
QueryArrayType | array
3031
OntologyObjectSetType | objectSet

docs/v2/Functions/models/QueryDataType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ LongType | long
2323
BooleanType | boolean
2424
UnsupportedType | unsupported
2525
AttachmentType | attachment
26+
MediaReferenceType | mediaReference
2627
NullType | null
2728
QueryArrayType | array
2829
TwoDimensionalAggregation | twoDimensionalAggregation

docs/v2/LanguageModels/AnthropicModel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes |
1515
**max_tokens** | int | The maximum number of tokens to generate before stopping. | |
1616
**messages** | List[AnthropicMessage] | Input messages to the model. This can include a single user-role message or multiple messages with alternating user and assistant roles. | |
1717
**attribution** | Optional[Attribution] | | [optional] |
18+
**output_config** | Optional[AnthropicOutputConfig] | Configuration to control the shape of the model's output | [optional] |
1819
**preview** | Optional[PreviewMode] | Enables the use of preview functionality. | [optional] |
1920
**stop_sequences** | Optional[List[str]] | Custom text sequences that will cause the model to stop generating. | [optional] |
2021
**system** | Optional[List[AnthropicSystemMessage]] | A system prompt is a way of providing context and instructions to Claude, such as specifying a particular goal or role. As of now, sending multiple system prompts is not supported. | [optional] |
@@ -45,6 +46,8 @@ max_tokens = None
4546
messages = [{"role": "USER"}]
4647
# Optional[Attribution]
4748
attribution = None
49+
# Optional[AnthropicOutputConfig] | Configuration to control the shape of the model's output
50+
output_config = {"effort": "LOW"}
4851
# Optional[PreviewMode] | Enables the use of preview functionality.
4952
preview = None
5053
# Optional[List[str]] | Custom text sequences that will cause the model to stop generating.
@@ -71,6 +74,7 @@ try:
7174
max_tokens=max_tokens,
7275
messages=messages,
7376
attribution=attribution,
77+
output_config=output_config,
7478
preview=preview,
7579
stop_sequences=stop_sequences,
7680
system=system,
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# AnthropicEffort
2+
3+
https://docs.anthropic.com/en/docs/build-with-claude/extended-thinking#effort
4+
5+
Controls how many tokens Claude uses when responding.
6+
Supported by Claude models beginning with Opus 4.5.
7+
Setting effort to HIGH produces the same behavior as omitting the parameter entirely.
8+
9+
10+
| **Value** |
11+
| --------- |
12+
| `"LOW"` |
13+
| `"MEDIUM"` |
14+
| `"HIGH"` |
15+
| `"MAX"` |
16+
17+
18+
[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)

0 commit comments

Comments
 (0)