From 3adc3c9a03f9eda6de3c06dde7acedbe6ccc2269 Mon Sep 17 00:00:00 2001 From: Danny Banks Date: Wed, 13 Nov 2024 09:12:52 -0800 Subject: [PATCH] Update src/pages/[platform]/ai/concepts/architecture/index.mdx Co-authored-by: Ian Saultz <52051793+atierian@users.noreply.github.com> --- src/pages/[platform]/ai/concepts/architecture/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[platform]/ai/concepts/architecture/index.mdx b/src/pages/[platform]/ai/concepts/architecture/index.mdx index 8355394e29c..b4ad203fdc9 100644 --- a/src/pages/[platform]/ai/concepts/architecture/index.mdx +++ b/src/pages/[platform]/ai/concepts/architecture/index.mdx @@ -32,7 +32,7 @@ export function getStaticProps(context) { The Amplify AI kit is built around the idea of routes. An AI route is like an API endpoint for interacting with backend AI functionality. AI routes are configured in an Amplify backend where you can define the authorization rules, what type of route (generation or conversation), AI model and inference configuration like temperature, what are the inputs and outputs, and what data it has access to. There are currently 2 types of AI routes: * **Conversation:** A conversation route is an asynchronous, multi-turn API. Conversations and messages are automatically stored in DynamoDB. Examples of this are any chat-based AI experience or conversational UI. -* **Generation:** A single synchronous request-response API. A generation route is just an AppSync Query. Examples of this are: generating alt text for an image, generating structured data from unstructured input, summarization, etc. +* **Generation:** A single synchronous request-response API. A generation route is an AppSync Query that generates structured data according to your route definition. Common uses include generating structured data from unstructured input and summarization. ## Cloud infrastructure