| 140 | } |
| 141 | |
| 142 | export 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 | |
| 155 | export type RequestMethod = |
| 156 | | "GET" |
nothing calls this directly
no outgoing calls
no test coverage detected