diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 4087ea09145..a2dbdca23e0 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -636,8 +636,11 @@ export type Client = { start: (runtime: IAgentRuntime) => Promise; }; +/** + * Database adapter initialization + */ export type Adapter = { - /** Initialize adapter */ + /** Initialize the adapter */ init: (runtime: IAgentRuntime) => IDatabaseAdapter & IDatabaseCacheAdapter; };