gitextract_nxx39r7_/ ├── .gitignore ├── .replit ├── CNAME ├── CODE_READINESS_ANALYSIS.md ├── MANIFEST.in ├── README.md ├── babyagi/ │ ├── __init__.py │ ├── api/ │ │ └── __init__.py │ ├── dashboard/ │ │ ├── __init__.py │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── style.css │ │ │ └── js/ │ │ │ ├── dashboard.js │ │ │ ├── function_details.js │ │ │ ├── function_graph.js │ │ │ ├── log_dashboard.js │ │ │ └── log_graph.js │ │ └── templates/ │ │ ├── base.html │ │ ├── chat.html │ │ ├── function_details.html │ │ ├── function_graph.html │ │ ├── function_graph_3d.html │ │ ├── function_graph_mermaid.html │ │ ├── index.html │ │ ├── log_page.html │ │ ├── log_relationship_graph.html │ │ └── logs_dashboard.html │ └── functionz/ │ ├── __init__.py │ ├── core/ │ │ ├── __init__.py │ │ ├── execution.py │ │ ├── framework.py │ │ └── registration.py │ ├── db/ │ │ ├── __init__.py │ │ ├── base_db.py │ │ ├── db_router.py │ │ ├── local_db.py │ │ └── models.py │ └── packs/ │ ├── default/ │ │ ├── ai_functions.py │ │ ├── default_functions.py │ │ ├── function_calling_chat.py │ │ └── os.py │ ├── drafts/ │ │ ├── choose_or_create_function.py │ │ ├── code_writing_functions.py │ │ ├── generate_function.py │ │ ├── react_agent.py │ │ ├── self_build.py │ │ ├── self_build2.py │ │ └── user_db.py │ └── plugins/ │ ├── airtable.py │ ├── augie.py │ ├── e2b.py │ ├── firecrawl.py │ ├── harmonic.py │ ├── payman.py │ ├── serpapi.py │ ├── voilanorbert.py │ └── wokelo.py ├── examples/ │ ├── custom_flask_example.py │ ├── custom_route_example.py │ ├── quickstart_example.py │ ├── self_build_example.py │ ├── simple_example.py │ └── trigger_example.py ├── main.py ├── pyproject.toml ├── requirements.txt └── setup.py