@websolutespa/payload-plugin-bowl-llm
Version:
LLM plugin for Bowl PayloadCms plugin
34 lines (33 loc) • 664 B
JavaScript
import { options } from '../../options';
import { withIntegration } from './withIntegration';
export const LlmKbS3 = withIntegration(options.slug.llmKbS3, [
{
name: 'remoteUrl',
type: 'withText',
required: true
},
{
name: 'key',
type: 'withText',
required: true
},
{
name: 'secret',
type: 'withText',
required: true
},
{
name: 'token',
type: 'withText'
},
{
name: 'recursive',
type: 'checkbox'
},
{
name: 'extension',
type: 'text',
hasMany: true
}
]);
//# sourceMappingURL=LlmKbS3.js.map