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

# LibreChat

> LibreChat을 TokenLab의 OpenAI 호환 커스텀 엔드포인트로 사용하도록 구성

## 개요

LibreChat은 OpenAI 호환 커스텀 엔드포인트를 통해 TokenLab과 원활하게 연동됩니다.

<Note>
  **유형**: 채팅 앱

  **기본 경로**: OpenAI 호환 채팅 완성(Chat Completions)

  **지원 신뢰도**: 지원되는 경로
</Note>

## 환경 변수

```bash theme={null}
TOKENLAB_API_KEY=sk-your-tokenlab-key
```

## 엔드포인트 예시

LibreChat 엔드포인트 구성에 TokenLab을 추가하세요:

```yaml theme={null}
customEndpoints:
  - name: 'TokenLab'
    apiKey: '${TOKENLAB_API_KEY}'
    baseURL: 'https://api.tokenlab.sh/v1'
    models:
      default:
        - 'gpt-5.5'
        - 'gpt-5.4'
        - 'gpt-5.4-mini'
        - 'claude-opus-4-8'
        - 'claude-sonnet-5'
        - 'gemini-3.5-flash'
        - 'deepseek-v4-pro'
        - 'deepseek-v4-flash'
      fetch: true
    titleConvo: true
    titleModel: 'gpt-5.4-mini'
    modelDisplayLabel: 'TokenLab'
```

## 참고 사항

LibreChat은 이 설정을 위해 OpenAI 호환 채팅 경로를 사용합니다. TokenLab은 해당 요청 형식을 지원하는 클라이언트를 위해 네이티브 Responses, Anthropic Messages 및 Gemini 호환 엔드포인트도 제공합니다.
