Skip to main content
Create and manage dedicated endpoints for model inference.

Endpoint ID

Many commands require an ENDPOINT_ID to identify which endpoint to operate on. The endpoint ID is a unique identifier assigned at creation time, in the format endpoint-<uuid>. For example: endpoint-c2a48674-9ec7-45b3-ac30-0f25f2ad9462.
The endpoint ID is different from the model name (e.g., meta-llama/Llama-3.3-70B-Instruct-Turbo) or the display name you set with --display-name.

Find your endpoint ID

To find your endpoint ID, you can:
  • Run the tg endpoints create command to create an endpoint. The endpoint ID is returned in the output.
  • Run the tg endpoints list command to list all your endpoints. The endpoint ID is displayed for each endpoint.
  • View the endpoint details page in the Together AI console.

Create

Create a new dedicated endpoint.
Shell

Parameters

--no-prompt-cache is accepted for backward compatibility but no longer has any effect.

Hardware

List all hardware options (optionally filtered by model and availability).

Parameters

Retrieve

Print details for a specific endpoint.
Shell

Update

Update the configuration of an existing endpoint.
Shell

Parameters

At least one update flag must be supplied.

Start

Start a dedicated endpoint.
Shell

Parameters

Stop

Stop a dedicated endpoint.
Shell

Parameters

Delete

Delete a dedicated endpoint.
Shell

List

List your dedicated endpoints.
Shell

Parameters

--mine and --type are accepted for backward compatibility but no longer have any effect. tg endpoints list already returns the dedicated endpoints on your account.

Availability zones

List the availability zones you can deploy endpoints into.
Shell

Adapters

Manage LoRA adapters bound to a dedicated endpoint. Once an adapter is bound, call it for inference by passing the combined endpoint_name:adapter_model_name identifier as the model parameter. The MODEL_ID argument used by add and remove is the combined identifier in the form endpoint_name:adapter_model_name.

List

List the adapters bound to an endpoint.
Shell
Alias: tg endpoints adapters ls.

Add

Bind an adapter to an endpoint.
Shell

Remove

Remove an adapter binding from an endpoint.
Shell
Aliases: tg endpoints adapters delete, tg endpoints adapters rm.