Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions deploy/docker-compose/addons/vllm_semantic_router_pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Pipeline:
class Valves(BaseModel):
# vLLM Semantic Router endpoint URL
vsr_base_url: str = "http://envoy-proxy:8801/v1"
vsr_base_url: str = "http://envoy-proxy:8801"

# API key for authentication (if required)
api_key: str = ""
Expand All @@ -45,7 +45,7 @@ def __init__(self):
# Initialize valves
self.valves = self.Valves(
**{
"vsr_base_url": "http://envoy-proxy:8801/v1",
"vsr_base_url": "http://envoy-proxy:8801",
"api_key": "",
"show_vsr_info": True,
"log_vsr_info": True,
Expand Down
4 changes: 2 additions & 2 deletions tools/mock-vllm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*

COPY src/training/requirements.txt ./
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY app.py ./
COPY app.py ./

EXPOSE 8000

Expand Down