30 lines
703 B
Python
30 lines
703 B
Python
from fastapi import APIRouter
|
|
from fastapi import Depends
|
|
from fastapi_sqlalchemy import db
|
|
|
|
from superagi.helper.auth import get_user_organisation
|
|
from superagi.models.workflows.agent_workflow import AgentWorkflow
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/list", status_code=201)
|
|
def list_workflows(organisation=Depends(get_user_organisation)):
|
|
"""
|
|
Lists agent workflows.
|
|
|
|
Args:
|
|
organisation: User's organisation.
|
|
|
|
Returns:
|
|
list: A list of dictionaries representing the agent workflows.
|
|
|
|
"""
|
|
|
|
workflows = db.session.query(AgentWorkflow).all()
|
|
|
|
output_json = []
|
|
for workflow in workflows:
|
|
output_json.append(workflow.to_dict())
|
|
return output_json
|