├── .github ├── dependabot.yml ├── labels.yml ├── release-drafter.yml └── workflows │ ├── draft-release.yml │ ├── labeler.yml │ ├── publish-container.yml │ ├── publish.yml │ ├── release.yml │ ├── test-helm-chart.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── THIRD_PARTY_LICENSES ├── alembic.ini ├── docker-compose ├── .env-docker ├── README.md └── docker-compose.yml ├── docs ├── .nojekyll ├── CNAME ├── _sidebar.md ├── a2a.md ├── apps.md ├── artifact-manager.md ├── asgi-apps.md ├── auth.md ├── autoscaling.md ├── browser-worker.md ├── conda-worker.md ├── configurations.md ├── diagram.png ├── getting-started.md ├── hypha-in-pyodide.md ├── hypha-quick-tour.ipynb ├── hypha_data_store.py ├── img │ ├── hypha-icon-black.png │ ├── hypha-icon-black.svg │ ├── hypha-icon-white.png │ ├── hypha-icon-white.svg │ ├── hypha-logo-black.png │ ├── hypha-logo-black.svg │ ├── hypha-logo-white.png │ └── hypha-logo-white.svg ├── index.html ├── k8s.md ├── launch-service.md ├── mcp.md ├── migration-guide.md ├── operate-files.md ├── quick-start.md ├── serverless-functions.md ├── service-load-balancing.md ├── service-type-annotation.md ├── terminal-worker.md ├── vector-search.md ├── workers.md └── zip-streaming.md ├── helm-charts ├── .env-template ├── .helmignore ├── README.md ├── aks-hypha.md ├── apply-secrets.sh ├── hypha-server-kit │ ├── .env.example │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── create-secrets.sh │ ├── generate-secrets.sh │ ├── templates │ │ ├── NOTES.txt │ │ └── _helpers.tpl │ └── values.yaml ├── hypha-server │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml └── redis │ ├── Chart.yaml │ └── templates │ ├── deployment.yaml │ └── service.yaml ├── hypha ├── VERSION ├── __init__.py ├── __main__.py ├── a2a.py ├── admin.py ├── admin_terminal.html ├── apps.py ├── artifact.py ├── core │ ├── __init__.py │ ├── activity.py │ ├── auth.py │ ├── store.py │ └── workspace.py ├── http.py ├── interactive.py ├── local_auth.py ├── mcp.py ├── migrations │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 9096f050eb04_init.py ├── minio.py ├── pgvector.py ├── plugin_parser.py ├── queue.py ├── s3.py ├── s3vector.py ├── server.py ├── startup.py ├── static_files │ ├── img │ │ ├── hypha-icon-black.svg │ │ └── hypha-logo-black.svg │ └── lite.html ├── templates │ ├── apps │ │ ├── imjoy-plugin-parser.html │ │ ├── login_template.html │ │ ├── web-python.index.html │ │ ├── web-worker.index.html │ │ └── window.index.html │ ├── artifacts │ │ ├── application │ │ │ └── index.html │ │ └── collection │ │ │ └── index.html │ ├── hypha-core-app │ │ ├── hypha-app-iframe.html │ │ ├── hypha-app-webpython.js │ │ └── hypha-app-webworker.js │ ├── index.html │ └── ws │ │ ├── a2a_agent_template.hypha.html │ │ ├── code_template.hypha.html │ │ ├── conda_jupyter_kernel_template.hypha.html │ │ ├── fastapi_advanced_template.hypha.html │ │ ├── fastapi_app_template.hypha.html │ │ ├── index.html │ │ ├── javascript_advanced_template.hypha.html │ │ ├── javascript_app_template.hypha.html │ │ ├── mcp_server_template.hypha.html │ │ ├── python_app_template.hypha.html │ │ ├── web_app_template.hypha.html │ │ ├── web_python_kernel_template.hypha.html │ │ └── webcontainer_template.hypha.html ├── triton.py ├── utils │ ├── __init__.py │ ├── asgi_proxy.py │ ├── zenodo.py │ └── zip_utils.py ├── vectors.py ├── websocket.py └── workers │ ├── __init__.py │ ├── __main__.py │ ├── a2a_proxy.py │ ├── base.py │ ├── browser.py │ ├── browser_cache.py │ ├── conda.py │ ├── conda_executor │ ├── __init__.py │ ├── env_spec.py │ ├── executor.py │ └── shared_memory.py │ ├── conda_kernel.py │ ├── k8s.py │ ├── mcp_proxy.py │ ├── python_eval.py │ ├── terminal.html │ └── terminal.py ├── llms.txt ├── pylintrc ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt ├── requirements_lint.txt ├── requirements_pypi.txt ├── requirements_test.txt ├── s3vector.md ├── scripts ├── STRESS_TEST_REPORT.md ├── github_ci_mcp.py ├── hypha_stress_test_suite.py └── vector_benchmark_comparison.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── custom_auth_startup_test.py ├── example-startup-function-failed.py ├── example-startup-function.py ├── example_plugin.py ├── example_service_script.py ├── start_pytriton_server.py ├── stress-test.sh ├── testASGIWebPythonPlugin.imjoy.html ├── testFunctionsPlugin.imjoy.html ├── testUnreliablePlugin.imjoy.html ├── testWebPythonPlugin.imjoy.html ├── testWebWorkerPlugin.imjoy.html ├── testWindowPlugin1.imjoy.html ├── test_a2a.py ├── test_a2a_proxy.py ├── test_admin.py ├── test_app_service_discovery.py ├── test_artifact.py ├── test_artifact_manager_registration.py ├── test_artifact_version_handling.py ├── test_artifact_workspace_context.py ├── test_asgi.py ├── test_auth.py ├── test_browser_worker_integration.py ├── test_cli.py ├── test_conda_env.py ├── test_conda_kernel.py ├── test_custom_auth_server.py ├── test_duplicate_worker_issue.py ├── test_dynamic_vector_engine.py ├── test_event_bus.py ├── test_event_bus_optimization.py ├── test_event_log.py ├── test_http.py ├── test_http_anonymous_cleanup.py ├── test_k8s.py ├── test_list_services_with_apps.py ├── test_local_auth.py ├── test_mcp.py ├── test_mcp_proxy.py ├── test_memory_leak_fix.py ├── test_messages.py ├── test_minio_client.py ├── test_observability.py ├── test_pgvector.py ├── test_plugin_parser.py ├── test_queue.py ├── test_redis.py ├── test_redis_connection.py ├── test_redis_timeout_fix.py ├── test_register_auth_service.py ├── test_root_token.py ├── test_s3.py ├── test_s3vector.py ├── test_server.py ├── test_server_apps.py ├── test_server_disconnection.py ├── test_service_search.py ├── test_services.py ├── test_startup_function.py ├── test_terminal.py ├── test_token.py ├── test_triton.py ├── test_unified_auth_integration.py ├── test_vectors.py ├── test_websocket_metrics.py ├── test_worker.py ├── test_workspace.py ├── test_workspace_loader.py └── test_workspace_security.py ├── tox.ini └── utils ├── backup_database.py └── publish.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/publish-container.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-helm-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/test-helm-chart.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/THIRD_PARTY_LICENSES -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/alembic.ini -------------------------------------------------------------------------------- /docker-compose/.env-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docker-compose/.env-docker -------------------------------------------------------------------------------- /docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docker-compose/README.md -------------------------------------------------------------------------------- /docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.amun.ai -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/a2a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/a2a.md -------------------------------------------------------------------------------- /docs/apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/apps.md -------------------------------------------------------------------------------- /docs/artifact-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/artifact-manager.md -------------------------------------------------------------------------------- /docs/asgi-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/asgi-apps.md -------------------------------------------------------------------------------- /docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/auth.md -------------------------------------------------------------------------------- /docs/autoscaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/autoscaling.md -------------------------------------------------------------------------------- /docs/browser-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/browser-worker.md -------------------------------------------------------------------------------- /docs/conda-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/conda-worker.md -------------------------------------------------------------------------------- /docs/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/configurations.md -------------------------------------------------------------------------------- /docs/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/diagram.png -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/hypha-in-pyodide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/hypha-in-pyodide.md -------------------------------------------------------------------------------- /docs/hypha-quick-tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/hypha-quick-tour.ipynb -------------------------------------------------------------------------------- /docs/hypha_data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/hypha_data_store.py -------------------------------------------------------------------------------- /docs/img/hypha-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-icon-black.png -------------------------------------------------------------------------------- /docs/img/hypha-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-icon-black.svg -------------------------------------------------------------------------------- /docs/img/hypha-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-icon-white.png -------------------------------------------------------------------------------- /docs/img/hypha-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-icon-white.svg -------------------------------------------------------------------------------- /docs/img/hypha-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-logo-black.png -------------------------------------------------------------------------------- /docs/img/hypha-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-logo-black.svg -------------------------------------------------------------------------------- /docs/img/hypha-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-logo-white.png -------------------------------------------------------------------------------- /docs/img/hypha-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/img/hypha-logo-white.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/k8s.md -------------------------------------------------------------------------------- /docs/launch-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/launch-service.md -------------------------------------------------------------------------------- /docs/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/mcp.md -------------------------------------------------------------------------------- /docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/migration-guide.md -------------------------------------------------------------------------------- /docs/operate-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/operate-files.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/serverless-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/serverless-functions.md -------------------------------------------------------------------------------- /docs/service-load-balancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/service-load-balancing.md -------------------------------------------------------------------------------- /docs/service-type-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/service-type-annotation.md -------------------------------------------------------------------------------- /docs/terminal-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/terminal-worker.md -------------------------------------------------------------------------------- /docs/vector-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/vector-search.md -------------------------------------------------------------------------------- /docs/workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/workers.md -------------------------------------------------------------------------------- /docs/zip-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/docs/zip-streaming.md -------------------------------------------------------------------------------- /helm-charts/.env-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/.env-template -------------------------------------------------------------------------------- /helm-charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/.helmignore -------------------------------------------------------------------------------- /helm-charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/README.md -------------------------------------------------------------------------------- /helm-charts/aks-hypha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/aks-hypha.md -------------------------------------------------------------------------------- /helm-charts/apply-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/apply-secrets.sh -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/.env.example -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/Chart.lock -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/README.md -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/create-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/create-secrets.sh -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/generate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/generate-secrets.sh -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/hypha-server-kit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server-kit/values.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/.helmignore -------------------------------------------------------------------------------- /helm-charts/hypha-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/README.md -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/hpa.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/pvc.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/rbac.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm-charts/hypha-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/hypha-server/values.yaml -------------------------------------------------------------------------------- /helm-charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/redis/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/redis/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/redis/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/redis/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/helm-charts/redis/templates/service.yaml -------------------------------------------------------------------------------- /hypha/VERSION: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.21.27" 3 | } 4 | -------------------------------------------------------------------------------- /hypha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/__init__.py -------------------------------------------------------------------------------- /hypha/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/__main__.py -------------------------------------------------------------------------------- /hypha/a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/a2a.py -------------------------------------------------------------------------------- /hypha/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/admin.py -------------------------------------------------------------------------------- /hypha/admin_terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/admin_terminal.html -------------------------------------------------------------------------------- /hypha/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/apps.py -------------------------------------------------------------------------------- /hypha/artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/artifact.py -------------------------------------------------------------------------------- /hypha/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/core/__init__.py -------------------------------------------------------------------------------- /hypha/core/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/core/activity.py -------------------------------------------------------------------------------- /hypha/core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/core/auth.py -------------------------------------------------------------------------------- /hypha/core/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/core/store.py -------------------------------------------------------------------------------- /hypha/core/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/core/workspace.py -------------------------------------------------------------------------------- /hypha/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/http.py -------------------------------------------------------------------------------- /hypha/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/interactive.py -------------------------------------------------------------------------------- /hypha/local_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/local_auth.py -------------------------------------------------------------------------------- /hypha/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/mcp.py -------------------------------------------------------------------------------- /hypha/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/migrations/env.py -------------------------------------------------------------------------------- /hypha/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/migrations/script.py.mako -------------------------------------------------------------------------------- /hypha/migrations/versions/9096f050eb04_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/migrations/versions/9096f050eb04_init.py -------------------------------------------------------------------------------- /hypha/minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/minio.py -------------------------------------------------------------------------------- /hypha/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/pgvector.py -------------------------------------------------------------------------------- /hypha/plugin_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/plugin_parser.py -------------------------------------------------------------------------------- /hypha/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/queue.py -------------------------------------------------------------------------------- /hypha/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/s3.py -------------------------------------------------------------------------------- /hypha/s3vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/s3vector.py -------------------------------------------------------------------------------- /hypha/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/server.py -------------------------------------------------------------------------------- /hypha/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/startup.py -------------------------------------------------------------------------------- /hypha/static_files/img/hypha-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/static_files/img/hypha-icon-black.svg -------------------------------------------------------------------------------- /hypha/static_files/img/hypha-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/static_files/img/hypha-logo-black.svg -------------------------------------------------------------------------------- /hypha/static_files/lite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/static_files/lite.html -------------------------------------------------------------------------------- /hypha/templates/apps/imjoy-plugin-parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/apps/imjoy-plugin-parser.html -------------------------------------------------------------------------------- /hypha/templates/apps/login_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/apps/login_template.html -------------------------------------------------------------------------------- /hypha/templates/apps/web-python.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/apps/web-python.index.html -------------------------------------------------------------------------------- /hypha/templates/apps/web-worker.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/apps/web-worker.index.html -------------------------------------------------------------------------------- /hypha/templates/apps/window.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/apps/window.index.html -------------------------------------------------------------------------------- /hypha/templates/artifacts/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/artifacts/application/index.html -------------------------------------------------------------------------------- /hypha/templates/artifacts/collection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/artifacts/collection/index.html -------------------------------------------------------------------------------- /hypha/templates/hypha-core-app/hypha-app-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/hypha-core-app/hypha-app-iframe.html -------------------------------------------------------------------------------- /hypha/templates/hypha-core-app/hypha-app-webpython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/hypha-core-app/hypha-app-webpython.js -------------------------------------------------------------------------------- /hypha/templates/hypha-core-app/hypha-app-webworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/hypha-core-app/hypha-app-webworker.js -------------------------------------------------------------------------------- /hypha/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/index.html -------------------------------------------------------------------------------- /hypha/templates/ws/a2a_agent_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/a2a_agent_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/code_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/code_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/conda_jupyter_kernel_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/conda_jupyter_kernel_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/fastapi_advanced_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/fastapi_advanced_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/fastapi_app_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/fastapi_app_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/index.html -------------------------------------------------------------------------------- /hypha/templates/ws/javascript_advanced_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/javascript_advanced_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/javascript_app_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/javascript_app_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/mcp_server_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/mcp_server_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/python_app_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/python_app_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/web_app_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/web_app_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/web_python_kernel_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/web_python_kernel_template.hypha.html -------------------------------------------------------------------------------- /hypha/templates/ws/webcontainer_template.hypha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/templates/ws/webcontainer_template.hypha.html -------------------------------------------------------------------------------- /hypha/triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/triton.py -------------------------------------------------------------------------------- /hypha/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/utils/__init__.py -------------------------------------------------------------------------------- /hypha/utils/asgi_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/utils/asgi_proxy.py -------------------------------------------------------------------------------- /hypha/utils/zenodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/utils/zenodo.py -------------------------------------------------------------------------------- /hypha/utils/zip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/utils/zip_utils.py -------------------------------------------------------------------------------- /hypha/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/vectors.py -------------------------------------------------------------------------------- /hypha/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/websocket.py -------------------------------------------------------------------------------- /hypha/workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/__init__.py -------------------------------------------------------------------------------- /hypha/workers/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/__main__.py -------------------------------------------------------------------------------- /hypha/workers/a2a_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/a2a_proxy.py -------------------------------------------------------------------------------- /hypha/workers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/base.py -------------------------------------------------------------------------------- /hypha/workers/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/browser.py -------------------------------------------------------------------------------- /hypha/workers/browser_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/browser_cache.py -------------------------------------------------------------------------------- /hypha/workers/conda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda.py -------------------------------------------------------------------------------- /hypha/workers/conda_executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda_executor/__init__.py -------------------------------------------------------------------------------- /hypha/workers/conda_executor/env_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda_executor/env_spec.py -------------------------------------------------------------------------------- /hypha/workers/conda_executor/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda_executor/executor.py -------------------------------------------------------------------------------- /hypha/workers/conda_executor/shared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda_executor/shared_memory.py -------------------------------------------------------------------------------- /hypha/workers/conda_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/conda_kernel.py -------------------------------------------------------------------------------- /hypha/workers/k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/k8s.py -------------------------------------------------------------------------------- /hypha/workers/mcp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/mcp_proxy.py -------------------------------------------------------------------------------- /hypha/workers/python_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/python_eval.py -------------------------------------------------------------------------------- /hypha/workers/terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/terminal.html -------------------------------------------------------------------------------- /hypha/workers/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/hypha/workers/terminal.py -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/llms.txt -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/pylintrc -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/requirements_lint.txt -------------------------------------------------------------------------------- /requirements_pypi.txt: -------------------------------------------------------------------------------- 1 | setuptools==69.0.3 2 | twine==4.0.2 3 | wheel==0.41.1 4 | -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /s3vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/s3vector.md -------------------------------------------------------------------------------- /scripts/STRESS_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/scripts/STRESS_TEST_REPORT.md -------------------------------------------------------------------------------- /scripts/github_ci_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/scripts/github_ci_mcp.py -------------------------------------------------------------------------------- /scripts/hypha_stress_test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/scripts/hypha_stress_test_suite.py -------------------------------------------------------------------------------- /scripts/vector_benchmark_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/scripts/vector_benchmark_comparison.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/custom_auth_startup_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/custom_auth_startup_test.py -------------------------------------------------------------------------------- /tests/example-startup-function-failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/example-startup-function-failed.py -------------------------------------------------------------------------------- /tests/example-startup-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/example-startup-function.py -------------------------------------------------------------------------------- /tests/example_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/example_plugin.py -------------------------------------------------------------------------------- /tests/example_service_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/example_service_script.py -------------------------------------------------------------------------------- /tests/start_pytriton_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/start_pytriton_server.py -------------------------------------------------------------------------------- /tests/stress-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/stress-test.sh -------------------------------------------------------------------------------- /tests/testASGIWebPythonPlugin.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testASGIWebPythonPlugin.imjoy.html -------------------------------------------------------------------------------- /tests/testFunctionsPlugin.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testFunctionsPlugin.imjoy.html -------------------------------------------------------------------------------- /tests/testUnreliablePlugin.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testUnreliablePlugin.imjoy.html -------------------------------------------------------------------------------- /tests/testWebPythonPlugin.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testWebPythonPlugin.imjoy.html -------------------------------------------------------------------------------- /tests/testWebWorkerPlugin.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testWebWorkerPlugin.imjoy.html -------------------------------------------------------------------------------- /tests/testWindowPlugin1.imjoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/testWindowPlugin1.imjoy.html -------------------------------------------------------------------------------- /tests/test_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_a2a.py -------------------------------------------------------------------------------- /tests/test_a2a_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_a2a_proxy.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_app_service_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_app_service_discovery.py -------------------------------------------------------------------------------- /tests/test_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_artifact.py -------------------------------------------------------------------------------- /tests/test_artifact_manager_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_artifact_manager_registration.py -------------------------------------------------------------------------------- /tests/test_artifact_version_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_artifact_version_handling.py -------------------------------------------------------------------------------- /tests/test_artifact_workspace_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_artifact_workspace_context.py -------------------------------------------------------------------------------- /tests/test_asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_asgi.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_browser_worker_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_browser_worker_integration.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_conda_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_conda_env.py -------------------------------------------------------------------------------- /tests/test_conda_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_conda_kernel.py -------------------------------------------------------------------------------- /tests/test_custom_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_custom_auth_server.py -------------------------------------------------------------------------------- /tests/test_duplicate_worker_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_duplicate_worker_issue.py -------------------------------------------------------------------------------- /tests/test_dynamic_vector_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_dynamic_vector_engine.py -------------------------------------------------------------------------------- /tests/test_event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_event_bus.py -------------------------------------------------------------------------------- /tests/test_event_bus_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_event_bus_optimization.py -------------------------------------------------------------------------------- /tests/test_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_event_log.py -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests/test_http_anonymous_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_http_anonymous_cleanup.py -------------------------------------------------------------------------------- /tests/test_k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_k8s.py -------------------------------------------------------------------------------- /tests/test_list_services_with_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_list_services_with_apps.py -------------------------------------------------------------------------------- /tests/test_local_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_local_auth.py -------------------------------------------------------------------------------- /tests/test_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_mcp.py -------------------------------------------------------------------------------- /tests/test_mcp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_mcp_proxy.py -------------------------------------------------------------------------------- /tests/test_memory_leak_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_memory_leak_fix.py -------------------------------------------------------------------------------- /tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_messages.py -------------------------------------------------------------------------------- /tests/test_minio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_minio_client.py -------------------------------------------------------------------------------- /tests/test_observability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_observability.py -------------------------------------------------------------------------------- /tests/test_pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_pgvector.py -------------------------------------------------------------------------------- /tests/test_plugin_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_plugin_parser.py -------------------------------------------------------------------------------- /tests/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_queue.py -------------------------------------------------------------------------------- /tests/test_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_redis.py -------------------------------------------------------------------------------- /tests/test_redis_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_redis_connection.py -------------------------------------------------------------------------------- /tests/test_redis_timeout_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_redis_timeout_fix.py -------------------------------------------------------------------------------- /tests/test_register_auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_register_auth_service.py -------------------------------------------------------------------------------- /tests/test_root_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_root_token.py -------------------------------------------------------------------------------- /tests/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_s3.py -------------------------------------------------------------------------------- /tests/test_s3vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_s3vector.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_server_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_server_apps.py -------------------------------------------------------------------------------- /tests/test_server_disconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_server_disconnection.py -------------------------------------------------------------------------------- /tests/test_service_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_service_search.py -------------------------------------------------------------------------------- /tests/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_services.py -------------------------------------------------------------------------------- /tests/test_startup_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_startup_function.py -------------------------------------------------------------------------------- /tests/test_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_terminal.py -------------------------------------------------------------------------------- /tests/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_token.py -------------------------------------------------------------------------------- /tests/test_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_triton.py -------------------------------------------------------------------------------- /tests/test_unified_auth_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_unified_auth_integration.py -------------------------------------------------------------------------------- /tests/test_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_vectors.py -------------------------------------------------------------------------------- /tests/test_websocket_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_websocket_metrics.py -------------------------------------------------------------------------------- /tests/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_worker.py -------------------------------------------------------------------------------- /tests/test_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_workspace.py -------------------------------------------------------------------------------- /tests/test_workspace_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_workspace_loader.py -------------------------------------------------------------------------------- /tests/test_workspace_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tests/test_workspace_security.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/tox.ini -------------------------------------------------------------------------------- /utils/backup_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/utils/backup_database.py -------------------------------------------------------------------------------- /utils/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amun-ai/hypha/HEAD/utils/publish.sh --------------------------------------------------------------------------------