import * as z from "zod/v4"; import { EventStream } from "../../lib/event-streams.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type SendChatCompletionRequestGlobals = { /** * The app identifier should be your app's URL and is used as the primary identifier for rankings. * * @remarks * This is used to track API usage per application. */ httpReferer?: string | undefined; /** * The app display name allows you to customize how your app appears in OpenRouter's dashboard. * * @remarks */ appTitle?: string | undefined; /** * Comma-separated list of app categories (e.g. "cli-agent,cloud-agent"). Used for marketplace rankings. * * @remarks */ appCategories?: string | undefined; }; export type SendChatCompletionRequestRequest = { /** * The app identifier should be your app's URL and is used as the primary identifier for rankings. * * @remarks * This is used to track API usage per application. */ httpReferer?: string | undefined; /** * The app display name allows you to customize how your app appears in OpenRouter's dashboard. * * @remarks */ appTitle?: string | undefined; /** * Comma-separated list of app categories (e.g. "cli-agent,cloud-agent"). Used for marketplace rankings. * * @remarks */ appCategories?: string | undefined; /** * Opt-in to surface routing metadata on the response under `openrouter_metadata`. Defaults to `disabled`. */ xOpenRouterExperimentalMetadata?: models.MetadataLevel | undefined; chatRequest: models.ChatRequest; }; export type SendChatCompletionRequestResponse = models.ChatResult | EventStream; /** @internal */ export type SendChatCompletionRequestRequest$Outbound = { "HTTP-Referer"?: string | undefined; appTitle?: string | undefined; appCategories?: string | undefined; "X-OpenRouter-Experimental-Metadata"?: string | undefined; ChatRequest: models.ChatRequest$Outbound; }; /** @internal */ export declare const SendChatCompletionRequestRequest$outboundSchema: z.ZodType; export declare function sendChatCompletionRequestRequestToJSON(sendChatCompletionRequestRequest: SendChatCompletionRequestRequest): string; /** @internal */ export declare const SendChatCompletionRequestResponse$inboundSchema: z.ZodType; export declare function sendChatCompletionRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendchatcompletionrequest.d.ts.map