import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; export declare class Chunks extends APIResource { /** * Edit the content of a specific chunk in a datastore. This operation updates the * chunk's text content and regenerates its embeddings. */ updateContent(datastoreId: string, contentId: string, body: ChunkUpdateContentParams, options?: Core.RequestOptions): Core.APIPromise; } export interface ChunkUpdateContentResponse { } export interface ChunkUpdateContentParams { /** * The new content text for the chunk */ content: string; } export declare namespace Chunks { export { type ChunkUpdateContentResponse as ChunkUpdateContentResponse, type ChunkUpdateContentParams as ChunkUpdateContentParams, }; } //# sourceMappingURL=chunks.d.ts.map