11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
// Do not edit this file manually
|
|
import { parseBlockCredentials, parseBlockSchema } from '@typebot.io/forge'
|
|
import { togetherAiBlock } from '.'
|
|
import { auth } from './auth'
|
|
|
|
export const togetherAiBlockSchema = parseBlockSchema(togetherAiBlock)
|
|
export const togetherAiCredentialsSchema = parseBlockCredentials(
|
|
togetherAiBlock.id,
|
|
auth.schema
|
|
)
|