MCPcopy Create free account
hub / github.com/Superflows-AI/superflows / ChatGPTParams

Interface ChatGPTParams

lib/models.ts:142–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140}
141
142export interface ChatGPTParams {
143 temperature?: number;
144 max_tokens?: number;
145 top_p?: number;
146 n?: number;
147 stream?: boolean;
148 stop?: string | string[] | null;
149 presence_penalty?: number;
150 frequency_penalty?: number;
151 logit_bias?: Function | null;
152 user?: string;
153}
154
155export type RequestMethod =
156 | "GET"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected