diff --git a/README.md b/README.md index 5c04f90fb..37347bc77 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ You have two ways to install this repository: ## Documentations -Please checkout our [Docs](https://llama-stack.readthedocs.io/en/latest/index.html) page for more details. +Please checkout our [Documentations](https://llama-stack.readthedocs.io/en/latest/index.html) page for more details. * [CLI reference](https://llama-stack.readthedocs.io/en/latest/cli_reference/index.html) * Guide using `llama` CLI to work with Llama models (download, study prompts), and building/starting a Llama Stack distribution. diff --git a/docs/source/api_providers/new_api_provider.md b/docs/source/api_providers/new_api_provider.md index ff0bef959..6d75c38a6 100644 --- a/docs/source/api_providers/new_api_provider.md +++ b/docs/source/api_providers/new_api_provider.md @@ -6,10 +6,10 @@ This guide contains references to walk you through adding a new API provider. 1. First, decide which API your provider falls into (e.g. Inference, Safety, Agents, Memory). 2. Decide whether your provider is a remote provider, or inline implmentation. A remote provider is a provider that makes a remote request to an service. An inline provider is a provider where implementation is executed locally. Checkout the examples, and follow the structure to add your own API provider. Please find the following code pointers: - - [Inference Remote Adapter](../llama_stack/providers/adapters/inference/) - - [Inference Inline Provider](../llama_stack/providers/impls/) + - [Inference Remote Adapter](https://github.com/meta-llama/llama-stack/tree/docs/llama_stack/providers/adapters/inference) + - [Inference Inline Provider](https://github.com/meta-llama/llama-stack/tree/docs/llama_stack/providers/impls/meta_reference/inference) -3. [Build a Llama Stack distribution](./building_distro.md) with your API provider. +3. [Build a Llama Stack distribution](https://llama-stack.readthedocs.io/en/latest/distribution_dev/building_distro.html) with your API provider. 4. Test your code! ### Testing your newly added API providers