Last active
July 24, 2026 09:10
-
-
Save arjunattam/892e05ae866bfcf3858ac1ecc42865dd to your computer and use it in GitHub Desktop.
template.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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