From 4ddf11263371fb7582037034dc3392dca5a7dc17 Mon Sep 17 00:00:00 2001 From: Mahmoud Mabrouk Date: Wed, 6 Dec 2023 18:30:41 +0100 Subject: [PATCH] Documentation edits made through Mintlify web editor --- docs/learn/llm_app_architectures.mdx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/learn/llm_app_architectures.mdx diff --git a/docs/learn/llm_app_architectures.mdx b/docs/learn/llm_app_architectures.mdx new file mode 100644 index 0000000000..6e4e48169a --- /dev/null +++ b/docs/learn/llm_app_architectures.mdx @@ -0,0 +1,26 @@ +--- +title: 'LLM App Architectures' +description: 'The different types of LLM applications.' +--- + + +There are multitude of architectures or pipelines for LLM applications. We discuss here the main ones. + +## The Single Prompt Architecture + +This architecture is the simplest. The LLM application is a simple wrapper around one prompt / LLM call. + +In agenta you can [create such LLM apps from the UI](/quickstart/getting-started-ui). You can use your own code in case that your model is not supported (or you would like to add some custom logic for pre-processing or post-processing the inputs). + + + + + +## The Chain-of-prompt Architecture + + +## The Retrieval Augment Generation Architecture + +## The Agent architecture + +## Chat vs. Flow \ No newline at end of file