mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import type { IRestApiContext } from '@/Interface';
|
|
import type { AskAiRequest, ChatRequest, ReplaceCodeRequest } from '@/types/assistant.types';
|
|
import { makeRestApiRequest, streamRequest } from '@/utils/apiUtils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export function chatWithAssistant(
|
|
ctx: IRestApiContext,
|
|
payload: ChatRequest.RequestPayload,
|
|
onMessageUpdated: (data: ChatRequest.ResponsePayload) => void,
|
|
onDone: () => void,
|
|
onError: (e: Error) => void,
|
|
): void {
|
|
void streamRequest<ChatRequest.ResponsePayload>(
|
|
ctx,
|
|
'/ai/chat',
|
|
payload,
|
|
onMessageUpdated,
|
|
onDone,
|
|
onError,
|
|
);
|
|
}
|
|
|
|
export async function replaceCode(
|
|
context: IRestApiContext,
|
|
data: ReplaceCodeRequest.RequestPayload,
|
|
): Promise<ReplaceCodeRequest.ResponsePayload> {
|
|
return await makeRestApiRequest<ReplaceCodeRequest.ResponsePayload>(
|
|
context,
|
|
'POST',
|
|
'/ai/chat/apply-suggestion',
|
|
data,
|
|
);
|
|
}
|
|
|
|
export async function generateCodeForPrompt(
|
|
ctx: IRestApiContext,
|
|
{ question, context, forNode }: AskAiRequest.RequestPayload,
|
|
): Promise<{ code: string }> {
|
|
return await makeRestApiRequest(ctx, 'POST', '/ai/ask-ai', {
|
|
question,
|
|
context,
|
|
forNode,
|
|
} as IDataObject);
|
|
}
|