buroventures-harald-code-core
Version:
Harald Code Core - Core functionality for AI-powered coding assistant
14 lines (13 loc) • 460 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { type PartListUnion } from '@google/genai';
/**
* Represents a request to be sent to the Gemini API.
* For now, it's an alias to PartListUnion as the primary content.
* This can be expanded later to include other request parameters.
*/
export type GeminiCodeRequest = PartListUnion;
export declare function partListUnionToString(value: PartListUnion): string;