| 123456789101112131415161718 |
- // Auto-generated stub — replace with real implementation
- import type { Attachment } from '../../utils/attachments.js'
- import type { Message } from '../../types/message.js'
- import type { ToolUseContext } from '../../Tool.js'
- export const startSkillDiscoveryPrefetch: (
- input: string | null,
- messages: Message[],
- toolUseContext: ToolUseContext,
- ) => Promise<Attachment[]> = (async () => []);
- export const collectSkillDiscoveryPrefetch: (
- pending: Promise<Attachment[]>,
- ) => Promise<Attachment[]> = (async (pending) => pending);
- export const getTurnZeroSkillDiscovery: (
- input: string,
- messages: Message[],
- context: ToolUseContext,
- ) => Promise<Attachment | null> = (async () => null);
|