/**
 * Platform
 * 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.
 */
import * as runtime from '../runtime';
export interface EmbeddingsApiEmbeddingsEmbeddingsPostRequest {
    model?: string | null;
}
export interface EmbeddingsApiEmbeddingsEnginesModelEmbeddingsPostRequest {
    model: string | null;
}
export interface EmbeddingsApiEmbeddingsOpenaiDeploymentsModelEmbeddingsPostRequest {
    model: string | null;
}
export interface EmbeddingsApiEmbeddingsV1EmbeddingsPostRequest {
    model?: string | null;
}
/**
 *
 */
export declare class EmbeddingsApi extends runtime.BaseAPI {
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsEmbeddingsPostRaw(requestParameters: EmbeddingsApiEmbeddingsEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsEmbeddingsPost(requestParameters?: EmbeddingsApiEmbeddingsEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsEnginesModelEmbeddingsPostRaw(requestParameters: EmbeddingsApiEmbeddingsEnginesModelEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsEnginesModelEmbeddingsPost(requestParameters: EmbeddingsApiEmbeddingsEnginesModelEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsOpenaiDeploymentsModelEmbeddingsPostRaw(requestParameters: EmbeddingsApiEmbeddingsOpenaiDeploymentsModelEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsOpenaiDeploymentsModelEmbeddingsPost(requestParameters: EmbeddingsApiEmbeddingsOpenaiDeploymentsModelEmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsV1EmbeddingsPostRaw(requestParameters: EmbeddingsApiEmbeddingsV1EmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
    /**
     * Follows the exact same API spec as `OpenAI\'s Embeddings API https://platform.openai.com/docs/api-reference/embeddings`  ```bash curl -X POST http://localhost:4000/v1/embeddings  -H \"Content-Type: application/json\"  -H \"Authorization: Bearer sk-1234\"  -d \'{     \"model\": \"text-embedding-ada-002\",     \"input\": \"The quick brown fox jumps over the lazy dog\" }\' ```
     * Embeddings
     */
    embeddingsV1EmbeddingsPost(requestParameters?: EmbeddingsApiEmbeddingsV1EmbeddingsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
}
