From d4f0b430e2904398e71a57d66bebb7f1d5824108 Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Thu, 24 Jul 2025 12:50:14 -0400 Subject: [PATCH] docs: update list of apis (#2697) # What does this PR do? apis.md had a few APIs missing and incorrectly described APIs Signed-off-by: Charlie Doern --- docs/source/concepts/apis.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/concepts/apis.md b/docs/source/concepts/apis.md index 6da77a9e6..5a10d6498 100644 --- a/docs/source/concepts/apis.md +++ b/docs/source/concepts/apis.md @@ -10,9 +10,11 @@ A Llama Stack API is described as a collection of REST endpoints. We currently s - **Eval**: generate outputs (via Inference or Agents) and perform scoring - **VectorIO**: perform operations on vector stores, such as adding documents, searching, and deleting documents - **Telemetry**: collect telemetry data from the system +- **Post Training**: fine-tune a model +- **Tool Runtime**: interact with various tools and protocols +- **Responses**: generate responses from an LLM using this OpenAI compatible API. We are working on adding a few more APIs to complete the application lifecycle. These will include: - **Batch Inference**: run inference on a dataset of inputs - **Batch Agents**: run agents on a dataset of inputs -- **Post Training**: fine-tune a model - **Synthetic Data Generation**: generate synthetic data for model development