File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
deploy/docker-compose/addons Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1818class Pipeline :
1919 class Valves (BaseModel ):
2020 # vLLM Semantic Router endpoint URL
21- vsr_base_url : str = "http://envoy-proxy:8801/v1 "
21+ vsr_base_url : str = "http://envoy-proxy:8801"
2222
2323 # API key for authentication (if required)
2424 api_key : str = ""
@@ -45,7 +45,7 @@ def __init__(self):
4545 # Initialize valves
4646 self .valves = self .Valves (
4747 ** {
48- "vsr_base_url" : "http://envoy-proxy:8801/v1 " ,
48+ "vsr_base_url" : "http://envoy-proxy:8801" ,
4949 "api_key" : "" ,
5050 "show_vsr_info" : True ,
5151 "log_vsr_info" : True ,
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
66 curl \
77 && rm -rf /var/lib/apt/lists/*
88
9- COPY src/training/ requirements.txt ./
9+ COPY requirements.txt ./
1010RUN pip install --no-cache-dir -r requirements.txt
1111
12- COPY app.py ./
12+ COPY app.py ./
1313
1414EXPOSE 8000
1515
You can’t perform that action at this time.
0 commit comments