mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-04 10:52:17 +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
|
|
@ -1,6 +1,6 @@
|
|||
# generated by datamodel-codegen:
|
||||
# filename: dograh-openapi-XXXXXX.json.kmLQzhjuKC
|
||||
# timestamp: 2026-05-21T11:50:06+00:00
|
||||
# filename: dograh-openapi-XXXXXX.json.SafScGt2nh
|
||||
# timestamp: 2026-05-22T09:06:50+00:00
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
|
|
@ -247,6 +247,8 @@ class WorkflowListResponse(BaseModel):
|
|||
status: Annotated[str, Field(title='Status')]
|
||||
created_at: Annotated[AwareDatetime, Field(title='Created At')]
|
||||
total_runs: Annotated[int, Field(title='Total Runs')]
|
||||
folder_id: Annotated[int | None, Field(title='Folder Id')] = None
|
||||
workflow_uuid: Annotated[str | None, Field(title='Workflow Uuid')] = None
|
||||
|
||||
|
||||
class WorkflowResponse(BaseModel):
|
||||
|
|
|
|||
|
|
@ -46,10 +46,10 @@ class Trigger(TypedNode):
|
|||
|
||||
trigger_path: Optional[str] = None
|
||||
"""
|
||||
Auto-generated UUID-style 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.
|
||||
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. Can be customized to a descriptive value up
|
||||
to 36 characters using letters, numbers, hyphens, or underscores.
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -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