chatCompletions method

Stream<HttpBody> chatCompletions(
  1. ChatCompletionsRequest request
)

Exposes an OpenAI-compatible endpoint for chat completions.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

Stream<HttpBody> chatCompletions(ChatCompletionsRequest request) {
  final url = Uri.https(
    _host,
    '/v1beta1/${request.endpoint}/chat/completions',
  );
  return _client
      .postStreaming(url, body: request.httpBody)
      .map(HttpBody.fromJson);
}