feat: add google stt and tts. add folders to organize agents

This commit is contained in:
Abhishek Kumar 2026-05-22 14:36:50 +05:30
parent 21951eca18
commit ad2fa07058
52 changed files with 3412 additions and 621 deletions

View file

@ -707,6 +707,10 @@ export interface components {
created_at: string;
/** Total Runs */
total_runs: number;
/** Folder Id */
folder_id?: number | null;
/** Workflow Uuid */
workflow_uuid?: string | null;
};
/** WorkflowResponse */
WorkflowResponse: {

View file

@ -28,10 +28,10 @@ export interface Trigger {
*/
enabled?: boolean;
/**
* Auto-generated UUID-style path segment that uniquely identifies this trigger. Used in both URLs:
* Path segment that uniquely identifies this trigger. Used in both URLs:
* Production: `/api/v1/public/agent/<trigger_path>` executes the published agent.
* Test: `/api/v1/public/agent/test/<trigger_path>` executes the latest draft.
* Do not edit manually.
* Can be customized to a descriptive value up to 36 characters using letters, numbers, hyphens, or underscores.
*/
trigger_path?: string;
}