Spaces:
Runtime error
Runtime error
| import { $Enums } from '@prisma/client'; | |
| import { BaseChatbotDto, BaseChatbotSettingDto } from '../../base-chatbot.dto'; | |
| export class DifyDto extends BaseChatbotDto { | |
| botType?: $Enums.DifyBotType; | |
| apiUrl?: string; | |
| apiKey?: string; | |
| } | |
| export class DifySettingDto extends BaseChatbotSettingDto { | |
| difyIdFallback?: string; | |
| } | |