Skip to content

wip: try deprecating a field #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
944 changes: 472 additions & 472 deletions fern/apis/master/openapi-overrides.yml

Large diffs are not rendered by default.

66 changes: 66 additions & 0 deletions fern/apis/master/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@
},
"/collections/{collection_name}/points/search": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -4872,6 +4873,7 @@
},
"/collections/{collection_name}/points/search/batch": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -4986,6 +4988,7 @@
},
"/collections/{collection_name}/points/search/groups": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -5094,6 +5097,7 @@
},
"/collections/{collection_name}/points/recommend": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -5205,6 +5209,7 @@
},
"/collections/{collection_name}/points/recommend/batch": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -5319,6 +5324,7 @@
},
"/collections/{collection_name}/points/recommend/groups": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -5427,6 +5433,7 @@
},
"/collections/{collection_name}/points/discover": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -5538,6 +5545,7 @@
},
"/collections/{collection_name}/points/discover/batch": {
"post": {
"deprecated": true,
"tags": [
"Search"
],
Expand Down Expand Up @@ -7343,6 +7351,64 @@
"format": "uint",
"minimum": 0,
"nullable": true
},
"multivector_config": {
"description": "Multivector configuration",
"anyOf": [
{
"$ref": "#/components/schemas/StrictModeMultivectorConfig"
},
{
"nullable": true
}
]
},
"sparse_config": {
"description": "Sparse vector configuration",
"anyOf": [
{
"$ref": "#/components/schemas/StrictModeSparseConfig"
},
{
"nullable": true
}
]
}
}
},
"StrictModeMultivectorConfig": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/StrictModeMultivector"
}
},
"StrictModeMultivector": {
"type": "object",
"properties": {
"max_vectors": {
"description": "Max number of vectors in a multivector",
"type": "integer",
"format": "uint",
"minimum": 1,
"nullable": true
}
}
},
"StrictModeSparseConfig": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/StrictModeSparse"
}
},
"StrictModeSparse": {
"type": "object",
"properties": {
"max_length": {
"description": "Max length of sparse vector",
"type": "integer",
"format": "uint",
"minimum": 1,
"nullable": true
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions fern/apis/v0.11.1/generators.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
openapi: ./openapi.json
openapi-overrides: ./openapi-overrides.yml
Loading