@websolutespa/payload-plugin-bowl-llm
Version:
LLM plugin for Bowl PayloadCms plugin
37 lines (36 loc) • 736 B
JavaScript
import { options } from '../../options';
import { withIntegration } from './withIntegration';
export const LlmKbAzure = withIntegration(options.slug.llmKbAzure, [
{
name: 'remoteUrl',
type: 'withText',
required: true
},
{
name: 'accountName',
type: 'withText',
required: true
},
{
name: 'accountKey',
type: 'withText'
},
{
name: 'connectionString',
type: 'withText'
},
{
name: 'sasToken',
type: 'withText'
},
{
name: 'recursive',
type: 'checkbox'
},
{
name: 'extension',
type: 'text',
hasMany: true
}
]);
//# sourceMappingURL=LlmKbAzure.js.map