(endpoint: string, options?: RequestOptions)
| 178 | } |
| 179 | |
| 180 | async delete<T>(endpoint: string, options?: RequestOptions): Promise<T> { |
| 181 | return this.request<T>(endpoint, { ...options, method: 'DELETE' }); |
| 182 | } |
| 183 | |
| 184 | // Streaming method for AI responses |
| 185 | async stream( |
no test coverage detected