P takes, read from the TapPromptMap augmentation.
Type Parameters
P
P extends PromptIdDocumentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The input type prompt P takes, read from the TapPromptMap augmentation.
type PromptInput<P> = P extends keyof TapPromptMap ? TapPromptMap[P] extends {
input: infer I;
} ? I : Record<string, never> : Record<string, unknown>;
P takes, read from the TapPromptMap augmentation.
P extends PromptIdWas this page helpful?