/
githubmirror
/
workgpt
Обзор
Документация
Войти
/
githubmirror
/
workgpt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/apis/helpers/interface.ts
18 строк
455 B
Alex MacCaw
Add new openai functions (#1)
15 июн 2023, 08:07
Не верифицирован
15 июн 2023, 08:07
01ae0c2
Код
Авторство
О чём код?
import { Invokable } from '../types' import { zodToFunctionParameters } from '../../lib/zod-fns' import { ChatFunction } from '../../chat-agents/types' export function getChatFunction(invokable: Invokable): ChatFunction { const { name, usage, schema } = invokable return { name, description: usage, parameters: schema ? zodToFunctionParameters(schema) : { type: 'object', properties: {}, }, } }