/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Search200ResponseHitsInnerAllOfEmbeddings */ export interface Search200ResponseHitsInnerAllOfEmbeddings { /** * * @type {Array} * @memberof Search200ResponseHitsInnerAllOfEmbeddings */ 'small3_512'?: Array; /** * * @type {Array} * @memberof Search200ResponseHitsInnerAllOfEmbeddings */ 'clip2'?: Array; } /** * Check if a given object implements the Search200ResponseHitsInnerAllOfEmbeddings interface. */ export declare function instanceOfSearch200ResponseHitsInnerAllOfEmbeddings(value: object): value is Search200ResponseHitsInnerAllOfEmbeddings; export declare function Search200ResponseHitsInnerAllOfEmbeddingsFromJSON(json: any): Search200ResponseHitsInnerAllOfEmbeddings; export declare function Search200ResponseHitsInnerAllOfEmbeddingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Search200ResponseHitsInnerAllOfEmbeddings; export declare function Search200ResponseHitsInnerAllOfEmbeddingsToJSON(json: any): Search200ResponseHitsInnerAllOfEmbeddings; export declare function Search200ResponseHitsInnerAllOfEmbeddingsToJSONTyped(value?: Search200ResponseHitsInnerAllOfEmbeddings | null, ignoreDiscriminator?: boolean): any;