Skip to content

Commit 0c57bc5

Browse files
committed
add supported models callout w link to setup, conversation, and generation pages
1 parent f66e83a commit 0c57bc5

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

src/pages/[platform]/ai/conversation/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ export function getStaticProps(context) {
3434

3535
The conversation route simplifies the creation of AI-powered conversation interfaces in your application. It automatically sets up the necessary AppSync API components and Lambda functions to handle streaming multi-turn interactions with Amazon Bedrock foundation models.
3636

37+
<Callout type="info">
38+
See [Supported Providers and Models](/[platform]/ai/concepts/models/#supported-providers-and-models) for a list of supported AI models.
39+
</Callout>
40+
3741
## Key Components
3842

3943
1. **AppSync API**: Gateway to the conversation route.

src/pages/[platform]/ai/generation/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ AI generation routes are a request-response API used to generate structured outp
3434
- generated structured data from unstructured input
3535
- summarization
3636

37+
<Callout type="info">
38+
See [Supported Providers and Models](/[platform]/ai/concepts/models/#supported-providers-and-models) for a list of supported AI models.
39+
</Callout>
40+
3741
Under the hood, a generation route is an AWS AppSync query that ensures the AI model responds with the response type defined for the route.
3842

3943
## Generate Typed Objects

src/pages/[platform]/ai/set-up-ai/index.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Then run the [Amplify sandbox](/[platform]/deploy-and-host/sandbox-environments/
6767
npx ampx sandbox
6868
```
6969

70-
This will provision the cloud resources you define in your amplify folder and watch for updates and redeploy them.
70+
This will provision the cloud resources you define in your amplify folder and watch for updates and redeploy them.
7171

7272

7373
## Build your AI backend
@@ -77,6 +77,10 @@ To build an AI backend, you define AI 'routes' in your Amplify Data schema. An A
7777
* **Conversation:** A conversation route is a streaming, multi-turn API. Conversations and messages are automatically stored in DynamoDB so users can resume conversations. Examples of this are any chat-based AI experience or conversational UI.
7878
* **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.
7979

80+
<Callout type="info">
81+
See [Supported Providers and Models](/[platform]/ai/concepts/models/#supported-providers-and-models) for a list of supported AI models.
82+
</Callout>
83+
8084
To define AI routes, open your **amplify/data/resource.ts** file and use `a.generation()` and `a.conversation()` in your schema.
8185

8286
```ts title="amplify/data/resources.ts"
@@ -119,7 +123,7 @@ Conversation routes currently ONLY support owner-based authorization and generat
119123

120124
</Callout>
121125

122-
If you have the Amplify sandbox running, when you save this file it will pick up the changes and redeploy the necessary resources for you.
126+
If you have the Amplify sandbox running, when you save this file it will pick up the changes and redeploy the necessary resources for you.
123127

124128
## Connect your frontend
125129

0 commit comments

Comments
 (0)