UNPKG

buroventures-harald-code-core

Version:

Harald Code Core - Core functionality for AI-powered coding assistant

15 lines (14 loc) 483 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { GenerateContentResponse, PartListUnion } from '@google/genai'; /** * Converts a PartListUnion into a string. * If verbose is true, includes summary representations of non-text parts. */ export declare function partToString(value: PartListUnion, options?: { verbose?: boolean; }): string; export declare function getResponseText(response: GenerateContentResponse): string | null;