Skip to content

Commit

Permalink
fixing properties in dense vector index options (#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
l-trotta authored Jul 16, 2024
1 parent 177dfd3 commit f8b2820
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 17 deletions.
7 changes: 4 additions & 3 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions output/schema/schema-serverless.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions specification/_types/mapping/DenseVectorIndexOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@
* under the License.
*/

import { integer } from '@_types/Numeric'
import { float, integer } from '@_types/Numeric'

export class DenseVectorIndexOptions {
type: string
m: integer
ef_construction: integer
m?: integer
ef_construction?: integer
confidence_interval?: float
}

0 comments on commit f8b2820

Please sign in to comment.