Allow custom VLLM endpoint URL #306
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When deploying a VLLM server on a different Node/GPU than the one we are using when running agents, the base URL for the endpoint cannot be
http://0.0.0.0:8000.AgentLab/src/agentlab/llm/chat_api.py
Lines 463 to 482 in da8cb7c
This PR introduces a new environment variable
VLLM_API_URLthat allows to use a custom endpoint URL or fall back to the default local server.Description by Korbit AI
What change is being made?
Allow configuring the VLLM endpoint URL via environment variable VLLM_API_URL, defaulting to http://localhost:8000/v1 if not set.
Why are these changes being made?
To enable configuring the VLLM backend URL without code changes, using a sensible default when the variable is not provided.