nexus-agents - v2.80.0
    Preparing search index...

    Interface GeminiCliResponse

    Gemini CLI response structure. (Source: CLI testing 2026-01-04)

    interface GeminiCliResponse {
        session_id?: string;
        response: string;
        stats?: {
            models?: Record<
                string,
                {
                    api?: {
                        totalRequests?: number;
                        totalErrors?: number;
                        totalLatencyMs?: number;
                    };
                    tokens?: {
                        input?: number;
                        prompt?: number;
                        candidates?: number;
                        total?: number;
                        cached?: number;
                        thoughts?: number;
                        tool?: number;
                    };
                },
            >;
        };
    }
    Index

    Properties

    session_id?: string
    response: string
    stats?: {
        models?: Record<
            string,
            {
                api?: {
                    totalRequests?: number;
                    totalErrors?: number;
                    totalLatencyMs?: number;
                };
                tokens?: {
                    input?: number;
                    prompt?: number;
                    candidates?: number;
                    total?: number;
                    cached?: number;
                    thoughts?: number;
                    tool?: number;
                };
            },
        >;
    }