Wrong default host name

This commit is contained in:
Rowe Wilson Frederisk Holme 2022-09-22 02:19:21 +08:00 committed by GitHub
commit 230b138afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ from models import OpenAIinput
from utils.codegen import CodeGenProxy
codegen = CodeGenProxy(
host=os.environ.get("TRITON_HOST", "localhost"),
host=os.environ.get("TRITON_HOST", "triton"),
port=os.environ.get("TRITON_PORT", 8001),
verbose=os.environ.get("TRITON_VERBOSITY", False)
)