From 7410e50cde11f7151949f5ce78114c9bb4fc6ec3 Mon Sep 17 00:00:00 2001 From: VC Date: Wed, 20 May 2026 22:09:31 -0400 Subject: [PATCH] docs: add Tuning Engines endpoint example --- .../ai_endpoints/tuning-engines.mdx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 content/docs/configuration/librechat_yaml/ai_endpoints/tuning-engines.mdx diff --git a/content/docs/configuration/librechat_yaml/ai_endpoints/tuning-engines.mdx b/content/docs/configuration/librechat_yaml/ai_endpoints/tuning-engines.mdx new file mode 100644 index 000000000..a08e04ca0 --- /dev/null +++ b/content/docs/configuration/librechat_yaml/ai_endpoints/tuning-engines.mdx @@ -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.