Skip to content

Instantly share code, notes, and snippets.

@arjunattam
Last active July 24, 2026 09:10
Show Gist options
  • Select an option

  • Save arjunattam/892e05ae866bfcf3858ac1ecc42865dd to your computer and use it in GitHub Desktop.

Select an option

Save arjunattam/892e05ae866bfcf3858ac1ecc42865dd to your computer and use it in GitHub Desktop.
template.ts
import { llmA, llmB, llmC } from './utils';
// llmA, llmB, llmC are all of the same type
type LLMFunc = (prompt: string) => Promise<string>;
// TODO: Write an aggregator function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment