29 lines
907 B
TypeScript
29 lines
907 B
TypeScript
|
|
import type { ToolDefinition } from './types';
|
||
|
|
export type { ToolDefinition } from './types';
|
||
|
|
|
||
|
|
import { listAccounts } from './list-accounts';
|
||
|
|
import { createAccount } from './create-account';
|
||
|
|
import { getAccountConfig } from './get-account-config';
|
||
|
|
import { getAccountPrompts } from './get-account-prompts';
|
||
|
|
import { pipelineStatus } from './pipeline-status';
|
||
|
|
import { runPipelinePhase } from './run-pipeline-phase';
|
||
|
|
import { generateImages } from './generate-images';
|
||
|
|
import { generateVideos } from './generate-videos';
|
||
|
|
import { listOutputs } from './list-outputs';
|
||
|
|
import { getManifest } from './get-manifest';
|
||
|
|
import { createManifest } from './create-manifest';
|
||
|
|
|
||
|
|
export const tools: ToolDefinition[] = [
|
||
|
|
listAccounts,
|
||
|
|
createAccount,
|
||
|
|
getAccountConfig,
|
||
|
|
getAccountPrompts,
|
||
|
|
pipelineStatus,
|
||
|
|
runPipelinePhase,
|
||
|
|
generateImages,
|
||
|
|
generateVideos,
|
||
|
|
listOutputs,
|
||
|
|
getManifest,
|
||
|
|
createManifest,
|
||
|
|
];
|