workers-ai-provider
Version:
Workers AI Provider for the vercel AI SDK
15 lines (13 loc) • 322 B
text/typescript
import type { StringLike } from "./utils";
export type AutoRAGChatSettings = {
/**
* Whether to inject a safety prompt before all conversations.
* Defaults to `false`.
*/
safePrompt?: boolean;
} & {
/**
* Passthrough settings that are provided directly to the run function.
*/
[key: string]: StringLike;
};