File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -65,11 +65,11 @@ def start_kserve_frontends(server, args):
65
65
from tritonfrontend import KServeGrpc , KServeHttp
66
66
67
67
http_options = KServeHttp .Options (address = args .host , port = args .kserve_http_port )
68
- http_service = KServeHttp . Server (server , http_options )
68
+ http_service = KServeHttp (server , http_options )
69
69
http_service .start ()
70
70
71
71
grpc_options = KServeGrpc .Options (address = args .host , port = args .kserve_grpc_port )
72
- grpc_service = KServeGrpc . Server (server , grpc_options )
72
+ grpc_service = KServeGrpc (server , grpc_options )
73
73
grpc_service .start ()
74
74
75
75
except ModuleNotFoundError :
Original file line number Diff line number Diff line change 26
26
27
27
# FastAPI Application
28
28
fastapi == 0.111.1
29
+ # Fix httpx version to avoid bug in openai library:
30
+ # https://community.openai.com/t/error-with-openai-1-56-0-client-init-got-an-unexpected-keyword-argument-proxies/1040332/3
31
+ httpx == 0.27.2
29
32
openai == 1.40.6
You can’t perform that action at this time.
0 commit comments