31 lines
680 B
TypeScript
31 lines
680 B
TypeScript
import type { IRestApiContext, Schema } from '@/Interface';
|
|
import { makeRestApiRequest } from '@/utils/apiUtils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export async function generateCodeForPrompt(
|
|
ctx: IRestApiContext,
|
|
{
|
|
question,
|
|
context,
|
|
model,
|
|
n8nVersion,
|
|
}: {
|
|
question: string;
|
|
context: {
|
|
schema: Array<{ nodeName: string; schema: Schema }>;
|
|
inputSchema: { nodeName: string; schema: Schema };
|
|
pushRef: string;
|
|
ndvPushRef: string;
|
|
};
|
|
model: string;
|
|
n8nVersion: string;
|
|
},
|
|
): Promise<{ code: string }> {
|
|
return await makeRestApiRequest(ctx, 'POST', '/ask-ai', {
|
|
question,
|
|
context,
|
|
model,
|
|
n8nVersion,
|
|
} as IDataObject);
|
|
}
|