mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-04 22:01:15 +00:00
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
import type { OpenClawPluginApi } from "../api.js";
|
|
import type { VoiceCallTtsConfig } from "./config.js";
|
|
|
|
export type CoreConfig = {
|
|
session?: {
|
|
store?: string;
|
|
};
|
|
messages?: {
|
|
tts?: VoiceCallTtsConfig;
|
|
};
|
|
[key: string]: unknown;
|
|
};
|
|
|
|
export type CoreAgentDeps = OpenClawPluginApi["runtime"]["agent"];
|