Published on: 2025-03-08T04:35:08Z
- Inference: Fixed support for inline vllm provider
- (New) Agent: Build & Monitor Agent Workflows with Llama Stack + Anthropic's Best Practice Notebook
- (New) Agent: Revamped agent documentation with more details and examples
- Agent: Unify tools and Python SDK Agents API
- Agent: AsyncAgent Python SDK wrapper supporting async client tool calls
- Agent: Support python functions without @client_tool decorator as client tools
- Agent: deprecation for allow_resume_turn flag, and remove need to specify tool_prompt_format
- VectorIO: MilvusDB support added
- (New) Agent: Llama Stack RAG Lifecycle Notebook
- Eval: Documentation for eval, scoring, adding new benchmarks
- Eval: Distribution template to run benchmarks on llama & non-llama models
- Eval: Ability to register new custom LLM-as-judge scoring functions
- (New) Looking for contributors for open benchmarks. See documentation for details.
- Better support for different log levels across all components for better monitoring
- Enhance OpenAPI spec to include Error types across all APIs
- Moved all tests to /tests and created unit tests to run on each PR
- Removed all dependencies on llama-models repo
Published on: 2025-02-28T22:37:44Z
- Fixes for security risk in meta-llama#1327 and meta-llama#1328
Full Changelog: https://github.com/meta-llama/llama-stack/compare/v0.1.5...v0.1.5.1
Published on: 2025-02-28T18:14:01Z
- Inference: Support more non-llama models (openai, anthropic, gemini)
- Inference: Can use the provider's model name in addition to the HF alias
- Inference: Fixed issues with calling tools that weren't specified in the prompt
- RAG: Improved system prompt for RAG and no more need for hard-coded rag-tool calling
- Embeddings: Added support for Nemo retriever embedding models
- Tools: Added support for MCP tools in Ollama Distribution
- Distributions: Added new Groq distribution
- Save post-trained checkpoint in SafeTensor format to allow Ollama inference provider to use the post-trained model
- More comprehensive logging of agent steps including client tools
- Telemetry inputs/outputs are now structured and queryable
- Ability to retrieve agents session, turn, step by ids
- Moved executorch Swift code out of this repo into the llama-stack-client-swift repo, similar to kotlin
- Move most logging to use logger instead of prints
- Completed text /chat-completion and /completion tests
Published on: 2025-02-25T00:02:43Z
Here are the key changes coming as part of this release:
- Inference: Added support for non-llama models
- Inference: Added option to list all downloaded models and remove models
- Agent: Introduce new api agents.resume_turn to include client side tool execution in the same turn
- Agent: AgentConfig introduces new variable “tool_config” that allows for better tool configuration and system prompt overrides
- Agent: Added logging for agent step start and completion times
- Agent: Added support for logging for tool execution metadata
- Embedding: Updated /inference/embeddings to support asymmetric models, truncation and variable sized outputs
- Embedding: Updated embedding models for Ollama, Together, and Fireworks with available defaults
- VectorIO: Improved performance of sqlite-vec using chunked writes
- Deprecated api /eval-tasks. Use /eval/benchmark instead
- Added CPU training support for TorchTune
- Consistent view of client and server tool calls in telemetry
- Made tests more data-driven for consistent evaluation
- Fixed documentation links and improved API reference generation
- Various small fixes for build scripts and system reliability
Published on: 2025-02-14T20:24:32Z
Here are some key changes that are coming as part of this release.
Streamlined the initial development experience
- Added support for llama stack run --image-type venv
- Enhanced vector store options with new sqlite-vec provider and improved Qdrant integration
- vLLM improvements for tool calling and logprobs
- Better handling of sporadic code_interpreter tool calls
Better benchmarking and Agent performance assessment
- Renamed eval API /eval-task to /benchmarks
- Improved documentation and notebooks for RAG and evals
Improved production readiness
- Added usage metrics collection for chat completions
- CLI improvements for provider information
- Improved error handling and system reliability
- Better model endpoint handling and accessibility
- Improved signal handling on distro server
Infrastructure and code quality improvements
- Faster text-based chat completion tests
- Improved testing for non-streaming agent apis
- Standardized import formatting with ruff linter
- Added conventional commits standard
- Fixed documentation parsing issues
Published on: 2025-02-07T22:06:49Z
- Several stabilizations to development flows after the switch to
uv
- Migrated CI workflows to new OSS repo - llama-stack-ops
- Added automated rebuilds for ReadTheDocs
- Llama Stack server supports HTTPS
- Added system prompt overrides support
- Several bug fixes and improvements to documentation (check out Kubernetes deployment guide by @terrytangyuan )
Published on: 2025-02-02T02:29:24Z
A bunch of small / big improvements everywhere including support for Windows, switching to uv
and many provider improvements.
Published on: 2025-01-24T17:47:47Z
We are excited to announce a stable API release of Llama Stack, which enables developers to build RAG applications and Agents using tools and safety shields, monitor and those agents with telemetry, and evaluate the agent with scoring functions.
GenAI application developers need more than just an LLM - they need to integrate tools, connect with their data sources, establish guardrails, and ground the LLM responses effectively. Currently, developers must piece together various tools and APIs, complicating the development lifecycle and increasing costs. The result is that developers are spending more time on these integrations rather than focusing on the application logic itself. The bespoke coupling of components also makes it challenging to adopt state-of-the-art solutions in the rapidly evolving GenAI space. This is particularly difficult for open models like Llama, as best practices are not widely established in the open.
Llama Stack was created to provide developers with a comprehensive and coherent interface that simplifies AI application development and codifies best practices across the Llama ecosystem. Since our launch in September 2024, we have seen a huge uptick in interest in Llama Stack APIs by both AI developers and from partners building AI services with Llama models. Partners like Nvidia, Fireworks, and Ollama have collaborated with us to develop implementations across various APIs, including inference, memory, and safety.
With Llama Stack, you can easily build a RAG agent which can also search the web, do complex math, and custom tool calling. You can use telemetry to inspect those traces, and convert telemetry into evals datasets. And with Llama Stack’s plugin architecture and prepackage distributions, you choose to run your agent anywhere - in the cloud with our partners, deploy your own environment using virtualenv, conda, or Docker, operate locally with Ollama, or even run on mobile devices with our SDKs. Llama Stack offers unprecedented flexibility while also simplifying the developer experience.
After iterating on the APIs for the last 3 months, today we’re launching a stable release (V1) of the Llama Stack APIs and the corresponding llama-stack server and client packages(v0.1.0). We now have automated tests for providers. These tests make sure that all provider implementations are verified. Developers can now easily and reliably select distributions or providers based on their specific requirements.
There are example standalone apps in llama-stack-apps.
-
Unified API Layer
- Inference: Run LLM models
- RAG: Store and retrieve knowledge for RAG
- Agents: Build multi-step agentic workflows
- Tools: Register tools that can be called by the agent
- Safety: Apply content filtering and safety policies
- Evaluation: Test model and agent quality
- Telemetry: Collect and analyze usage data and complex agentic traces
- Post Training ( Coming Soon ): Fine tune models for specific use cases
-
Rich Provider Ecosystem
- Local Development: Meta's Reference, Ollama
- Cloud: Fireworks, Together, Nvidia, AWS Bedrock, Groq, Cerebras
- On-premises: Nvidia NIM, vLLM, TGI, Dell-TGI
- On-device: iOS and Android support
-
Built for Production
- Pre-packaged distributions for common deployment scenarios
- Backwards compatibility across model versions
- Comprehensive evaluation capabilities
- Full observability and monitoring
-
Multiple developer interfaces
- CLI: Command line interface
- Python SDK
- Swift iOS SDK
- Kotlin Android SDK
-
Sample llama stack applications
- Python
- iOS
- Android
Published on: 2025-01-22T22:24:01Z
Published on: 2024-12-18T07:17:43Z
A small but important bug-fix release to update the URL datatype for the client-SDKs. The issue affected multimodal agentic turns especially.
Full Changelog: https://github.com/meta-llama/llama-stack/compare/v0.0.62...v0.0.63
Published on: 2024-12-18T02:39:43Z
Published on: 2024-12-10T20:50:33Z
Published on: 2024-11-23T17:14:07Z
Published on: 2024-11-22T00:36:09Z
Published on: 2024-11-20T22:18:00Z
🚀 Initial Release Notes for Llama Stack!
- Resource-oriented design for models, shields, memory banks, datasets and eval tasks
- Persistence for registered objects with distribution
- Ability to persist memory banks created for FAISS
- PostgreSQL KVStore implementation
- Environment variable placeholder support in run.yaml files
- Comprehensive Zero-to-Hero notebooks and quickstart guides
- Support for quantized models in Ollama
- Vision models support for Together, Fireworks, Meta-Reference, and Ollama, and vLLM
- Bedrock distribution with safety shields support
- Evals API with task registration and scoring functions
- MMLU and SimpleQA benchmark scoring functions
- Huggingface dataset provider integration for benchmarks
- Support for custom dataset registration from local paths
- Benchmark evaluation CLI tools with visualization tables
- RAG evaluation scoring functions and metrics
- Local persistence for datasets and eval tasks
- Split safety into distinct providers (llama-guard, prompt-guard, code-scanner)
- Changed provider naming convention (
impls
→inline
,adapters
→remote
) - Updated API signatures for dataset and eval task registration
- Restructured folder organization for providers
- Enhanced Docker build configuration
- Added version prefixing for REST API routes
- Enhanced evaluation task registration workflow
- Improved benchmark evaluation output formatting
- Restructured evals folder organization for better modularity
llama stack configure
command