Skip to main content
The Playground allows you to use any model that is compliant with the OpenAI API. You can utilize your model by setting the Proxy Provider for in the Playground.

Deploy an OpenAI compliant model

Many providers offer OpenAI compliant models or proxy services. Some examples of this include: You can use these providers to deploy your model and get an API endpoint that is compliant with the OpenAI API. Take a look at the full specification for more information.

Use the model in the Playground

Once you have deployed a model server, you can use it in the Playground. To access the Prompt Settings menu:
  1. Under the Prompts heading select the gear icon next to the model name.
  2. In the Model Configuration tab, select the model to edit in the dropdown.
  3. For the Provider dropdown, select OpenAI Compatible Endpoint.
  4. Add your OpenAI Compatible Endpoint to the Base URL input. See Base URL format for examples.
    Model Configuration window in the LangSmith UI with a model selected and the Provider dropdown with OpenAI Compatible Endpoint selected.
If everything is set up correctly, you should see the model’s response in the Playground. You can also use this functionality to invoke downstream pipelines. For information on how to store your model configuration, refer to Configure prompt settings.

Base URL format

The Base URL should point to the root of your OpenAI-compatible API server. LangSmith appends /chat/completions automatically—do not include it in the Base URL.

Example Base URLs

ProviderExample Base URL
Ollama (local)http://localhost:11434/v1
LiteLLM Proxy (local)http://localhost:4000
vLLM (local)http://localhost:8000/v1
Self-hosted (remote)https://my-model-server.example.com/v1
Custom path prefixes are supported. If your server exposes completions at /api/v2/chat/completions, set the Base URL to https://my-server.example.com/api/v2.