Skip to content

Commit

Permalink
Update src/pages/[platform]/ai/concepts/architecture/index.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: Ian Saultz <52051793+atierian@users.noreply.github.com>
  • Loading branch information
dbanksdesign and atierian authored Nov 13, 2024
1 parent e79f05a commit 3adc3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/[platform]/ai/concepts/architecture/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3adc3c9

Please sign in to comment.