AMD Lemonade
Configure AMD Lemonade as a custom endpoint in LibreChat.
AMD Lemonade runs models locally through an OpenAI-compatible API. Follow the Lemonade documentation to install and start the server, then download a chat model.
Configuration
Lemonade requires no API key; the placeholder below satisfies the OpenAI client. Add the endpoint under endpoints.custom in your librechat.yaml:
- name: 'lemonade'
apiKey: 'lemonade'
baseURL: 'http://localhost:13305/v1'
models:
default: ['Qwen3-0.6B-GGUF']
fetch: true
titleConvo: true
titleModel: 'current_model'
modelDisplayLabel: 'AMD Lemonade'
iconURL: 'lemonade'Notes
- Replace
Qwen3-0.6B-GGUFwith a locally installed chat model. Withfetch: true, LibreChat retrieves the model list from Lemonade.titleModel: 'current_model'reuses the conversation's model for titles. - For Docker, replace
localhostwithhost.docker.internalor a reachable Lemonade hostname. - For user-provided base URLs, add the local server's exact
host:port(e.g.host.docker.internal:13305) toendpoints.allowedAddresses. - Built-in branding recognizes
lemonade,AMD Lemonade, andLemonade Server. KeepiconURL: 'lemonade'to preserve the logo when renaming the endpoint.
How is this guide?