mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
feat: AI Workflow Builder backend (no-changelog) (#14837)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { z } from 'zod';
|
||||
import { Z } from 'zod-class';
|
||||
|
||||
export class AiBuilderChatRequestDto extends Z.class({
|
||||
payload: z.object({
|
||||
question: z.string(),
|
||||
}),
|
||||
}) {}
|
||||
@@ -1,5 +1,6 @@
|
||||
export { AiAskRequestDto } from './ai/ai-ask-request.dto';
|
||||
export { AiChatRequestDto } from './ai/ai-chat-request.dto';
|
||||
export { AiBuilderChatRequestDto } from './ai/ai-build-request.dto';
|
||||
export { AiApplySuggestionRequestDto } from './ai/ai-apply-suggestion-request.dto';
|
||||
export { AiFreeCreditsRequestDto } from './ai/ai-free-credits-request.dto';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user