Package: @effect/ai
Module: Prompt
A utility type for specifying the parameters required to construct a specific part of a prompt.
Signature
type PartConstructorParams<P> = Omit<P, PartTypeId | "type" | "options"> & {
/**
* Optional provider-specific options for this part.
*/
readonly options?: Part["options"] | undefined
}
Since v1.0.0