From d132ced1c6f4b2df968d98606a07eeaa95103a68 Mon Sep 17 00:00:00 2001 From: Scaleway Bot Date: Fri, 17 May 2024 10:51:53 +0200 Subject: [PATCH] docs(llm_inference): update product naming (#3812) --- .../test-all-usage-llm-inference-model-list-usage.golden | 2 +- cmd/scw/testdata/test-all-usage-llm-inference-usage.golden | 2 +- cmd/scw/testdata/test-main-usage-usage.golden | 2 +- docs/commands/llm-inference.md | 4 ++-- .../namespaces/llm_inference/v1beta1/llm_inference_cli.go | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cmd/scw/testdata/test-all-usage-llm-inference-model-list-usage.golden b/cmd/scw/testdata/test-all-usage-llm-inference-model-list-usage.golden index c0ff17ade7..fe02e36081 100644 --- a/cmd/scw/testdata/test-all-usage-llm-inference-model-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-llm-inference-model-list-usage.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all available LLM models. +List all available models. USAGE: scw llm-inference model list [arg=value ...] diff --git a/cmd/scw/testdata/test-all-usage-llm-inference-usage.golden b/cmd/scw/testdata/test-all-usage-llm-inference-usage.golden index 5d70ab49a8..3bdae0e510 100644 --- a/cmd/scw/testdata/test-all-usage-llm-inference-usage.golden +++ b/cmd/scw/testdata/test-all-usage-llm-inference-usage.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -This API allows you to manage your LLM Inference services. +This API allows you to manage your Inference services. USAGE: scw llm-inference diff --git a/cmd/scw/testdata/test-main-usage-usage.golden b/cmd/scw/testdata/test-main-usage-usage.golden index 31b92c269f..1e208a0999 100644 --- a/cmd/scw/testdata/test-main-usage-usage.golden +++ b/cmd/scw/testdata/test-main-usage-usage.golden @@ -24,7 +24,7 @@ AVAILABLE COMMANDS: jobs This API allows you to manage your Serverless Jobs k8s This API allows you to manage Kubernetes Kapsule and Kosmos clusters lb This API allows you to manage your Scaleway Load Balancer services - llm-inference This API allows you to manage your LLM Inference services + llm-inference This API allows you to manage your Inference services marketplace This API allows you to find available images for use when launching a Scaleway Instance mnq These APIs allow you to manage your Messaging and Queuing NATS, SQS and SNS services object Object-storage utils diff --git a/docs/commands/llm-inference.md b/docs/commands/llm-inference.md index eb8b4ec14f..87abc1370b 100644 --- a/docs/commands/llm-inference.md +++ b/docs/commands/llm-inference.md @@ -1,6 +1,6 @@ # Documentation for `scw llm-inference` -This API allows you to manage your LLM Inference services. +This API allows you to manage your Inference services. - [Access Control List (ACL) management commands](#access-control-list-(acl)-management-commands) - [Add new ACLs](#add-new-acls) @@ -354,7 +354,7 @@ scw llm-inference model get [arg=value ...] ### List models -List all available LLM models. +List all available models. **Usage:** diff --git a/internal/namespaces/llm_inference/v1beta1/llm_inference_cli.go b/internal/namespaces/llm_inference/v1beta1/llm_inference_cli.go index e1e4861513..a58a14a0c0 100644 --- a/internal/namespaces/llm_inference/v1beta1/llm_inference_cli.go +++ b/internal/namespaces/llm_inference/v1beta1/llm_inference_cli.go @@ -45,8 +45,8 @@ func GetGeneratedCommands() *core.Commands { } func llmInferenceRoot() *core.Command { return &core.Command{ - Short: `This API allows you to manage your LLM Inference services`, - Long: `This API allows you to manage your LLM Inference services.`, + Short: `This API allows you to manage your Inference services`, + Long: `This API allows you to manage your Inference services.`, Namespace: "llm-inference", } } @@ -685,7 +685,7 @@ func llmInferenceACLDelete() *core.Command { func llmInferenceModelList() *core.Command { return &core.Command{ Short: `List models`, - Long: `List all available LLM models.`, + Long: `List all available models.`, Namespace: "llm-inference", Resource: "model", Verb: "list",