prefetch.ts 702 B

123456789101112131415161718
  1. // Auto-generated stub — replace with real implementation
  2. import type { Attachment } from '../../utils/attachments.js'
  3. import type { Message } from '../../types/message.js'
  4. import type { ToolUseContext } from '../../Tool.js'
  5. export const startSkillDiscoveryPrefetch: (
  6. input: string | null,
  7. messages: Message[],
  8. toolUseContext: ToolUseContext,
  9. ) => Promise<Attachment[]> = (async () => []);
  10. export const collectSkillDiscoveryPrefetch: (
  11. pending: Promise<Attachment[]>,
  12. ) => Promise<Attachment[]> = (async (pending) => pending);
  13. export const getTurnZeroSkillDiscovery: (
  14. input: string,
  15. messages: Message[],
  16. context: ToolUseContext,
  17. ) => Promise<Attachment | null> = (async () => null);