-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.yaml
More file actions
201 lines (186 loc) · 5.38 KB
/
template.yaml
File metadata and controls
201 lines (186 loc) · 5.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: MetaIntent Agent - Autonomous Onboarding System
Globals:
Function:
Runtime: nodejs20.x
Timeout: 60
MemorySize: 512
Environment:
Variables:
SESSION_TABLE_NAME: !Ref SessionTable
CACHE_BUCKET_NAME: !Ref CacheBucket
LOG_BUCKET_NAME: !Ref LogBucket
BEDROCK_MODEL_ID: anthropic.claude-3-5-sonnet-20241022-v2:0
BEDROCK_REGION: us-east-1
BEDROCK_MAX_TOKENS: 2000
BEDROCK_TEMPERATURE: 0.7
PRIMARY_LLM_BACKEND: bedrock
FALLBACK_LLM_BACKEND: cache
ENABLE_BEDROCK: true
Resources:
# API Gateway
MetaIntentAPI:
Type: AWS::Serverless::HttpApi
Properties:
CorsConfiguration:
AllowOrigins:
- '*'
AllowMethods:
- GET
- POST
AllowHeaders:
- '*'
# Lambda Functions
# NEW: MetaIntent Main Function
MetaIntentFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/
Handler: lambdas/metaintent.handler
Timeout: 30
MemorySize: 1024
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionTable
- S3CrudPolicy:
BucketName: !Ref LogBucket
- Statement:
- Effect: Allow
Action:
- bedrock:InvokeModel
- bedrock:InvokeModelWithResponseStream
- bedrock:GetFoundationModel
- bedrock:ListFoundationModels
Resource: '*'
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: '*'
Events:
MetaIntentAPI:
Type: HttpApi
Properties:
ApiId: !Ref MetaIntentAPI
Path: /metaintent
Method: post
RouterFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/
Handler: lambdas/router.handler
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionTable
- S3CrudPolicy:
BucketName: !Ref LogBucket
Events:
OnboardAPI:
Type: HttpApi
Properties:
ApiId: !Ref MetaIntentAPI
Path: /onboard
Method: post
IntentClassifierFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/
Handler: lambdas/intent.handler
MemorySize: 1024
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionTable
- S3CrudPolicy:
BucketName: !Ref CacheBucket
- S3CrudPolicy:
BucketName: !Ref LogBucket
- Statement:
- Effect: Allow
Action:
- bedrock:InvokeModel
Resource: '*'
IdentityVerifierFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/
Handler: lambdas/identity.handler
MemorySize: 1024
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionTable
- S3CrudPolicy:
BucketName: !Ref LogBucket
- Statement:
- Effect: Allow
Action:
- bedrock:InvokeModel
- transcribe:StartTranscriptionJob
- transcribe:GetTranscriptionJob
- textract:AnalyzeDocument
Resource: '*'
APIChainOrchestratorFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/
Handler: lambdas/chain.handler
Timeout: 120
MemorySize: 1024
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionTable
- S3CrudPolicy:
BucketName: !Ref LogBucket
- Statement:
- Effect: Allow
Action:
- bedrock:InvokeModel
Resource: '*'
# DynamoDB Table
SessionTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: MetaIntent-Sessions
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: sessionId
AttributeType: S
KeySchema:
- AttributeName: sessionId
KeyType: HASH
TimeToLiveSpecification:
Enabled: true
AttributeName: ttl
# S3 Buckets
CacheBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub 'metaintent-cache-${AWS::AccountId}'
LifecycleConfiguration:
Rules:
- Id: DeleteOldCache
Status: Enabled
ExpirationInDays: 1
LogBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub 'metaintent-logs-${AWS::AccountId}'
LifecycleConfiguration:
Rules:
- Id: DeleteOldLogs
Status: Enabled
ExpirationInDays: 7
Outputs:
ApiEndpoint:
Description: API Gateway endpoint URL
Value: !Sub 'https://${MetaIntentAPI}.execute-api.${AWS::Region}.amazonaws.com'
SessionTableName:
Description: DynamoDB table name
Value: !Ref SessionTable
CacheBucketName:
Description: S3 cache bucket name
Value: !Ref CacheBucket
LogBucketName:
Description: S3 log bucket name
Value: !Ref LogBucket