mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-28 08:49:42 +02:00
feat: add google stt and tts. add folders to organize agents
This commit is contained in:
parent
21951eca18
commit
ad2fa07058
52 changed files with 3412 additions and 621 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue