diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index 20aeee003..f34b950b4 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -200,7 +200,7 @@ Your folder can be a regular local folder or a Git repo. Service is published at: http://localhost:3000/proxy/services/main/llama31-service/ Model meta-llama/Meta-Llama-3.1-8B-Instruct is published at: - http://localhost:3000/proxy/models/main/ (OpenAI-compatible) + http://localhost:3000/proxy/models/main/ ``` diff --git a/docs/docs/services.md b/docs/docs/services.md index 82add8144..2be98581a 100644 --- a/docs/docs/services.md +++ b/docs/docs/services.md @@ -78,7 +78,7 @@ Provisioning... Service is published at: http://localhost:3000/proxy/services/main/llama31/ Model meta-llama/Meta-Llama-3.1-8B-Instruct is published at: - http://localhost:3000/proxy/models/main/ (OpenAI-compatible) + http://localhost:3000/proxy/models/main/ ``` diff --git a/src/dstack/_internal/cli/services/configurators/run.py b/src/dstack/_internal/cli/services/configurators/run.py index a6571e588..8ec8592a8 100644 --- a/src/dstack/_internal/cli/services/configurators/run.py +++ b/src/dstack/_internal/cli/services/configurators/run.py @@ -482,8 +482,7 @@ def _print_service_urls(run: Run) -> None: console.print(f"Service is published at:\n [link={run.service_url}]{run.service_url}[/]") if model := run.service_model: console.print( - f"Model [code]{model.name}[/] is published at:" - f"\n [link={model.url}]{model.url}[/] [secondary](OpenAI-compatible)[/]" + f"Model [code]{model.name}[/] is published at:\n [link={model.url}]{model.url}[/]" ) console.print()