Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Tuning Engines
icon: Network
description: Example configuration for Tuning Engines
---

> Tuning Engines dashboard: [app.tuningengines.com](https://app.tuningengines.com/)

**Notes:**

- Tuning Engines exposes an OpenAI-compatible inference endpoint for routed model access.
- Use an inference key from the Tuning Engines dashboard, not an account password or provider key.
- The model name should match a model alias enabled for the key's tenant or role.

```yaml filename="librechat.yaml"
- name: 'Tuning Engines'
apiKey: '${TUNING_ENGINES_API_KEY}'
baseURL: 'https://api.tuningengines.com/v1'
models:
default: ['gpt-4o-mini']
fetch: true
titleConvo: true
titleModel: 'gpt-4o-mini'
summarize: false
summaryModel: 'gpt-4o-mini'
modelDisplayLabel: 'Tuning Engines'
```

For deployments that restrict model access by tenant, role, or key, set `default` to the specific model alias your Tuning Engines admin assigned.