Wrapper around TogetherAI API for large language models fine-tuned for chat

TogetherAI API is compatible to the OpenAI API with some limitations. View the full API ref at:

Link

To use, you should have the openai package installed and the TOGETHER_AI_API_KEY environment variable set.

Example

const model = new ChatTogetherAI({
temperature: 0.9,
togetherAIApiKey: "YOUR-API-KEY",
});

const response = await model.invoke("Hello, how are you?");
console.log(response);

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

togetherAIApiKey?: string

Methods

  • Calls the TogetherAI API with retry logic in case of failures.

    Parameters

    • request: ChatCompletionCreateParamsStreaming

      The request to send to the TogetherAI API.

    • Optional options: any

      Optional configuration for the API call.

    Returns Promise<AsyncIterable<ChatCompletionChunk>>

    The response from the TogetherAI API.

  • Calls the TogetherAI API with retry logic in case of failures.

    Parameters

    • request: ChatCompletionCreateParamsNonStreaming

      The request to send to the TogetherAI API.

    • Optional options: any

      Optional configuration for the API call.

    Returns Promise<ChatCompletion>

    The response from the TogetherAI API.

Generated using TypeDoc