> ## Documentation Index
> Fetch the complete documentation index at: https://docs.together.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Available models

> View the models you can deploy to dedicated endpoints.

export const ModelTable = ({type}) => {
  const models = [];
  const typeLabels = {
    audio: "Audio",
    chat: "Chat",
    code: "Code",
    embedding: "Embedding",
    image: "Image",
    language: "Language",
    moderation: "Moderation",
    rerank: "Rerank",
    transcribe: "Transcription",
    video: "Video"
  };
  const listedModels = models.filter(m => type === undefined || m.type === type).sort((a, b) => {
    if (a.type !== b.type) return a.type.localeCompare(b.type);
    if (a.organization !== b.organization) {
      if (a.organization === "") return 1;
      if (b.organization === "") return -1;
      return a.organization.localeCompare(b.organization);
    }
    return a.apiName.localeCompare(b.apiName);
  });
  return <table className="w-full">
      <thead>
        <tr>
          {type === undefined && <th>Type</th>}
          <th>Organization</th>
          <th>Model name</th>
          <th>API model name</th>
          <th>Context length</th>
        </tr>
      </thead>
      <tbody>
        {listedModels.map(model => <tr key={model.id}>
            {type === undefined && <td>{typeLabels[model.type] ?? model.type}</td>}
            <td>{model.organization}</td>
            <td>{model.name}</td>
            <td>{model.apiName}</td>
            <td>{model.contextLength > 0 ? model.contextLength : "-"}</td>
          </tr>)}
      </tbody>
    </table>;
};

<Warning>
  You're viewing the **v1** documentation for dedicated endpoints. v1 is still supported, but it will be deprecated by the end of 2026. For the current API and workflow, switch to **v2** with the version selector at the top of the page, or see the [dedicated endpoints overview](/docs/dedicated-endpoints/overview).
</Warning>

This list is restricted to Together-hosted models. To deploy your own model or adapter, see [Upload a custom model](/docs/dedicated-endpoints/v1/custom-models) or [Deploy a custom adapter](/docs/dedicated-endpoints/v1/adapter).

<Tip>
  If you're not sure which model to use, check out our list of [recommended models](/docs/recommended-models) by use case.
</Tip>

## Models

<ModelTable />
