Skip to content

Commit f6d951d

Browse files
committed
Fix minor inconsistencies in design doc types and snippets
1 parent 273ada9 commit f6d951d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs/adk-replat/adk_migration_design_doc.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export class GcliAgentModel extends BaseLlm {
3333
router: RouterService;
3434
compactor: CompactorService;
3535
quota: QuotaService;
36+
masker: MaskerService;
3637
}
3738
) {
3839
super({ model: 'gcli-consolidated' });
@@ -210,7 +211,7 @@ Ensuring availability by retrying or switching models when rate limits (429s) or
210211

211212
```typescript
212213
// Inside GcliAgentModel.generateContentAsync
213-
await this.services.quota.checkAvailabilityOrPrompt(request.model);
214+
await this.services.quota.checkAvailabilityOrPrompt(request);
214215
```
215216

216217

0 commit comments

Comments
 (0)