updated the string to watsonx

This commit is contained in:
Sajikumar JS 2025-04-25 11:03:21 +05:30
parent 6fe8b292b1
commit 2f498ad776
7 changed files with 16 additions and 16 deletions

View file

@ -1,6 +1,6 @@
version: '2'
distribution_spec:
description: Use WatsonX for running LLM inference
description: Use watsonx for running LLM inference
providers:
inference:
- remote::watsonx

View file

@ -1,7 +1,7 @@
---
orphan: true
---
# WatsonX Distribution
# watsonx Distribution
```{toctree}
:maxdepth: 2
@ -38,10 +38,10 @@ The following models are available by default:
### Prerequisite: API Keys
Make sure you have access to a WatsonX API Key. You can get one by referring [watsonx.ai](https://www.ibm.com/docs/en/masv-and-l/maximo-manage/continuous-delivery?topic=setup-create-watsonx-api-key).
Make sure you have access to a watsonx API Key. You can get one by referring [watsonx.ai](https://www.ibm.com/docs/en/masv-and-l/maximo-manage/continuous-delivery?topic=setup-create-watsonx-api-key).
## Running Llama Stack with WatsonX
## Running Llama Stack with watsonx
You can do this via Conda (build code), venv or Docker which has a pre-built image.

View file

@ -59,7 +59,7 @@ def get_distribution_template() -> DistributionTemplate:
return DistributionTemplate(
name="watsonx",
distro_type="remote_hosted",
description="Use WatsonX for running LLM inference",
description="Use watsonx for running LLM inference",
container_image=None,
template_path=Path(__file__).parent / "doc_template.md",
providers=providers,
@ -80,11 +80,11 @@ def get_distribution_template() -> DistributionTemplate:
),
"WATSONX_API_KEY": (
"",
"Watsonx API Key",
"watsonx API Key",
),
"WATSONX_PROJECT_ID": (
"",
"Watsonx Project ID",
"watsonx Project ID",
),
},
)