Skip to content

Latest commit

 

History

History
115 lines (83 loc) · 6.1 KB

File metadata and controls

115 lines (83 loc) · 6.1 KB

Chat

(chat)

Overview

Chat Completion API.

Available Operations

stream

Mistral AI provides the ability to stream responses back to a client in order to allow partial results for certain requests. Tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a data: [DONE] message. Otherwise, the server will hold the request open until the timeout or until completion, with the response containing the full result as JSON.

Example Usage

import { MistralGoogleCloud } from "@mistralai/mistralai-gcp";

const MistralGoogleCloud = new MistralGoogleCloud({
  region: "europe-west4",
  projectId: process.env["GOOGLE_PROJECT_ID"],
});

async function run() {
  const result = await MistralGoogleCloud.chat.stream({
    model: "mistral-small-latest",
    messages: [
        {
        content: "Who is the best French painter? Answer in one short sentence.",
          role: "user",
        },
    ],
  });

  for await (const event of result) {
    // Handle the event
  }
}

run();

Parameters

Parameter Type Required Description
request components.ChatCompletionStreamRequest ✔️ The request object to use for the request.
options RequestOptions Used to set various options for making HTTP requests.
options.fetchOptions RequestInit Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.
options.retries RetryConfig Enables retrying HTTP requests under certain failure conditions.

Response

Promise<EventStream<components.ChatCompletionEvent>>

Errors

Error Object Status Code Content Type
errors.SDKError 4xx-5xx /

create

Chat Completion

Example Usage

import { MistralGoogleCloud } from "@mistralai/mistralai-gcp";

const MistralGoogleCloud = new MistralGoogleCloud({
  region: "europe-west4",
  projectId: process.env["GOOGLE_PROJECT_ID"],
});

async function run() {
  const result = await MistralGoogleCloud.chat.complete({
    model: "mistral-small-latest",
    messages: [
        {
        content: "Who is the best French painter? Answer in one short sentence.",
          role: "user",
        },
    ],
  });

  // Handle the result
  console.log(result)
}

run();

Parameters

Parameter Type Required Description
request components.ChatCompletionRequest ✔️ The request object to use for the request.
options RequestOptions Used to set various options for making HTTP requests.
options.fetchOptions RequestInit Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.
options.retries RetryConfig Enables retrying HTTP requests under certain failure conditions.

Response

Promise<components.ChatCompletionResponse>

Errors

Error Object Status Code Content Type
errors.HTTPValidationError 422 application/json
errors.SDKError 4xx-5xx /