├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── Assets ├── dashboard.png └── laddr.svg ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── dashboard ├── .env.example ├── Dockerfile.prod ├── README.md ├── build-dashboard.sh ├── docker-entrypoint.sh ├── index.html ├── nginx.conf ├── nginx.conf.template ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon-dark.svg │ ├── favicon-light.svg │ └── laddr.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── Header.tsx │ │ ├── Layout.tsx │ │ ├── LoadingOverlay.tsx │ │ └── Sidebar.tsx │ ├── index.css │ ├── lib │ │ ├── api.ts │ │ ├── auth.ts │ │ ├── config.ts │ │ ├── hooks │ │ │ ├── useAgentsAndToolsLoading.ts │ │ │ └── useWebSocket.ts │ │ ├── queries │ │ │ ├── agentTools.ts │ │ │ ├── agents.ts │ │ │ ├── batches.ts │ │ │ ├── health.ts │ │ │ ├── jobs.ts │ │ │ ├── metrics.ts │ │ │ ├── playground.ts │ │ │ ├── prompts.ts │ │ │ └── traces.ts │ │ └── types.ts │ ├── main.tsx │ ├── pages │ │ ├── Agents │ │ │ ├── Detail.tsx │ │ │ └── List.tsx │ │ ├── BatchDetail.tsx │ │ ├── Batches.tsx │ │ ├── Dashboard.tsx │ │ ├── Login.tsx │ │ ├── Logs.tsx │ │ ├── Playground.tsx │ │ ├── PlaygroundDetail.tsx │ │ ├── PlaygroundHistory.tsx │ │ ├── Settings.tsx │ │ └── Traces.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── docs ├── agent-config.md ├── api-reference.md ├── cli.md ├── getting-started.md ├── local-runtime.md ├── migrations.md └── tool-config.md ├── lib └── laddr │ ├── README.md │ ├── pyproject.toml │ ├── src │ └── laddr │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ └── main.py │ │ ├── cli │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── add.py │ │ │ ├── check.py │ │ │ ├── infra.py │ │ │ ├── init.py │ │ │ ├── management.py │ │ │ ├── prompt.py │ │ │ └── run.py │ │ ├── main.py │ │ ├── templates │ │ │ ├── Dockerfile.j2 │ │ │ ├── README.md.j2 │ │ │ ├── agent_flat.py.j2 │ │ │ ├── docker-compose.yml.j2 │ │ │ ├── dotenv.j2 │ │ │ ├── main_flat.py.j2 │ │ │ ├── requirements.txt.j2 │ │ │ ├── tool.py.j2 │ │ │ ├── tools_communication.py.j2 │ │ │ └── tools_web.py.j2 │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── docker.py │ │ │ ├── errors.py │ │ │ ├── logger.py │ │ │ └── templates.py │ │ ├── core │ │ ├── __init__.py │ │ ├── agent_runtime.py │ │ ├── cache.py │ │ ├── config.py │ │ ├── database.py │ │ ├── langfuse_tracer.py │ │ ├── llm.py │ │ ├── mcp_client.py │ │ ├── mcp_tools.py │ │ ├── message_bus.py │ │ ├── runtime_entry.py │ │ ├── storage.py │ │ ├── system_tools.py │ │ └── tooling.py │ │ └── llms.py │ └── tests │ ├── test_batch_endpoints.py │ └── test_database_batches.py ├── mkdocs.yml ├── pyproject.toml ├── requirements.txt └── uv.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/Assets/dashboard.png -------------------------------------------------------------------------------- /Assets/laddr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/Assets/laddr.svg -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dashboard/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/.env.example -------------------------------------------------------------------------------- /dashboard/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/Dockerfile.prod -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/build-dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/build-dashboard.sh -------------------------------------------------------------------------------- /dashboard/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/docker-entrypoint.sh -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/index.html -------------------------------------------------------------------------------- /dashboard/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/nginx.conf -------------------------------------------------------------------------------- /dashboard/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/nginx.conf.template -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/favicon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/public/favicon-dark.svg -------------------------------------------------------------------------------- /dashboard/public/favicon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/public/favicon-light.svg -------------------------------------------------------------------------------- /dashboard/public/laddr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/public/laddr.svg -------------------------------------------------------------------------------- /dashboard/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/App.css -------------------------------------------------------------------------------- /dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/App.tsx -------------------------------------------------------------------------------- /dashboard/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/components/Header.tsx -------------------------------------------------------------------------------- /dashboard/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/components/Layout.tsx -------------------------------------------------------------------------------- /dashboard/src/components/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/components/LoadingOverlay.tsx -------------------------------------------------------------------------------- /dashboard/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/api.ts -------------------------------------------------------------------------------- /dashboard/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/auth.ts -------------------------------------------------------------------------------- /dashboard/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/config.ts -------------------------------------------------------------------------------- /dashboard/src/lib/hooks/useAgentsAndToolsLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/hooks/useAgentsAndToolsLoading.ts -------------------------------------------------------------------------------- /dashboard/src/lib/hooks/useWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/hooks/useWebSocket.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/agentTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/agentTools.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/agents.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/batches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/batches.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/health.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/jobs.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/metrics.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/playground.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/prompts.ts -------------------------------------------------------------------------------- /dashboard/src/lib/queries/traces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/queries/traces.ts -------------------------------------------------------------------------------- /dashboard/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/lib/types.ts -------------------------------------------------------------------------------- /dashboard/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/main.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Agents/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Agents/Detail.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Agents/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Agents/List.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/BatchDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/BatchDetail.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Batches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Batches.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Login.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Logs.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Playground.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/PlaygroundDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/PlaygroundDetail.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/PlaygroundHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/PlaygroundHistory.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Settings.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Traces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/pages/Traces.tsx -------------------------------------------------------------------------------- /dashboard/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/src/vite-env.d.ts -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/tsconfig.node.json -------------------------------------------------------------------------------- /dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/dashboard/vite.config.ts -------------------------------------------------------------------------------- /docs/agent-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/agent-config.md -------------------------------------------------------------------------------- /docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/api-reference.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/local-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/local-runtime.md -------------------------------------------------------------------------------- /docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/migrations.md -------------------------------------------------------------------------------- /docs/tool-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/docs/tool-config.md -------------------------------------------------------------------------------- /lib/laddr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/README.md -------------------------------------------------------------------------------- /lib/laddr/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/pyproject.toml -------------------------------------------------------------------------------- /lib/laddr/src/laddr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/api/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/api/main.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/add.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/check.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/infra.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/init.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/management.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/prompt.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/commands/run.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/main.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/Dockerfile.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/README.md.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/agent_flat.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/agent_flat.py.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/docker-compose.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/docker-compose.yml.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/dotenv.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/dotenv.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/main_flat.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/main_flat.py.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/requirements.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/requirements.txt.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/tool.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/tool.py.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/tools_communication.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/tools_communication.py.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/templates/tools_web.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/templates/tools_web.py.j2 -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/config.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/docker.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/errors.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/logger.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/cli/utils/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/cli/utils/templates.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/__init__.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/agent_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/agent_runtime.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/cache.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/config.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/database.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/langfuse_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/langfuse_tracer.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/llm.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/mcp_client.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/mcp_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/mcp_tools.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/message_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/message_bus.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/runtime_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/runtime_entry.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/storage.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/system_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/system_tools.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/core/tooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/core/tooling.py -------------------------------------------------------------------------------- /lib/laddr/src/laddr/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/src/laddr/llms.py -------------------------------------------------------------------------------- /lib/laddr/tests/test_batch_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/tests/test_batch_endpoints.py -------------------------------------------------------------------------------- /lib/laddr/tests/test_database_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/lib/laddr/tests/test_database_batches.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/requirements.txt -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgnetLabs/Laddr/HEAD/uv.lock --------------------------------------------------------------------------------