Skip to content

docs(llm_inference): update product naming #520

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scaleway-async/scaleway_async/llm_inference/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

class LlmInferenceV1Beta1API(API):
"""
This API allows you to manage your LLM Inference services.
This API allows you to manage your Inference services.
"""

async def list_deployments(
Expand Down Expand Up @@ -486,7 +486,7 @@ async def update_endpoint(
Update an existing Endpoint.
:param endpoint_id: ID of the endpoint to update.
:param region: Region to target. If none is passed will use default region from the config.
:param disable_auth: By default, LLM deployments are protected by IAM authentication.
:param disable_auth: By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
:return: :class:`Endpoint <Endpoint>`

Expand Down Expand Up @@ -762,7 +762,7 @@ async def list_models(
) -> ListModelsResponse:
"""
List models.
List all available LLM models.
List all available models.
:param region: Region to target. If none is passed will use default region from the config.
:param order_by: Order in which to return results.
:param page: Page number to return.
Expand Down Expand Up @@ -811,7 +811,7 @@ async def list_models_all(
) -> List[Model]:
"""
List models.
List all available LLM models.
List all available models.
:param region: Region to target. If none is passed will use default region from the config.
:param order_by: Order in which to return results.
:param page: Page number to return.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ACLRule:
class EndpointSpec:
disable_auth: bool
"""
By default, LLM deployments are protected by IAM authentication.
By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
"""

Expand Down Expand Up @@ -817,6 +817,6 @@ class UpdateEndpointRequest:

disable_auth: Optional[bool]
"""
By default, LLM deployments are protected by IAM authentication.
By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
"""
8 changes: 4 additions & 4 deletions scaleway/scaleway/llm_inference/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

class LlmInferenceV1Beta1API(API):
"""
This API allows you to manage your LLM Inference services.
This API allows you to manage your Inference services.
"""

def list_deployments(
Expand Down Expand Up @@ -484,7 +484,7 @@ def update_endpoint(
Update an existing Endpoint.
:param endpoint_id: ID of the endpoint to update.
:param region: Region to target. If none is passed will use default region from the config.
:param disable_auth: By default, LLM deployments are protected by IAM authentication.
:param disable_auth: By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
:return: :class:`Endpoint <Endpoint>`

Expand Down Expand Up @@ -760,7 +760,7 @@ def list_models(
) -> ListModelsResponse:
"""
List models.
List all available LLM models.
List all available models.
:param region: Region to target. If none is passed will use default region from the config.
:param order_by: Order in which to return results.
:param page: Page number to return.
Expand Down Expand Up @@ -809,7 +809,7 @@ def list_models_all(
) -> List[Model]:
"""
List models.
List all available LLM models.
List all available models.
:param region: Region to target. If none is passed will use default region from the config.
:param order_by: Order in which to return results.
:param page: Page number to return.
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/llm_inference/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ACLRule:
class EndpointSpec:
disable_auth: bool
"""
By default, LLM deployments are protected by IAM authentication.
By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
"""

Expand Down Expand Up @@ -817,6 +817,6 @@ class UpdateEndpointRequest:

disable_auth: Optional[bool]
"""
By default, LLM deployments are protected by IAM authentication.
By default, deployments are protected by IAM authentication.
When setting this field to true, the authentication will be disabled.
"""