From 117b95b38c40621b1ece899149ab1b8c92910dc0 Mon Sep 17 00:00:00 2001 From: raghotham Date: Mon, 26 Aug 2024 20:56:09 -0700 Subject: [PATCH] Update RFC-0001-llama-stack.md Added link to sequence diagram from agentic system --- rfcs/RFC-0001-llama-stack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/RFC-0001-llama-stack.md b/rfcs/RFC-0001-llama-stack.md index 1586529a2..805e8cd84 100644 --- a/rfcs/RFC-0001-llama-stack.md +++ b/rfcs/RFC-0001-llama-stack.md @@ -47,7 +47,7 @@ Note that as of today, in the OSS world, such a “loop” is often coded explic 1. The model reasons once again (using all the messages above) and decides to send a final response "In 2023, Denver Nuggets played against the Miami Heat in the NBA finals." to the executor 1. The executor returns the response directly to the user (since there is no tool call to be executed.) -The sequence diagram that details the steps is here. +The sequence diagram that details the steps is [here](https://github.com/meta-llama/llama-agentic-system/blob/main/docs/sequence-diagram.md). * /memory_banks - to support creating multiple repositories of data that can be available for agentic systems * /agentic_system - to support creating and running agentic systems. The sub-APIs support the creation and management of the steps, turns, and sessions within agentic applications.