43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { createAction } from '@typebot.io/forge'
|
|
import { auth } from '../auth'
|
|
import { isDefined } from '@typebot.io/lib'
|
|
import { createAnthropic } from '@ai-sdk/anthropic'
|
|
import { parseGenerateVariablesOptions } from '@typebot.io/openai-block/shared/parseGenerateVariablesOptions'
|
|
import { runGenerateVariables } from '@typebot.io/openai-block/shared/runGenerateVariables'
|
|
import { anthropicModels } from '../constants'
|
|
|
|
export const generateVariables = createAction({
|
|
name: 'Generate variables',
|
|
auth,
|
|
options: parseGenerateVariablesOptions({ modelFetch: anthropicModels }),
|
|
turnableInto: [
|
|
{
|
|
blockId: 'openai',
|
|
},
|
|
{
|
|
blockId: 'mistral',
|
|
},
|
|
],
|
|
getSetVariableIds: (options) =>
|
|
options.variablesToExtract?.map((v) => v.variableId).filter(isDefined) ??
|
|
[],
|
|
run: {
|
|
server: ({ credentials, options, variables, logs }) => {
|
|
if (credentials?.apiKey === undefined)
|
|
return logs.add('No API key provided')
|
|
|
|
if (options.model === undefined) return logs.add('No model provided')
|
|
|
|
return runGenerateVariables({
|
|
model: createAnthropic({
|
|
apiKey: credentials.apiKey,
|
|
})(options.model),
|
|
prompt: options.prompt,
|
|
variablesToExtract: options.variablesToExtract,
|
|
variables,
|
|
logs,
|
|
})
|
|
},
|
|
},
|
|
})
|