Skip to content

Commit ce7904e

Browse files
HikottyHikottySugi275
authored
Research usecase (#1414)
Co-authored-by: Hikotty <iseda.hikoto.dev@gmail.com> Co-authored-by: Sugi275 <sugi.mount@gmail.com>
1 parent 4052861 commit ce7904e

60 files changed

Lines changed: 7436 additions & 13 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ site*/
1414
# Coding Asssitant
1515
.kiro/settings
1616
.kiro/specs
17+
deploy.log
23 KB
Loading
59.2 KB
Loading
73.8 KB
Loading
88 KB
Loading
32.6 KB
Loading
32.5 KB
Loading
24.3 KB
Loading
17.2 KB
Loading

docs/en/DEPLOY_OPTION.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,44 @@ const envs: Record<string, Partial<StackInput>> = {
567567
}
568568
```
569569

570+
### Enabling Research Agent Use Case
571+
572+
The Research Agent provides advanced research capabilities using web search and AWS documentation search.
573+
574+
#### Prerequisites
575+
576+
- **Brave Search API Key (Required)**: Obtain from AWS Marketplace
577+
- **Tavily API Key (Optional)**: For additional search capabilities
578+
579+
> [!TIP]
580+
> For instructions on obtaining the Brave Search API key, see the [Research Agent Deployment Guide](./DEPLOY_RESEARCH_USECASE.md).
581+
582+
#### Configuration Example in parameter.ts
583+
584+
```typescript
585+
const envs: Record<string, Partial<StackInput>> = {
586+
dev: {
587+
researchAgentEnabled: true,
588+
researchAgentBraveApiKey: 'YOUR_BRAVE_API_KEY',
589+
researchAgentTavilyApiKey: '', // Optional
590+
},
591+
};
592+
```
593+
594+
#### Configuration Example in cdk.json
595+
596+
```json
597+
{
598+
"context": {
599+
"researchAgentEnabled": true,
600+
"researchAgentBraveApiKey": "YOUR_BRAVE_API_KEY",
601+
"researchAgentTavilyApiKey": ""
602+
}
603+
}
604+
```
605+
606+
For detailed instructions, see the [Research Agent Deployment Guide](./DEPLOY_RESEARCH_USECASE.md).
607+
570608
### Enabling MCP Chat Use Case
571609

572610
> [!WARNING]

0 commit comments

Comments
 (0)