/** * @license * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /// /// import { RequestOptions, SingleRequestOptions } from "../../types"; import { FileMetadata, FileMetadataResponse, ListFilesResponse, ListParams, UploadFileResponse } from "../../types/server"; export interface UploadMetadata { name?: string; ["display_name"]?: string; } /** * Class for managing GoogleAI file uploads. * @public */ export declare class GoogleAIFileManager { apiKey: string; private _requestOptions; constructor(apiKey: string, _requestOptions?: RequestOptions); /** * Upload a file. */ uploadFile(fileData: string | Buffer, fileMetadata: FileMetadata): Promise; /** * List all uploaded files. * * Any fields set in the optional {@link SingleRequestOptions} parameter will take * precedence over the {@link RequestOptions} values provided at the time of the * {@link GoogleAIFileManager} initialization. */ listFiles(listParams?: ListParams, requestOptions?: SingleRequestOptions): Promise; /** * Get metadata for file with given ID. * * Any fields set in the optional {@link SingleRequestOptions} parameter will take * precedence over the {@link RequestOptions} values provided at the time of the * {@link GoogleAIFileManager} initialization. */ getFile(fileId: string, requestOptions?: SingleRequestOptions): Promise; /** * Delete file with given ID. */ deleteFile(fileId: string): Promise; } export declare function getUploadMetadata(inputMetadata: FileMetadata): FileMetadata;