mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
21 lines
920 B
Text
21 lines
920 B
Text
---
|
|
description: "Llama Stack Inference API for generating completions, chat completions, and embeddings.
|
|
|
|
This API provides the raw interface to the underlying models. Two kinds of models are supported:
|
|
- LLM models: these models generate \"raw\" and \"chat\" (conversational) completions.
|
|
- Embedding models: these models generate embeddings to be used for semantic search."
|
|
sidebar_label: Inference
|
|
title: Inference
|
|
---
|
|
|
|
# Inference
|
|
|
|
## Overview
|
|
|
|
Llama Stack Inference API for generating completions, chat completions, and embeddings.
|
|
|
|
This API provides the raw interface to the underlying models. Two kinds of models are supported:
|
|
- LLM models: these models generate "raw" and "chat" (conversational) completions.
|
|
- Embedding models: these models generate embeddings to be used for semantic search.
|
|
|
|
This section contains documentation for all available providers for the **inference** API.
|