Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions openapi/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3249,6 +3249,13 @@
"enum": [
"ephemeral"
]
},
"ttl": {
"type": "string",
"enum": [
"5m",
"1h"
]
}
},
"required": [
Expand Down Expand Up @@ -3281,6 +3288,13 @@
"enum": [
"ephemeral"
]
},
"ttl": {
"type": "string",
"enum": [
"5m",
"1h"
]
}
},
"required": [
Expand Down Expand Up @@ -3337,6 +3351,27 @@
"enum": [
"image_url"
]
},
"cache_control": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"ephemeral"
]
},
"ttl": {
"type": "string",
"enum": [
"5m",
"1h"
]
}
},
"required": [
"type"
]
}
},
"required": [
Expand Down Expand Up @@ -3371,6 +3406,27 @@
"enum": [
"file"
]
},
"cache_control": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"ephemeral"
]
},
"ttl": {
"type": "string",
"enum": [
"5m",
"1h"
]
}
},
"required": [
"type"
]
}
},
"required": [
Expand Down Expand Up @@ -4168,6 +4224,10 @@
"allow_no_match": {
"type": "boolean",
"description": "If true, adds a 'No match' option. When selected, no tag is deposited."
},
"allow_skip": {
"type": "boolean",
"description": "If true, adds a 'Skip' option. When selected, the scorer returns null."
}
},
"required": [
Expand Down
42 changes: 42 additions & 0 deletions openapi/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3237,6 +3237,11 @@ components:
type: string
enum:
- ephemeral
ttl:
type: string
enum:
- 5m
- 1h
required:
- type
required:
Expand All @@ -3258,6 +3263,11 @@ components:
type: string
enum:
- ephemeral
ttl:
type: string
enum:
- 5m
- 1h
required:
- type
required:
Expand Down Expand Up @@ -3291,6 +3301,20 @@ components:
type: string
enum:
- image_url
cache_control:
type: object
properties:
type:
type: string
enum:
- ephemeral
ttl:
type: string
enum:
- 5m
- 1h
required:
- type
required:
- image_url
- type
Expand All @@ -3314,6 +3338,20 @@ components:
type: string
enum:
- file
cache_control:
type: object
properties:
type:
type: string
enum:
- ephemeral
ttl:
type: string
enum:
- 5m
- 1h
required:
- type
required:
- file
- type
Expand Down Expand Up @@ -3815,6 +3853,10 @@ components:
type: boolean
description: If true, adds a 'No match' option. When selected, no tag is
deposited.
allow_skip:
type: boolean
description: If true, adds a 'Skip' option. When selected, the scorer returns
null.
required:
- type
- use_cot
Expand Down