├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 01_api_change_request_community.yaml │ ├── 02_api_change_request_standard.yaml │ ├── 03_bug_report.yaml │ ├── 04_design_feedback.yaml │ ├── 05_documentation_improvement.yaml │ ├── 06_enhancement_request.yaml │ ├── 06_feature_request.yaml │ ├── 07_feature_research.yaml │ ├── 08_enhance_github_workflow.yaml │ ├── 08_github_workflow_failure.yaml │ ├── 09_refactoring_request.yaml │ ├── 10_technical_debt.yaml │ ├── 11_test_case_failure.yaml │ ├── 12_test_case_configuration.yaml │ └── 13_test_case_coverage.yaml ├── PULL_REQUEST_TEMPLATE.md ├── pull_request_template.md └── workflows │ ├── 0.7.0_mono_prepare_validate_publish.yaml │ ├── docs-apps-deployment.yaml │ ├── docs-infra-deployment.yaml │ ├── license-scan.yml │ ├── package-metadata.yaml │ ├── peagen_ci.yml │ ├── peagen_infra_ci.yaml │ ├── v0.7.0_matrix_test.yaml │ ├── v0.7.0_mono_prepare_validate.yaml │ ├── v0.7.0_validate_changed_files.yaml │ ├── v0.7.3_single_prepare_validate.yaml │ └── v0.7.3_single_prepare_validate_publish.yaml ├── .gitignore ├── .peagen.toml ├── AGENTS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── STYLE_GUIDE.md ├── assets ├── swarmauri.brand.theme.svg ├── swarmauri_brand_frag_dark.png ├── swarmauri_brand_frag_light.png ├── swarmauri_emblem.png ├── swarmauri_icon_small.png ├── tigrbl.brand.theme.svg ├── tigrbl_favico_1024x1024.png ├── tigrbl_favico_1024x1024_light_stroke.png ├── tigrbl_full_logo.png ├── tigrbl_full_logo_sp_inv.png ├── tigrbl_full_logo_trnsp.png └── tigrbl_type_logo.png ├── infra ├── docs │ ├── docker-compose.yaml │ ├── peagen │ │ ├── README.md │ │ ├── api_manifest.yaml │ │ ├── docs │ │ │ ├── assets │ │ │ │ └── peagen_logo.png │ │ │ ├── guide │ │ │ │ └── index.md │ │ │ ├── home │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ └── news │ │ │ │ └── index.md │ │ ├── mkdocs.insiders.yaml │ │ └── mkdocs.yml │ ├── swarmauri-sdk │ │ ├── api_manifest.yaml │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── base │ │ │ │ │ └── swarmauri_base │ │ │ │ │ │ └── cipher_suites │ │ │ │ │ │ └── CipherSuiteBase.md │ │ │ │ ├── concepts.md │ │ │ │ └── core │ │ │ │ │ └── swarmauri_core │ │ │ │ │ └── cipher_suites │ │ │ │ │ └── ICipherSuite.md │ │ │ ├── assets │ │ │ │ ├── swarmauri_logo.png │ │ │ │ └── swarmauri_logo_dark.jpeg │ │ │ ├── blog │ │ │ │ └── index.md │ │ │ ├── guide │ │ │ │ ├── courses.md │ │ │ │ ├── faq.md │ │ │ │ ├── index.md │ │ │ │ ├── installation.md │ │ │ │ └── usage.md │ │ │ ├── home │ │ │ │ ├── contribute.md │ │ │ │ ├── help.md │ │ │ │ ├── installation.md │ │ │ │ └── why_use_swarmauri.md │ │ │ ├── index.md │ │ │ ├── news │ │ │ │ ├── .authors.yml │ │ │ │ ├── index.md │ │ │ │ └── posts │ │ │ │ │ └── hello-world.md │ │ │ └── people │ │ │ │ └── index.md │ │ ├── mkdocs.insiders.yaml │ │ └── mkdocs.yml │ └── tigrbl │ │ ├── README.md │ │ ├── api_manifest.yaml │ │ ├── docs │ │ ├── assets │ │ │ └── tigrbl_logo.png │ │ ├── guide │ │ │ └── index.md │ │ ├── home │ │ │ └── index.md │ │ ├── index.md │ │ ├── news │ │ │ └── index.md │ │ └── tigrbl_auth_overview.md │ │ ├── mkdocs.insiders.yaml │ │ └── mkdocs.yml └── peagen │ ├── .gw.peagen.toml │ ├── .peagen │ ├── patches │ │ └── openai-gpt4o-0.7-3000.yml │ └── samplers │ │ └── openai-gpt4o.yml │ ├── .worker.peagen.toml │ ├── Dockerfile.gw │ ├── Dockerfile.worker │ └── docker-compose.yml ├── pkgs ├── LICENSE ├── README.md ├── base │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ ├── swarmauri_base │ │ ├── ComponentBase.py │ │ ├── DynamicBase.py │ │ ├── LoggerMixin.py │ │ ├── ObserveBase.py │ │ ├── ServiceMixin.py │ │ ├── TomlMixin.py │ │ ├── YamlMixin.py │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── AgentBase.py │ │ │ ├── AgentConversationMixin.py │ │ │ ├── AgentRetrieveMixin.py │ │ │ ├── AgentSystemContextMixin.py │ │ │ ├── AgentToolMixin.py │ │ │ ├── AgentVectorStoreMixin.py │ │ │ └── __init__.py │ │ ├── certs │ │ │ ├── CertServiceBase.py │ │ │ └── __init__.py │ │ ├── chains │ │ │ ├── ChainBase.py │ │ │ ├── ChainContextBase.py │ │ │ ├── ChainStepBase.py │ │ │ ├── PromptContextChainBase.py │ │ │ └── __init__.py │ │ ├── chunkers │ │ │ ├── ChunkerBase.py │ │ │ └── __init__.py │ │ ├── cipher_suites │ │ │ ├── CipherSuiteBase.py │ │ │ └── __init__.py │ │ ├── conversations │ │ │ ├── ConversationBase.py │ │ │ ├── ConversationSystemContextMixin.py │ │ │ └── __init__.py │ │ ├── crypto │ │ │ ├── CryptoBase.py │ │ │ └── __init__.py │ │ ├── dataconnectors │ │ │ ├── DataConnectorBase.py │ │ │ └── __init__.py │ │ ├── distances │ │ │ ├── DistanceBase.py │ │ │ ├── VisionDistanceBase.py │ │ │ └── __init__.py │ │ ├── document_stores │ │ │ ├── DocumentStoreBase.py │ │ │ ├── DocumentStoreRetrieveBase.py │ │ │ └── __init__.py │ │ ├── documents │ │ │ ├── DocumentBase.py │ │ │ └── __init__.py │ │ ├── embeddings │ │ │ ├── EmbeddingBase.py │ │ │ ├── VisionEmbeddingBase.py │ │ │ └── __init__.py │ │ ├── ensembles │ │ │ ├── EnsembleBase.py │ │ │ └── __init__.py │ │ ├── evaluator_pools │ │ │ ├── EvaluatorPoolBase.py │ │ │ └── __init__.py │ │ ├── evaluator_results │ │ │ ├── EvalResultBase.py │ │ │ └── __init__.py │ │ ├── evaluators │ │ │ ├── EvaluatorBase.py │ │ │ └── __init__.py │ │ ├── factories │ │ │ ├── FactoryBase.py │ │ │ └── __init__.py │ │ ├── git_filters │ │ │ ├── GitFilterBase.py │ │ │ └── __init__.py │ │ ├── glogging.py │ │ ├── image_gens │ │ │ ├── ImageGenBase.py │ │ │ └── __init__.py │ │ ├── inner_products │ │ │ ├── InnerProductBase.py │ │ │ └── __init__.py │ │ ├── keys │ │ │ ├── KeyProviderBase.py │ │ │ ├── __init__.py │ │ │ └── loaders.py │ │ ├── llms │ │ │ ├── LLMBase.py │ │ │ └── __init__.py │ │ ├── logger_formatters │ │ │ ├── FormatterBase.py │ │ │ └── __init__.py │ │ ├── logger_handlers │ │ │ ├── HandlerBase.py │ │ │ └── __init__.py │ │ ├── loggers │ │ │ ├── LoggerBase.py │ │ │ └── __init__.py │ │ ├── matrices │ │ │ ├── MatrixBase.py │ │ │ └── __init__.py │ │ ├── measurements │ │ │ ├── MeasurementAggregateMixin.py │ │ │ ├── MeasurementBase.py │ │ │ ├── MeasurementCalculateMixin.py │ │ │ ├── MeasurementThresholdMixin.py │ │ │ └── __init__.py │ │ ├── messages │ │ │ ├── MessageBase.py │ │ │ └── __init__.py │ │ ├── metrics │ │ │ ├── MetricBase.py │ │ │ └── __init__.py │ │ ├── middlewares │ │ │ ├── MiddlewareBase.py │ │ │ └── __init__.py │ │ ├── mre_crypto │ │ │ ├── MreCryptoBase.py │ │ │ └── __init__.py │ │ ├── norms │ │ │ ├── NormBase.py │ │ │ ├── UseInnerProductMixin.py │ │ │ └── __init__.py │ │ ├── ocrs │ │ │ ├── OCRBase.py │ │ │ └── __init__.py │ │ ├── parsers │ │ │ ├── ParserBase.py │ │ │ └── __init__.py │ │ ├── pipelines │ │ │ ├── PipelineBase.py │ │ │ └── __init__.py │ │ ├── pop │ │ │ ├── PopSignerMixin.py │ │ │ ├── PopSigningBase.py │ │ │ ├── PopVerifierMixin.py │ │ │ ├── __init__.py │ │ │ ├── binding.py │ │ │ └── util.py │ │ ├── programs │ │ │ ├── ProgramBase.py │ │ │ └── __init__.py │ │ ├── prompt_templates │ │ │ ├── PromptTemplateBase.py │ │ │ └── __init__.py │ │ ├── prompts │ │ │ ├── PromptBase.py │ │ │ ├── PromptGeneratorBase.py │ │ │ ├── PromptMatrixBase.py │ │ │ └── __init__.py │ │ ├── pseudometrics │ │ │ ├── PseudometricBase.py │ │ │ └── __init__.py │ │ ├── publishers │ │ │ ├── PublishBase.py │ │ │ └── __init__.py │ │ ├── rate_limits │ │ │ ├── RateLimitBase.py │ │ │ └── __init__.py │ │ ├── schema_converters │ │ │ ├── SchemaConverterBase.py │ │ │ └── __init__.py │ │ ├── secrets │ │ │ └── __init__.py │ │ ├── seminorms │ │ │ ├── SeminormBase.py │ │ │ └── __init__.py │ │ ├── service_registries │ │ │ ├── ServiceRegistryBase.py │ │ │ └── __init__.py │ │ ├── signing │ │ │ ├── SigningBase.py │ │ │ └── __init__.py │ │ ├── similarities │ │ │ ├── SimilarityBase.py │ │ │ └── __init__.py │ │ ├── state │ │ │ ├── StateBase.py │ │ │ └── __init__.py │ │ ├── storage │ │ │ ├── StorageAdapterBase.py │ │ │ └── __init__.py │ │ ├── stt │ │ │ ├── STTBase.py │ │ │ └── __init__.py │ │ ├── swarms │ │ │ ├── SwarmBase.py │ │ │ └── __init__.py │ │ ├── task_mgmt_strategies │ │ │ ├── TaskMgmtStrategyBase.py │ │ │ └── __init__.py │ │ ├── tensors │ │ │ ├── TensorBase.py │ │ │ └── __init__.py │ │ ├── tokens │ │ │ ├── TokenServiceBase.py │ │ │ └── __init__.py │ │ ├── tool_llms │ │ │ ├── ToolLLMBase.py │ │ │ └── __init__.py │ │ ├── toolkits │ │ │ ├── ToolkitBase.py │ │ │ └── __init__.py │ │ ├── tools │ │ │ ├── ParameterBase.py │ │ │ ├── ToolBase.py │ │ │ └── __init__.py │ │ ├── transports │ │ │ ├── TransportBase.py │ │ │ ├── __init__.py │ │ │ ├── appserver_mixin.py │ │ │ ├── http_client_mixin.py │ │ │ ├── http_server_mixin.py │ │ │ ├── mixins.py │ │ │ ├── multiplex_mixin.py │ │ │ ├── peer_mixin.py │ │ │ └── runnable_mixin.py │ │ ├── tts │ │ │ ├── TTSBase.py │ │ │ └── __init__.py │ │ ├── vector_stores │ │ │ ├── VectorStoreBase.py │ │ │ ├── VectorStoreCloudMixin.py │ │ │ ├── VectorStorePersistentMixin.py │ │ │ ├── VectorStoreRetrieveMixin.py │ │ │ ├── VectorStoreSaveLoadMixin.py │ │ │ ├── VisionVectorStoreBase.py │ │ │ └── __init__.py │ │ ├── vectors │ │ │ ├── VectorBase.py │ │ │ └── __init__.py │ │ ├── vlms │ │ │ ├── VLMBase.py │ │ │ └── __init__.py │ │ └── xmp │ │ │ ├── EmbedXmpBase.py │ │ │ └── __init__.py │ └── tests │ │ ├── functional │ │ └── certs │ │ │ └── test_certservicebase_functional.py │ │ ├── i9n │ │ ├── LoggerMixin_i9n_test.py │ │ └── YamlMixinUnitTest.py │ │ ├── integration │ │ └── test_middleware_fastapi.py │ │ ├── perf │ │ └── certs │ │ │ └── test_certservicebase_perf.py │ │ ├── unit │ │ ├── ComponentBase_unit_test.py │ │ ├── LoggerMixin_unit_test.py │ │ ├── ObserveBase_unit_test.py │ │ ├── ServiceMixin_unit_test.py │ │ ├── TomlMixin_unit_test.py │ │ ├── YamlMixin_unit_test.py │ │ ├── certs │ │ │ ├── test_certservicebase_rfc2986.py │ │ │ └── test_certservicebase_rfc5280.py │ │ ├── import_base_test.py │ │ ├── publishbase_unit_test.py │ │ ├── test_embedxmp_base.py │ │ ├── test_git_filter_base.py │ │ ├── test_token_service_base.py │ │ └── test_transport_base.py │ │ └── xfail │ │ └── LoggerMixin_xfail_test.py ├── community │ ├── swarmauri_certs_acme │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_acme │ │ │ ├── AcmeCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── certs │ │ │ │ └── test_acmecertservice_functional.py │ │ │ ├── perf │ │ │ └── certs │ │ │ │ └── test_acmecertservice_perf.py │ │ │ └── unit │ │ │ └── certs │ │ │ ├── test_acmecertservice_rfc2986.py │ │ │ ├── test_acmecertservice_rfc5280.py │ │ │ └── test_acmecertservice_rfc8555.py │ ├── swarmauri_certs_azure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_azure │ │ │ ├── __init__.py │ │ │ └── certs │ │ │ │ ├── AzureKeyVaultCertService.py │ │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_rfc2986_csr.py │ │ │ ├── test_rfc5280_serial.py │ │ │ └── test_rfc7468_pem.py │ ├── swarmauri_certs_cfssl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_cfssl │ │ │ ├── CfsslCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── i9n │ │ │ └── test_cfssl_service_integration.py │ │ │ ├── perf │ │ │ └── test_cfssl_service_perf.py │ │ │ └── unit │ │ │ ├── test_registration.py │ │ │ ├── test_rfc5280.py │ │ │ └── test_rfc7468.py │ ├── swarmauri_certs_crlverifyservice │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_crlverifyservice │ │ │ ├── CrlVerifyService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── functional │ │ │ └── test_crlverifyservice_functional.py │ │ │ ├── perf │ │ │ └── test_verify_cert_perf.py │ │ │ └── unit │ │ │ ├── test_crlverifyservice.py │ │ │ └── test_crlverifyservice_rfc5280.py │ ├── swarmauri_certs_csronly │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_csronly │ │ │ ├── CsrOnlyService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── certs │ │ │ │ └── test_csronlyservice_functional.py │ │ │ ├── perf │ │ │ └── certs │ │ │ │ └── test_csronlyservice_perf.py │ │ │ └── unit │ │ │ └── certs │ │ │ ├── test_csronlyservice_rfc2986.py │ │ │ └── test_csronlyservice_rfc5280.py │ ├── swarmauri_certs_ocspverify │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_ocspverify │ │ │ ├── OcspVerifyService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_ocspverify_functional.py │ │ │ ├── perf │ │ │ └── test_ocspverify_perf.py │ │ │ └── unit │ │ │ ├── test_rfc5280.py │ │ │ └── test_rfc6960.py │ ├── swarmauri_certservice_aws_kms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certservice_aws_kms │ │ │ ├── AwsKmsCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── functional │ │ │ └── test_awskmscertservice_functional.py │ │ │ ├── perf │ │ │ └── test_awskmscertservice_perf.py │ │ │ └── unit │ │ │ ├── test_awskmscertservice_rfc2986.py │ │ │ └── test_awskmscertservice_rfc5280.py │ ├── swarmauri_certservice_gcpkms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certservice_gcpkms │ │ │ ├── GcpKmsCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── test_functional_service.py │ │ │ ├── test_perf_service.py │ │ │ ├── test_rfc2986_csr.py │ │ │ ├── test_rfc5280_basic_constraints.py │ │ │ └── test_unit_service.py │ ├── swarmauri_certservice_ms_adcs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certservice_ms_adcs │ │ │ ├── MsAdcsCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_self_signed_roundtrip.py │ │ │ ├── perf │ │ │ └── test_csr_creation_perf.py │ │ │ └── unit │ │ │ ├── test_rfc2986_pkcs10.py │ │ │ └── test_rfc5280_x509.py │ ├── swarmauri_certservice_scep │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certservice_scep │ │ │ ├── ScepCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_scepcertservice_functional.py │ │ │ ├── perf │ │ │ └── test_scepcertservice_perf.py │ │ │ └── unit │ │ │ ├── test_scepcertservice_rfc2986.py │ │ │ ├── test_scepcertservice_rfc5280.py │ │ │ └── test_scepcertservice_rfc8894.py │ ├── swarmauri_certservice_stepca │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certservice_stepca │ │ │ ├── StepCaCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_stepca_sign_rfc5280.py │ │ │ ├── perf │ │ │ └── test_stepca_perf.py │ │ │ └── unit │ │ │ ├── test_stepca_rfc2986.py │ │ │ └── test_stepca_rfc5280.py │ ├── swarmauri_embedding_mlm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_embedding_mlm │ │ │ ├── MlmEmbedding.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── MlmEmbedding_unit_test.py │ ├── swarmauri_keyprovider_aws_kms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_aws_kms │ │ │ ├── AwsKmsKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── jwk_functional_test.py │ │ │ ├── perf │ │ │ └── random_bytes_perf_test.py │ │ │ ├── rfc │ │ │ ├── test_rfc7515.py │ │ │ └── test_rfc7517.py │ │ │ └── unit │ │ │ └── AwsKmsKeyProvider_test.py │ ├── swarmauri_keyprovider_gcpkms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_gcpkms │ │ │ ├── GcpKmsKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_hkdf_functional.py │ │ │ ├── perf │ │ │ └── test_b64_perf.py │ │ │ └── unit │ │ │ ├── test_gcpkms_provider_unit.py │ │ │ ├── test_rfc7517_jwk.py │ │ │ └── test_rfc7518_algorithms.py │ ├── swarmauri_keyprovider_vaulttransit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_vaulttransit │ │ │ ├── VaultTransitKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── test_functional.py │ │ │ ├── test_performance.py │ │ │ ├── test_rfc5869_hkdf.py │ │ │ ├── test_rfc7517_jwk.py │ │ │ └── test_unit.py │ ├── swarmauri_llm_leptonai │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_llm_leptonai │ │ │ ├── LeptonAIImgGenModel.py │ │ │ ├── LeptonAIModel.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── LeptonAIImgGenModel_unit_test.py │ │ │ └── LeptonAIModel_unit_test.py │ ├── swarmauri_measurement_mutualinformation │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_measurement_mutualinformation │ │ │ ├── MutualInformationMeasurement.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── MutualInformationMeasurement_test.py │ ├── swarmauri_measurement_tokencountestimator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_measurement_tokencountestimator │ │ │ ├── TokenCountEstimatorMeasurement.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── TokenCountEstimatorMeasurement_unit_test.py │ ├── swarmauri_middleware_circuitbreaker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_circuitbreaker │ │ │ ├── CircuitBreakerMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_CircuitBreakerMiddleware.py │ ├── swarmauri_middleware_ratepolicy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_ratepolicy │ │ │ ├── RetryPolicyMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_RetryPolicyMiddleware.py │ ├── swarmauri_ocr_pytesseract │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_ocr_pytesseract │ │ │ ├── PytesseractOCR.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PytesseractOCR_unit_test.py │ ├── swarmauri_parser_bertembedding │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_bertembedding │ │ │ ├── BERTEmbeddingParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── BERTEmbeddingParser_test.py │ ├── swarmauri_parser_entityrecognition │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_entityrecognition │ │ │ ├── EntityRecognitionParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── EntityRecognitionParser_test.py │ ├── swarmauri_parser_fitzpdf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_fitzpdf │ │ │ ├── FitzPdfParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── FitzPdfParser_test.py │ ├── swarmauri_parser_pypdf2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_pypdf2 │ │ │ ├── PyPDF2Parser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PyPDF2Parser_test.py │ ├── swarmauri_parser_pypdftk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_pypdftk │ │ │ ├── PyPDFTKParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PyPDFTKParser_test.py │ ├── swarmauri_parser_slate │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_slate │ │ │ ├── SlateParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── SlateParser_test.py │ │ │ └── resources │ │ │ └── demo.pdf │ ├── swarmauri_parser_textblob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_textblob │ │ │ ├── TextBlobNounParser.py │ │ │ ├── TextBlobSentenceParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── TextBlobNounParser_unit_test.py │ │ │ └── TextBlobSentenceParser_unit_test.py │ ├── swarmauri_signing_dsse │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_dsse │ │ │ ├── __init__.py │ │ │ ├── codec_json.py │ │ │ ├── signer.py │ │ │ └── types.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_dsse_signer.py │ ├── swarmauri_state_clipboard │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_state_clipboard │ │ │ ├── ClipboardState.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── ClipboardState_test.py │ ├── swarmauri_tests_griffe │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tests_griffe │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_plugin.py │ ├── swarmauri_tool_captchagenerator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_captchagenerator │ │ │ ├── CaptchaGeneratorTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── CaptchaGeneratorTool_test.py │ ├── swarmauri_tool_dalechallreadability │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_dalechallreadability │ │ │ ├── DaleChallReadabilityTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── DaleChallReadability_test.py │ ├── swarmauri_tool_downloadpdf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_downloadpdf │ │ │ ├── DownloadPdfTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── DownloadPdfTool_test.py │ ├── swarmauri_tool_entityrecognition │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_entityrecognition │ │ │ ├── EntityRecognitionTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── EntityRecognitionTool_test.py │ ├── swarmauri_tool_folium │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_folium │ │ │ ├── FoliumTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── FoliumTool_test.py │ ├── swarmauri_tool_gmail │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_gmail │ │ │ ├── GmailReadTool.py │ │ │ ├── GmailSendTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── GmailReadTool_test.py │ │ │ └── GmailSendTool_test.py │ ├── swarmauri_tool_jupyterclearoutput │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterclearoutput │ │ │ ├── JupyterClearOutputTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterClearOutputTool.py │ │ │ └── test_JupyterClearOutputTool__init__.py │ ├── swarmauri_tool_jupyterdisplay │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterdisplay │ │ │ ├── JupyterDisplayTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterDisplayTool.py │ │ │ └── test_JupyterDisplayTool__init__.py │ ├── swarmauri_tool_jupyterdisplayhtml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterdisplayhtml │ │ │ ├── JupyterDisplayHtmlTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterDisplayHtmlTool.py │ │ │ └── test_JupyterDisplayHtmlTool__init__.py │ ├── swarmauri_tool_jupyterexecuteandconvert │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexecuteandconvert │ │ │ ├── JupyterExecuteAndConvertTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExecuteAndConvertTool.py │ │ │ └── test_JupyterExecuteAndConvertTool__init__.py │ ├── swarmauri_tool_jupyterexecutecell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexecutecell │ │ │ ├── JupyterExecuteCellTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExecuteCellTool.py │ │ │ └── test_JupyterExecuteCellTool__init__.py │ ├── swarmauri_tool_jupyterexecutenotebook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexecutenotebook │ │ │ ├── JupyterExecuteNotebookTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExecuteNotebookTool.py │ │ │ └── test_JupyterExecuteNotebookTool__init__.py │ ├── swarmauri_tool_jupyterexecutenotebookwithparameters │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexecutenotebookwithparameters │ │ │ ├── JupyterExecuteNotebookWithParametersTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExecuteNotebookWithParametersTool.py │ │ │ └── test_JupyterExecuteNotebookWithParametersTool__init__.py │ ├── swarmauri_tool_jupyterexporthtml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexporthtml │ │ │ ├── JupyterExportHtmlTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExportHtmlTool.py │ │ │ └── test_JupyterExportHtmlTool_init__.py │ ├── swarmauri_tool_jupyterexportlatex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexportlatex │ │ │ ├── JupyterExportLatexTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExportLatexTool.py │ │ │ └── test_JupyterExportLatexTool__init__.py │ ├── swarmauri_tool_jupyterexportmarkdown │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexportmarkdown │ │ │ ├── JupyterExportMarkdownTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExportMarkdownTool.py │ │ │ └── test_JupyterExportMarkdownTool__init__.py │ ├── swarmauri_tool_jupyterexportpython │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterexportpython │ │ │ ├── JupyterExportPythonTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterExportPythonTool.py │ │ │ └── test_JupyterExportPythonTool__init__.py │ ├── swarmauri_tool_jupyterfromdict │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterfromdict │ │ │ ├── JupyterFromDictTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterFromDictTool.py │ │ │ └── test_JupyterFromDictTool__init__.py │ ├── swarmauri_tool_jupytergetiopubmessage │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupytergetiopubmessage │ │ │ ├── JupyterGetIOPubMessageTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterGetIOPubMessageTool.py │ │ │ └── test_JupyterGetIOPubMessageTool__init__.py │ ├── swarmauri_tool_jupytergetshellmessage │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupytergetshellmessage │ │ │ ├── JupyterGetShellMessageTool.py │ │ │ ├── __init__.py │ │ │ └── install_kernel.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterGetShellMessageTool.py │ │ │ └── test_JupyterGetShellMessageTool__init__.py │ ├── swarmauri_tool_jupyterreadnotebook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterreadnotebook │ │ │ ├── JupyterReadNotebookTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterReadNotebookTool.py │ │ │ └── test_JupyterReadNotebookTool__init__.py │ ├── swarmauri_tool_jupyterruncell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterruncell │ │ │ ├── JupyterRunCellTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterRunCellTool.py │ │ │ └── test_JupyterRunCellTool__init__.py │ ├── swarmauri_tool_jupytershutdownkernel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupytershutdownkernel │ │ │ ├── JupyterShutdownKernelTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterShutdownKernelTool.py │ │ │ └── test_JupyterShutdownKernelTool__init__.py │ ├── swarmauri_tool_jupyterstartkernel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterstartkernel │ │ │ ├── JupyterStartKernelTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterStartKernelTool.py │ │ │ └── test_JupyterStartKernelTool__init__.py │ ├── swarmauri_tool_jupytervalidatenotebook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupytervalidatenotebook │ │ │ ├── JupyterValidateNotebookTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterValidateNotebookTool.py │ │ │ └── test_JupyterValidateNotebookTool__init__.py │ ├── swarmauri_tool_jupyterwritenotebook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── payload.json │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_jupyterwritenotebook │ │ │ ├── JupyterWriteNotebookTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_JupyterWriteNotebookTool.py │ │ │ └── test_JupyterWriteNotebookTool__init__.py │ ├── swarmauri_tool_lexicaldensity │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_lexicaldensity │ │ │ ├── LexicalDensityTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── LexicalDensity_test.py │ ├── swarmauri_tool_psutil │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_psutil │ │ │ ├── PsutilTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PsutilTool_test.py │ ├── swarmauri_tool_qrcodegenerator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_qrcodegenerator │ │ │ ├── QrCodeGeneratorTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── QrCodeGeneratorTool_test.py │ ├── swarmauri_tool_searchword │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_searchword │ │ │ ├── SearchWordTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_SearchWordTool.py │ ├── swarmauri_tool_sentencecomplexity │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_sentencecomplexity │ │ │ ├── SentenceComplexityTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── SentenceComplexity_test.py │ ├── swarmauri_tool_sentimentanalysis │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_sentimentanalysis │ │ │ ├── SentimentAnalysisTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── SentimentAnalysisTool_test.py │ ├── swarmauri_tool_smogindex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_smogindex │ │ │ ├── SMOGIndexTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── SMOGIndex_test.py │ ├── swarmauri_tool_textlength │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_textlength │ │ │ ├── TextLengthTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── TextLength_unit_test.py │ ├── swarmauri_tool_webscraping │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_webscraping │ │ │ ├── WebScrapingTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── WebScrapingTool_test.py │ ├── swarmauri_tool_zapierhook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_zapierhook │ │ │ ├── ZapierHookTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── ZapierHookTool_test.py │ ├── swarmauri_toolkit_github │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_toolkit_github │ │ │ ├── GithubBranchTool.py │ │ │ ├── GithubCommitTool.py │ │ │ ├── GithubIssueTool.py │ │ │ ├── GithubPRTool.py │ │ │ ├── GithubRepoTool.py │ │ │ ├── GithubToolkit.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── GithubBranchTool_test.py │ │ │ ├── GithubCommitTool_test.py │ │ │ ├── GithubIssueTool_test.py │ │ │ ├── GithubPRTool_test.py │ │ │ ├── GithubRepoTool_test.py │ │ │ └── GithubToolkit_test.py │ ├── swarmauri_toolkit_jupytertoolkit │ │ ├── LICENSE │ │ ├── PACKAGE_REQUIREMENTS.md │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_toolkit_jupytertoolkit │ │ │ ├── JupyterToolkit.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_JupyterToolkit.py │ ├── swarmauri_vectorstore_annoy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_annoy │ │ │ ├── AnnoyVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── AnnoyVectorStore_test.py │ ├── swarmauri_vectorstore_cloudweaviate │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_cloudweaviate │ │ │ ├── CloudWeaviateVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── CloudWeaviateVectorStore_test.py │ ├── swarmauri_vectorstore_duckdb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_duckdb │ │ │ ├── DuckDBVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── DuckDBVectorStore_unit_test.py │ ├── swarmauri_vectorstore_mlm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_mlm │ │ │ ├── MlmVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── MlmVectorStore_unit_test.py │ ├── swarmauri_vectorstore_neo4j │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_neo4j │ │ │ ├── Neo4jVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── Neo4jVectorStore_test.py │ ├── swarmauri_vectorstore_persistentchromadb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_persistentchromadb │ │ │ ├── PersistentChromaDBVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PersistentChromadbVectorStore_test.py │ ├── swarmauri_vectorstore_pinecone │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_pinecone │ │ │ ├── PineconeVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── PineconeVectorStore_test.py │ ├── swarmauri_vectorstore_qdrant │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_qdrant │ │ │ ├── CloudQdrantVectorStore.py │ │ │ ├── PersistentQdrantVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── CloudQdrantVectorStore_connect_test.py │ │ │ ├── CloudQdrantVectorStore_test.py │ │ │ └── PersistentQdrantVectorStore_test.py │ ├── swarmauri_vectorstore_redis │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_redis │ │ │ ├── RedisDocumentRetriever.py │ │ │ ├── RedisVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── RedisDocumentRetriever_unit_test.py │ │ │ └── RedisVectorStore_test.py │ ├── swm_example_community_package │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swm_example_community_package │ │ │ ├── ExampleCommunityAgent.py │ │ │ └── __init__.py │ └── zdx │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api_manifest.yaml │ │ ├── docs │ │ └── .gitkeep │ │ ├── mkdocs.insiders.yaml │ │ ├── mkdocs.yml │ │ ├── pyproject.toml │ │ ├── tests │ │ ├── test_cli.py │ │ ├── test_gen_api.py │ │ └── test_performance.py │ │ └── zdx │ │ ├── __init__.py │ │ ├── cli.py │ │ └── scripts │ │ ├── __init__.py │ │ ├── gen_api.py │ │ └── gen_readmes.py ├── conftest.py ├── core │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ ├── swarmauri_core │ │ ├── __init__.py │ │ ├── agent_apis │ │ │ ├── IAgentCommands.py │ │ │ ├── IAgentRouterCRUD.py │ │ │ └── __init__.py │ │ ├── agent_factories │ │ │ ├── IExportConf.py │ │ │ └── __init__.py │ │ ├── agents │ │ │ ├── IAgent.py │ │ │ ├── IAgentConversation.py │ │ │ ├── IAgentParser.py │ │ │ ├── IAgentRetrieve.py │ │ │ ├── IAgentSystemContext.py │ │ │ ├── IAgentToolkit.py │ │ │ ├── IAgentVectorStore.py │ │ │ └── __init__.py │ │ ├── certs │ │ │ ├── ICertService.py │ │ │ └── __init__.py │ │ ├── chains │ │ │ ├── ICallableChain.py │ │ │ ├── IChain.py │ │ │ ├── IChainContext.py │ │ │ ├── IChainContextLoader.py │ │ │ ├── IChainDependencyResolver.py │ │ │ ├── IChainFactory.py │ │ │ ├── IChainStep.py │ │ │ └── __init__.py │ │ ├── chunkers │ │ │ ├── IChunker.py │ │ │ └── __init__.py │ │ ├── cipher_suites │ │ │ ├── ICipherSuite.py │ │ │ ├── __init__.py │ │ │ └── types.py │ │ ├── conversations │ │ │ ├── IConversation.py │ │ │ ├── IMaxSize.py │ │ │ ├── ISystemContext.py │ │ │ └── __init__.py │ │ ├── crypto │ │ │ ├── ICrypto.py │ │ │ ├── __init__.py │ │ │ └── types.py │ │ ├── dataconnectors │ │ │ ├── IDataConnector.py │ │ │ └── __init__.py │ │ ├── distances │ │ │ ├── IDistanceSimilarity.py │ │ │ └── __init__.py │ │ ├── document_stores │ │ │ ├── IDocumentRetrieve.py │ │ │ ├── IDocumentStore.py │ │ │ └── __init__.py │ │ ├── documents │ │ │ ├── IDocument.py │ │ │ ├── IExperimentDocument.py │ │ │ └── __init__.py │ │ ├── embeddings │ │ │ ├── IFeature.py │ │ │ ├── ISaveModel.py │ │ │ ├── IVectorize.py │ │ │ └── __init__.py │ │ ├── ensembles │ │ │ ├── IEnsemble.py │ │ │ └── __init__.py │ │ ├── evaluator_pools │ │ │ ├── IEvaluatorPool.py │ │ │ └── __init__.py │ │ ├── evaluator_results │ │ │ ├── IEvalResult.py │ │ │ └── __init__.py │ │ ├── evaluators │ │ │ ├── IEvaluate.py │ │ │ └── __init__.py │ │ ├── factories │ │ │ ├── IFactory.py │ │ │ └── __init__.py │ │ ├── git_filters │ │ │ ├── IGitFilter.py │ │ │ └── __init__.py │ │ ├── image_gens │ │ │ ├── IGenImage.py │ │ │ └── __init__.py │ │ ├── inner_products │ │ │ ├── IInnerProduct.py │ │ │ └── __init__.py │ │ ├── keys │ │ │ ├── IKeyProvider.py │ │ │ ├── __init__.py │ │ │ └── types.py │ │ ├── llms │ │ │ ├── IFit.py │ │ │ ├── IPredict.py │ │ │ └── __init__.py │ │ ├── logger_formatters │ │ │ ├── IFormatter.py │ │ │ └── __init__.py │ │ ├── logger_handlers │ │ │ ├── IHandler.py │ │ │ └── __init__.py │ │ ├── loggers │ │ │ ├── ILogger.py │ │ │ └── __init__.py │ │ ├── matrices │ │ │ ├── IMatrix.py │ │ │ └── __init__.py │ │ ├── measurements │ │ │ ├── IMeasurement.py │ │ │ ├── IMeasurementAggregate.py │ │ │ ├── IMeasurementCalculate.py │ │ │ ├── IThreshold.py │ │ │ └── __init__.py │ │ ├── messages │ │ │ ├── IMessage.py │ │ │ └── __init__.py │ │ ├── metrics │ │ │ ├── IMetric.py │ │ │ └── __init__.py │ │ ├── middlewares │ │ │ ├── IMiddleware.py │ │ │ └── __init__.py │ │ ├── mre_crypto │ │ │ ├── IMreCrypto.py │ │ │ ├── __init__.py │ │ │ └── types.py │ │ ├── norms │ │ │ ├── INorm.py │ │ │ ├── IUseInnerProduct.py │ │ │ └── __init__.py │ │ ├── ocrs │ │ │ ├── IPredict.py │ │ │ └── __init__.py │ │ ├── parsers │ │ │ ├── IParser.py │ │ │ └── __init__.py │ │ ├── pipelines │ │ │ ├── IPipeline.py │ │ │ └── __init__.py │ │ ├── pop │ │ │ ├── __init__.py │ │ │ ├── ipop.py │ │ │ ├── isigner.py │ │ │ └── types.py │ │ ├── programs │ │ │ ├── IProgram.py │ │ │ └── __init__.py │ │ ├── prompt_templates │ │ │ ├── IPromptTemplate.py │ │ │ └── __init__.py │ │ ├── prompts │ │ │ ├── IPrompt.py │ │ │ ├── IPromptMatrix.py │ │ │ ├── ITemplate.py │ │ │ └── __init__.py │ │ ├── pseudometrics │ │ │ ├── IPseudometric.py │ │ │ └── __init__.py │ │ ├── publishers │ │ │ ├── IPublish.py │ │ │ └── __init__.py │ │ ├── rate_limits │ │ │ ├── IRateLimit.py │ │ │ └── __init__.py │ │ ├── schema_converters │ │ │ ├── ISchemaConvert.py │ │ │ └── __init__.py │ │ ├── seminorms │ │ │ ├── ISeminorm.py │ │ │ └── __init__.py │ │ ├── service_registries │ │ │ ├── IServiceRegistry.py │ │ │ └── __init__.py │ │ ├── signing │ │ │ ├── ISigning.py │ │ │ ├── __init__.py │ │ │ ├── intent.py │ │ │ └── types.py │ │ ├── similarities │ │ │ ├── ISimilarity.py │ │ │ └── __init__.py │ │ ├── sst │ │ │ ├── IPredict.py │ │ │ └── __init__.py │ │ ├── state │ │ │ ├── IState.py │ │ │ └── __init__.py │ │ ├── storage │ │ │ ├── IStorageAdapter.py │ │ │ └── __init__.py │ │ ├── swarm_apis │ │ │ ├── IAgentRegistrationAPI.py │ │ │ ├── ISwarmAPI.py │ │ │ └── __init__.py │ │ ├── swarms │ │ │ ├── ISwarm.py │ │ │ └── __init__.py │ │ ├── task_mgmt_strategies │ │ │ ├── ITaskMgmtStrategy.py │ │ │ └── __init__.py │ │ ├── tensors │ │ │ ├── ITensor.py │ │ │ └── __init__.py │ │ ├── tokens │ │ │ ├── ITokenService.py │ │ │ └── __init__.py │ │ ├── tool_llms │ │ │ ├── IToolPredict.py │ │ │ └── __init__.py │ │ ├── toolkits │ │ │ ├── IToolkit.py │ │ │ └── __init__.py │ │ ├── tools │ │ │ ├── IParameter.py │ │ │ ├── ITool.py │ │ │ └── __init__.py │ │ ├── tracing │ │ │ ├── IChainTracer.py │ │ │ ├── ITraceContext.py │ │ │ ├── ITracer.py │ │ │ └── __init__.py │ │ ├── transports │ │ │ ├── ITransport.py │ │ │ ├── __init__.py │ │ │ ├── capabilities.py │ │ │ ├── enums.py │ │ │ ├── i_anycast.py │ │ │ ├── i_appserver.py │ │ │ ├── i_broadcast.py │ │ │ ├── i_http_client.py │ │ │ ├── i_multicast.py │ │ │ ├── i_multiplex.py │ │ │ ├── i_peer.py │ │ │ ├── i_runnable.py │ │ │ └── i_unicast.py │ │ ├── tts │ │ │ ├── IPredict.py │ │ │ └── __init__.py │ │ ├── utils │ │ │ ├── ITransactional.py │ │ │ └── __init__.py │ │ ├── vector_stores │ │ │ ├── ICloudVectorStore.py │ │ │ ├── IPersistentVectorStore.py │ │ │ ├── ISimilarity.py │ │ │ ├── IVectorNorm.py │ │ │ ├── IVectorStore.py │ │ │ ├── IVectorStoreRetrieve.py │ │ │ ├── IVectorStoreSaveLoad.py │ │ │ └── __init__.py │ │ ├── vectors │ │ │ ├── IVector.py │ │ │ ├── IVectorMeta.py │ │ │ ├── IVectorProduct.py │ │ │ ├── IVectorTransform.py │ │ │ └── __init__.py │ │ ├── vlms │ │ │ ├── IPredictVision.py │ │ │ └── __init__.py │ │ └── xmp │ │ │ ├── IEmbedXMP.py │ │ │ └── __init__.py │ └── tests │ │ ├── functional │ │ └── certs │ │ │ └── test_icertservice_functional.py │ │ ├── perf │ │ └── certs │ │ │ └── test_icertservice_perf.py │ │ ├── unit │ │ ├── certs │ │ │ ├── test_icertservice_rfc2986.py │ │ │ └── test_icertservice_rfc5280.py │ │ ├── iagent_unit_test.py │ │ ├── import_core_test.py │ │ ├── iparser_unit_test.py │ │ ├── ipredict_unit_test.py │ │ ├── ipublish_unit_test.py │ │ ├── ivectorstore_unit_test.py │ │ ├── test_git_filter.py │ │ ├── test_token_interface.py │ │ └── transports │ │ │ └── test_transports_exports.py │ │ └── xmp │ │ └── test_xmp_interface.py ├── deprecated │ ├── swarmauri_documentstore_redis │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_documentstore_redis │ │ │ ├── RedisDocumentStore.py │ │ │ └── __init__.py │ ├── swarmauri_embedding_tfidf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_embedding_tfidf │ │ │ ├── TfidfEmbedding.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── TfidfEmbedding_unit_test.py │ └── swarmauri_vectorstore_tfidf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_tfidf │ │ ├── TfidfVectorStore.py │ │ └── __init__.py │ │ └── tests │ │ └── unit │ │ └── TfidfVectorStore_unit_test.py ├── experimental │ ├── 77 │ │ ├── 77 │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── 6w │ │ ├── 6w │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── 6x │ │ ├── 6x │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── 6y │ │ ├── 6y │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── 6z │ │ ├── 6z │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── 9x │ │ ├── 9x │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ └── pyproject.toml │ ├── CanonHttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── http_client │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── h2 │ │ │ │ ├── __init__.py │ │ │ │ ├── flow_control.py │ │ │ │ ├── frames.py │ │ │ │ ├── hpack.py │ │ │ │ └── multiplex.py │ │ │ ├── http_client.py │ │ │ └── utils.py │ │ ├── pyproject.toml │ │ └── tests │ │ │ └── test_http_client.py │ ├── FastTokenizer │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── src │ │ │ ├── fasttokenizer │ │ │ │ ├── __init__.py │ │ │ │ └── fasttokenizer.cpython-311-darwin.so │ │ │ ├── lib.rs │ │ │ ├── normalizer.rs │ │ │ ├── regex_tokenizer.rs │ │ │ ├── tokenizer_io.rs │ │ │ └── whitespace_tokenizer.rs │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── test_normalizer.py │ │ │ ├── test_regex_tokenizer.py │ │ │ ├── test_tokenizer_io.py │ │ │ └── test_whitespace_tokenizer.py │ ├── RapidSimilarity │ │ ├── DistanceMetrics │ │ │ ├── DistanceMetrics │ │ │ │ ├── __init__.py │ │ │ │ ├── cosine.cpp │ │ │ │ ├── euclidean.cpp │ │ │ │ └── meson.build │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── meson.build │ │ │ ├── pyproject.toml │ │ │ └── tests │ │ │ │ ├── i9n │ │ │ │ └── test_i9n__init__.py │ │ │ │ └── unit │ │ │ │ ├── test_cosine.py │ │ │ │ └── test_euclidean.py │ │ ├── IndexBuilder │ │ │ ├── IndexBuilder │ │ │ │ ├── __init__.py │ │ │ │ ├── hash_index.cpp │ │ │ │ ├── meson.build │ │ │ │ └── tree_index.cpp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── meson.build │ │ │ ├── pyproject.toml │ │ │ └── tests │ │ │ │ ├── i9n │ │ │ │ └── test_i9n__init__.py │ │ │ │ └── unit │ │ │ │ ├── test_hash_index.py │ │ │ │ └── test_tree_index.py │ │ └── QueryEngine │ │ │ ├── LICENSE │ │ │ ├── QueryEngine │ │ │ ├── __init__.py │ │ │ ├── approx_query.cpp │ │ │ ├── exact_query.cpp │ │ │ └── meson.build │ │ │ ├── README.md │ │ │ ├── meson.build │ │ │ ├── pyproject.toml │ │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── test_approx_query.py │ │ │ └── test_exact_query.py │ ├── catoml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── catoml │ │ │ └── __init__.py │ │ ├── pyproject.toml │ │ └── tests │ │ │ └── unit │ │ │ └── catoml_init_test.py │ ├── cayaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cayaml │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── ast_nodes.py │ │ │ ├── parser.py │ │ │ ├── plain_conversion.py │ │ │ └── unparser.py │ │ ├── pyproject.toml │ │ └── tests │ │ │ └── unit │ │ │ ├── test_ast_cayaml_api.py │ │ │ ├── test_loads_all_data_types.py │ │ │ ├── test_loads_anchor_alias_typehint.py │ │ │ ├── test_loads_anchors_and_merging.py │ │ │ ├── test_loads_directives.py │ │ │ ├── test_loads_document_markers.py │ │ │ ├── test_loads_literal_and_folded_blocks.py │ │ │ ├── test_loads_merge_operator.py │ │ │ ├── test_loads_multiline_strings.py │ │ │ ├── test_loads_unicode_support.py │ │ │ ├── test_plain_cayaml_api.py │ │ │ ├── test_rt_dumps_literal_and_folded_blocks.py │ │ │ ├── test_rt_loads_all_data_types.py │ │ │ ├── test_rt_loads_anchor_alias_typehint.py │ │ │ ├── test_rt_loads_anchors_and_merging.py │ │ │ ├── test_rt_loads_directives.py │ │ │ ├── test_rt_loads_document_markers.py │ │ │ ├── test_rt_loads_inline_comment_preservation.py │ │ │ ├── test_rt_loads_literal_and_folded_blocks.py │ │ │ ├── test_rt_loads_merge_operator.py │ │ │ ├── test_rt_loads_multiline_strings.py │ │ │ └── test_rt_loads_unicode_support.py │ ├── g9 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── g9 │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── idp_clients │ │ ├── README.md │ │ ├── examples │ │ │ ├── example_aws_workforce_login.py │ │ │ └── example_google_login.py │ │ ├── idp_clients │ │ │ ├── __init__.py │ │ │ ├── apple │ │ │ │ ├── __init__.py │ │ │ │ ├── apple_client_secret.py │ │ │ │ ├── apple_oauth20_app_client.py │ │ │ │ ├── apple_oauth20_user_login.py │ │ │ │ ├── apple_oauth21_app_client.py │ │ │ │ ├── apple_oauth21_user_login.py │ │ │ │ ├── apple_oidc10_app_client.py │ │ │ │ └── apple_oidc10_user_login.py │ │ │ ├── aws_workforce │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_workforce_identity_resolver.py │ │ │ │ ├── aws_workforce_oauth20_user_login.py │ │ │ │ ├── aws_workforce_oauth21_user_login.py │ │ │ │ └── aws_workforce_oidc10_user_login.py │ │ │ ├── azure_ad │ │ │ │ ├── __init__.py │ │ │ │ ├── azure_ad_oauth20_user_login.py │ │ │ │ ├── azure_ad_oauth21_user_login.py │ │ │ │ └── azure_ad_oidc10_user_login.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── oauth20_app_client.py │ │ │ │ ├── oauth21_app_client.py │ │ │ │ ├── oidc10_app_client.py │ │ │ │ ├── utils_http.py │ │ │ │ └── utils_sec.py │ │ │ ├── cognito │ │ │ │ ├── __init__.py │ │ │ │ ├── cognito_oauth20_app_client.py │ │ │ │ ├── cognito_oauth20_user_login.py │ │ │ │ ├── cognito_oauth21_app_client.py │ │ │ │ ├── cognito_oauth21_user_login.py │ │ │ │ ├── cognito_oidc10_app_client.py │ │ │ │ └── cognito_oidc10_user_login.py │ │ │ ├── facebook │ │ │ │ ├── __init__.py │ │ │ │ ├── facebook_oauth20_app_client.py │ │ │ │ ├── facebook_oauth20_user_login.py │ │ │ │ ├── facebook_oauth21_app_client.py │ │ │ │ ├── facebook_oauth21_user_login.py │ │ │ │ ├── facebook_oidc10_app_client.py │ │ │ │ └── facebook_oidc10_user_login.py │ │ │ ├── gitea │ │ │ │ ├── __init__.py │ │ │ │ ├── gitea_oauth20_app_client.py │ │ │ │ ├── gitea_oauth20_user_login.py │ │ │ │ ├── gitea_oauth21_app_client.py │ │ │ │ ├── gitea_oauth21_user_login.py │ │ │ │ ├── gitea_oidc10_app_client.py │ │ │ │ └── gitea_oidc10_user_login.py │ │ │ ├── github │ │ │ │ ├── __init__.py │ │ │ │ ├── github_app_client.py │ │ │ │ ├── github_app_oauth_user_login.py │ │ │ │ └── github_oauth_user_login.py │ │ │ ├── gitlab │ │ │ │ ├── __init__.py │ │ │ │ ├── gitlab_oauth20_app_client.py │ │ │ │ ├── gitlab_oauth20_user_login.py │ │ │ │ ├── gitlab_oauth21_app_client.py │ │ │ │ ├── gitlab_oauth21_user_login.py │ │ │ │ ├── gitlab_oidc10_app_client.py │ │ │ │ └── gitlab_oidc10_user_login.py │ │ │ ├── google │ │ │ │ ├── __init__.py │ │ │ │ ├── google_oauth20_user_login.py │ │ │ │ ├── google_oauth21_user_login.py │ │ │ │ └── google_oidc10_user_login.py │ │ │ ├── keycloak │ │ │ │ ├── __init__.py │ │ │ │ ├── keycloak_oauth20_app_client.py │ │ │ │ ├── keycloak_oauth20_user_login.py │ │ │ │ ├── keycloak_oauth21_app_client.py │ │ │ │ ├── keycloak_oauth21_user_login.py │ │ │ │ ├── keycloak_oidc10_app_client.py │ │ │ │ └── keycloak_oidc10_user_login.py │ │ │ ├── okta │ │ │ │ ├── __init__.py │ │ │ │ ├── okta_oauth20_app_client.py │ │ │ │ ├── okta_oauth20_user_login.py │ │ │ │ ├── okta_oauth21_app_client.py │ │ │ │ ├── okta_oauth21_user_login.py │ │ │ │ ├── okta_oidc10_app_client.py │ │ │ │ └── okta_oidc10_user_login.py │ │ │ └── salesforce │ │ │ │ ├── __init__.py │ │ │ │ ├── salesforce_oauth20_app_client.py │ │ │ │ ├── salesforce_oauth20_user_login.py │ │ │ │ ├── salesforce_oauth21_app_client.py │ │ │ │ ├── salesforce_oauth21_user_login.py │ │ │ │ ├── salesforce_oidc10_app_client.py │ │ │ │ └── salesforce_oidc10_user_login.py │ │ └── pyproject.toml │ ├── jaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── MEP-0000 [A New Markup Language).md │ │ │ ├── MEP-0001 [Keywords, Operators, Patterns].md │ │ │ ├── MEP-0002 [Precedence].md │ │ │ ├── MEP-0003 [Supported Data Types].md │ │ │ ├── MEP-0004 [Type Inference].md │ │ │ ├── MEP-0005 [Namespaces].md │ │ │ ├── MEP-0006 [Whitespace].md │ │ │ ├── MEP-0007 [Multilines].md │ │ │ ├── MEP-0008 [Comments].md │ │ │ ├── MEP-0009 [Type Annotations].md │ │ │ ├── MEP-0010 [Hyphenated Key Names].md │ │ │ ├── MEP-0011 [Scoped Variables, Comprehensions, and Expressions].md │ │ │ ├── MEP-0011b [Three Phases Eval].md │ │ │ ├── MEP-0011c [Resolution Rules].md │ │ │ ├── MEP-0012 [Scoped Variables].md │ │ │ ├── MEP-0015 [Merge Operator].md │ │ │ ├── MEP-0020 F-String Interpolation.md │ │ │ ├── MEP-0021 [List & Dict Comprehensions].md │ │ │ ├── MEP-0022 [Expressions].md │ │ │ ├── MEP-0023 [Load-Time Expressions].md │ │ │ ├── MEP-0024 [Render-Time Expressions].md │ │ │ ├── MEP-0025 [Expression Folding].md │ │ │ ├── MEP-0028 [Conditional Table Sections].md │ │ │ ├── MEP-0030[File Referencing and Embedding].md │ │ │ ├── MEP-0032 [Git Referencing and Embedding].md │ │ │ ├── MEP-0033 [URL Referencing and Embedding].md │ │ │ ├── MEP-0034 [Modular File Inclusion].md │ │ │ ├── MEP-0042 [Typed Arrays].md │ │ │ ├── MEP-0049 [Type Validation Checks].md │ │ │ ├── MEP-0050 [Default Values and Fallbacks].md │ │ │ ├── MEP-0060 [Union Types].md │ │ │ ├── MEP-0061 [Datetime Data Types].md │ │ │ ├── MEP-0070 [Filter Pipeline Operations].md │ │ │ ├── MEP-0100 [Circular Dependencies].py │ │ │ ├── MEP-0200 [JSON].md │ │ │ ├── MEP-0201 [TOML].md │ │ │ └── MEP-0202 [YAML].md │ │ ├── jaml │ │ │ ├── __init__.py │ │ │ ├── _ast_nodes.py │ │ │ ├── _comprehension.py │ │ │ ├── _config.py │ │ │ ├── _eval.py │ │ │ ├── _expression.py │ │ │ ├── _fstring.py │ │ │ ├── _lark_parser.py │ │ │ ├── _make_static.py │ │ │ ├── _substitute.py │ │ │ ├── _transformer.bak.py │ │ │ ├── _transformer.py │ │ │ ├── _utils.py │ │ │ ├── api.py │ │ │ ├── ast_nodes.bak.py │ │ │ ├── grammar.lark │ │ │ └── unparser.bak.py │ │ ├── languages.yml │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── r8n │ │ │ ├── test_basic_references.py │ │ │ ├── test_circular_reference.py │ │ │ ├── test_comments.py │ │ │ ├── test_conditional_table_blocks.py │ │ │ ├── test_dynamic_static_reference.py │ │ │ ├── test_file_referencing.py │ │ │ ├── test_git_methods.py │ │ │ ├── test_git_named_parameters.py │ │ │ ├── test_loads_complex_data_types.py │ │ │ ├── test_loads_scalar_data_types.py │ │ │ ├── test_loads_type_annotations.py │ │ │ ├── test_namespace_support.py │ │ │ ├── test_plain_api.py │ │ │ ├── test_render_api.py │ │ │ ├── test_render_logical_evaluations.py │ │ │ ├── test_render_scoped_variables.py │ │ │ ├── test_round_trip_api.py │ │ │ ├── test_round_trip_multiline_array.py │ │ │ ├── test_rt_loads_complex_data_types.py │ │ │ ├── test_rt_loads_scalar_data_types.py │ │ │ ├── test_rt_loads_scoped_variables.py │ │ │ ├── test_rt_loads_type_annotations.py │ │ │ ├── test_rt_merge_operator.py │ │ │ └── test_scoped_logic_concats.py │ │ │ └── spec │ │ │ ├── (MEP-0001) kws_opers_patterns_test.py │ │ │ ├── (MEP-0002) precedence_test.py │ │ │ ├── (MEP-0003) data_types_test.py │ │ │ ├── (MEP-0004) type_inference_test.py │ │ │ ├── (MEP-0005) namespaces_test.py │ │ │ ├── (MEP-0006) whitespace_test.py │ │ │ ├── (MEP-0007) multiline_test.py │ │ │ ├── (MEP-0008) comments_test.py │ │ │ ├── (MEP-0009) type_annotations_test.py │ │ │ ├── (MEP-0010) hyphenated_keys_test.py │ │ │ ├── (MEP-0011) scopes_comprehensions_expressions_test.py │ │ │ ├── (MEP-0011a) scopes_comprehensions_expressions_test.py │ │ │ ├── (MEP-0011b) scopes_comprehensions_expressions_test.py │ │ │ ├── (MEP-0012a) scoped_variables_test.py │ │ │ ├── (MEP-0015) merge_operator_test.py │ │ │ ├── (MEP-0025) expression_folding_test .py │ │ │ ├── (MEP-0028) conditional_table_sections_test.py │ │ │ ├── (MEP-0028a) conditional_table_sections_test.py │ │ │ ├── (MEP-0028b) conditional_table_sections_test.py │ │ │ ├── (MEP-0028c) conditional_table_array_sections_test.py │ │ │ ├── (MEP-0028d) conditional_table_sections_test.py │ │ │ ├── (MEP-0028e) conditional_table_sections_test.py │ │ │ ├── (MEP-0028f) conditional_table_array_sections_test.py │ │ │ ├── (MEP-0028g) conditional_table_array_sections__alias_test.py │ │ │ └── (MEP-1000) odd_inputs_test.py │ ├── jz │ │ ├── LICENSE │ │ ├── README.md │ │ ├── jz │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── layout_engine │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── src │ │ │ └── layout_engine │ │ │ ├── __init__.py │ │ │ ├── authoring │ │ │ ├── ctx │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ └── runtime.py │ │ │ ├── declarative.py │ │ │ └── widgets.py │ │ │ ├── compile │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── default.py │ │ │ └── utils.py │ │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bindings.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── contrib │ │ │ └── presets.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── frame.py │ │ │ ├── size.py │ │ │ └── viewport.py │ │ │ ├── events │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ ├── validators.py │ │ │ └── ws.py │ │ │ ├── grid │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bindings.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── manifest │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ ├── spec.py │ │ │ └── utils.py │ │ │ ├── mfe │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bindings.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── site │ │ │ ├── __init__.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── structure │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bindings.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── targets │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── media │ │ │ │ ├── __init__.py │ │ │ │ ├── code.py │ │ │ │ ├── html.py │ │ │ │ ├── pdf.py │ │ │ │ └── svg.py │ │ │ └── webgui │ │ │ │ ├── __init__.py │ │ │ │ ├── html.py │ │ │ │ ├── importmap.py │ │ │ │ ├── router.py │ │ │ │ └── ws_endpoints.py │ │ │ └── tiles │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bindings.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ ├── ptree_dag_extension_example │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ptree_dag │ │ │ ├── __truthy.py │ │ │ └── templates │ │ │ │ └── example_template_set │ │ │ │ ├── agent_default.j2 │ │ │ │ ├── agent_requirements.j2 │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ └── {{ PROJECT_ROOT }} │ │ │ │ ├── PROJECT_REQUIREMENTS.md.j2 │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ ├── LICENSE.j2 │ │ │ │ ├── README.md.j2 │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ ├── tests │ │ │ │ ├── i9n │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ ├── unit │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ └── xfail │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ ├── __init__.py.j2 │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ └── pyproject.toml │ ├── register_tool_instance │ │ └── register_tool_instance.py │ ├── s_f │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── s_f │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ ├── sfw │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── sfw │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ ├── snt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── snt │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ ├── sqlitevectorstore │ │ ├── SqliteVectorStore.py │ │ └── SqliteVectorStore_unit_test.py │ ├── swarmauri_asn1 │ │ └── swarmauri_asn1 │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── data │ │ │ │ └── question.der │ │ │ └── standalone_decode.py │ │ │ ├── pyproject.toml │ │ │ ├── specs │ │ │ └── Example.asn │ │ │ ├── swarmauri_asn1 │ │ │ ├── __init__.py │ │ │ ├── der_codec.py │ │ │ ├── grammar │ │ │ │ └── asn1.lark │ │ │ ├── ir.py │ │ │ ├── parser.py │ │ │ ├── tool.py │ │ │ └── transformer.py │ │ │ └── tests │ │ │ └── test_decoder.py │ ├── swarmauri_certs_pkcs11 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_pkcs11 │ │ │ ├── Pkcs11CertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_pkcs11_certservice_basic.py │ │ │ ├── test_pkcs11_certservice_functional.py │ │ │ ├── test_pkcs11_certservice_perf.py │ │ │ ├── test_rfc2986_pkcs10.py │ │ │ └── test_rfc5280_x509.py │ ├── swarmauri_crypto_sodium │ │ ├── LICENSE │ │ ├── README.md │ │ ├── meson.build │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── sodium_loader.c │ │ ├── subprojects │ │ │ └── libsodium.wrap │ │ ├── swarmauri_crypto_sodium │ │ │ ├── SodiumCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_SodiumCrypto.py │ ├── swarmauri_experimental │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_experimental │ │ │ ├── RemoteUniversalBase.py │ │ │ ├── __init__.py │ │ │ ├── agents │ │ │ │ └── IterativeMemoryAgent.py │ │ │ ├── apis │ │ │ │ ├── CeleryAgentCommands.py │ │ │ │ └── README.md │ │ │ ├── chains │ │ │ │ ├── IChainFormatter.py │ │ │ │ ├── IChainNotification.py │ │ │ │ ├── IChainPersistence.py │ │ │ │ ├── IChainScheduler.py │ │ │ │ ├── TypeAgnosticCallableChain.py │ │ │ │ └── __init__.py │ │ │ ├── conversations │ │ │ │ ├── ConsensusBuildingConversation.md │ │ │ │ ├── ConsensusBuildingConversation.py │ │ │ │ ├── SemanticConversation.py │ │ │ │ ├── SharedConversation.py │ │ │ │ └── __init__.py │ │ │ ├── distances │ │ │ │ ├── SSASimilarity.py │ │ │ │ ├── SSIVSimilarity.py │ │ │ │ └── __init__.py │ │ │ ├── docs │ │ │ │ └── replay.md │ │ │ ├── document_stores │ │ │ │ ├── TriplesDocumentStore.py │ │ │ │ ├── Word2VecDocumentStore.py │ │ │ │ └── __init__.py │ │ │ ├── embeddings │ │ │ │ ├── SpatialDocEmbedding.py │ │ │ │ └── __init__.py │ │ │ ├── indexes │ │ │ │ ├── IIndex.py │ │ │ │ ├── cpu_vectorization_detection.cpp │ │ │ │ ├── cpu_vectorization_detection.exe │ │ │ │ ├── test.cpp │ │ │ │ └── test.exe │ │ │ ├── llms │ │ │ │ ├── OpenRouterModel.py │ │ │ │ ├── ShuttleAIImgGenModel.py │ │ │ │ ├── ShuttleAIModel.py │ │ │ │ ├── ShuttleAIToolModel.py │ │ │ │ ├── TogetherModel.py │ │ │ │ └── __init__.py │ │ │ ├── models │ │ │ │ ├── HierarchicalAttentionModel.py │ │ │ │ ├── SageMaker.py │ │ │ │ └── __init__.py │ │ │ ├── parsers │ │ │ │ ├── IParserv2.py │ │ │ │ ├── PDFToTextParser.py │ │ │ │ └── __init__.py │ │ │ ├── tools │ │ │ │ ├── CypherQueryTool.py │ │ │ │ ├── FileDownloaderTool.py │ │ │ │ ├── LinkedInArticleTool.py │ │ │ │ ├── OutlookSendMailTool.py │ │ │ │ ├── PaCMAPTool.py │ │ │ │ ├── SQLite3QueryTool.py │ │ │ │ ├── TwitterPostTool.py │ │ │ │ └── __init__.py │ │ │ ├── tracing │ │ │ │ ├── RemoteTrace.py │ │ │ │ └── __init__.py │ │ │ ├── utils │ │ │ │ ├── ISerializable.md │ │ │ │ ├── ISerializable.py │ │ │ │ ├── __init__.py │ │ │ │ ├── add_comment_to_file.py │ │ │ │ ├── get_last_frame.py │ │ │ │ ├── log_prompt_response.py │ │ │ │ └── save_schema.py │ │ │ ├── vcms │ │ │ │ ├── __init__.py │ │ │ │ ├── base │ │ │ │ │ ├── DeepFaceBase.py │ │ │ │ │ ├── VCMBase.py │ │ │ │ │ └── __init__.py │ │ │ │ └── concrete │ │ │ │ │ ├── DeepFaceDistance.py │ │ │ │ │ ├── DeepFaceEmbedder.py │ │ │ │ │ ├── DeepFaceVCM.py │ │ │ │ │ ├── DeepFaceVectorStore.py │ │ │ │ │ └── __init__.py │ │ │ ├── vector_stores │ │ │ │ ├── ScannVectorStore.py │ │ │ │ ├── SpatialDocVectorStore.py │ │ │ │ ├── TriplesDocumentStore.py │ │ │ │ ├── Word2VecDocumentStore.py │ │ │ │ ├── __init__.py │ │ │ │ └── core │ │ │ │ │ ├── IAngleBetweenVectors.py │ │ │ │ │ ├── IDecompose.py │ │ │ │ │ ├── IDivergence.py │ │ │ │ │ ├── IGradient.py │ │ │ │ │ ├── IOrthogonalProject.py │ │ │ │ │ ├── IProject.py │ │ │ │ │ ├── IReflect.py │ │ │ │ │ ├── ISimiliarityQuery.py │ │ │ │ │ ├── IVectorArithmetic.py │ │ │ │ │ ├── IVectorBasisCheck.py │ │ │ │ │ ├── IVectorLinearCombination.py │ │ │ │ │ ├── IVectorRotate.py │ │ │ │ │ ├── IVectorSpan.py │ │ │ │ │ └── __init__.py │ │ │ └── vectors │ │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── expected_to_fail │ │ │ ├── OpenRouter_xfail_test.py │ │ │ ├── ShuttleAIImgGenModel_xfail_test.py │ │ │ ├── ShuttleAIModel_xfail_test.py │ │ │ └── ShuttleAIToolModel_xfail_test.py │ │ │ ├── integration │ │ │ ├── llms │ │ │ │ └── OpenRouterModel_i9n_test.py │ │ │ └── vector_stores │ │ │ │ └── SpatialDocEmbedding_i9n_test.py │ │ │ └── unit │ │ │ ├── embeddings │ │ │ └── SpatialDocEmbedding_unit_test.py │ │ │ ├── llms │ │ │ ├── OpenRouterModel_unit_test.py │ │ │ ├── ShuttleAIImgGenModel_unit_test.py │ │ │ ├── ShuttleAIModel_unit_test.py │ │ │ └── ShuttleAIToolModel_unit_test.py │ │ │ ├── tools │ │ │ └── PaCAMPTool_test.py │ │ │ └── vcms │ │ │ ├── DeepFaceDistance_test.py │ │ │ ├── DeepFaceEmbedder_test.py │ │ │ ├── DeepFaceVCM_test.py │ │ │ └── DeepFaceVectorStore_test.py │ ├── swarmauri_keyprovider_pkcs11 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_pkcs11 │ │ │ ├── Pkcs11KeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_pkcs11_functional.py │ │ │ ├── test_pkcs11_rfc7517.py │ │ │ ├── test_pkcs11_rfc7518.py │ │ │ └── unit │ │ │ └── test_pkcs11_provider_unit.py │ ├── swarmauri_tests_loc_tersity │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tests_loc_tersity │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_plugin.py │ ├── swarmauri_tests_pylicense │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tests_pylicense │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_plugin.py │ ├── swarmauri_tests_readme_examples │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tests_readme_examples │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_plugin.py │ ├── swarmauri_workflow_statedriven │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── Conditions, JoinStrategies, MergeStrategies.md │ │ │ ├── InputMode vs MergeStrategy.md │ │ │ ├── ptree_draft.md │ │ │ └── type-shapes.md │ │ ├── pyproject.toml │ │ ├── swarmauri_workflow_statedriven │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── conditions │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── composite_condition.py │ │ │ │ ├── function_condition.py │ │ │ │ ├── membership_condition.py │ │ │ │ ├── regex_condition.py │ │ │ │ ├── state_condition.py │ │ │ │ ├── string_condition.py │ │ │ │ └── time_condition.py │ │ │ ├── exceptions.py │ │ │ ├── graph.py │ │ │ ├── input_modes │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregate.py │ │ │ │ ├── base.py │ │ │ │ ├── first.py │ │ │ │ ├── identity.py │ │ │ │ ├── last.py │ │ │ │ └── split.py │ │ │ ├── join_strategies │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregator.py │ │ │ │ ├── all_join.py │ │ │ │ ├── base.py │ │ │ │ ├── conditional_join.py │ │ │ │ ├── first_join.py │ │ │ │ ├── n_of_m_join.py │ │ │ │ └── per_arrival_join.py │ │ │ ├── merge_strategies │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── concat_merge.py │ │ │ │ ├── custom_merge.py │ │ │ │ ├── dict_merge.py │ │ │ │ ├── flatten_merge.py │ │ │ │ ├── identity_merge.py │ │ │ │ └── list_merge.py │ │ │ ├── node.py │ │ │ ├── state_manager.py │ │ │ ├── transition.py │ │ │ └── validator.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_usage.py │ │ │ └── unit │ │ │ ├── conditions │ │ │ ├── test_base_condition.py │ │ │ ├── test_composite_condition.py │ │ │ ├── test_function_condition.py │ │ │ ├── test_membership_condition.py │ │ │ ├── test_regex_condition.py │ │ │ ├── test_state_condition.py │ │ │ ├── test_string_condition.py │ │ │ └── test_time_condition.py │ │ │ ├── input_modes │ │ │ ├── test_aggregate_input_mode.py │ │ │ ├── test_base_input_mode.py │ │ │ ├── test_first_input_mode.py │ │ │ ├── test_identity_input_mode.py │ │ │ ├── test_last_input_mode.py │ │ │ └── test_split_input_mode.py │ │ │ ├── join_strategies │ │ │ ├── test_aggregator.py │ │ │ ├── test_all_join.py │ │ │ ├── test_conditional_join.py │ │ │ ├── test_first_join.py │ │ │ ├── test_n_of_m_join.py │ │ │ └── test_per_arrival_join.py │ │ │ ├── merge_strategies │ │ │ ├── test_concat_merge.py │ │ │ ├── test_custom_merge.py │ │ │ ├── test_dict_merge.py │ │ │ ├── test_flatten_merge.py │ │ │ ├── test_identity_merge.py │ │ │ └── test_list_merge.py │ │ │ ├── test_base.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_graph.py │ │ │ ├── test_node.py │ │ │ ├── test_state_manager.py │ │ │ ├── test_transition.py │ │ │ └── test_validator.py │ ├── tigrbl_acme_ca │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── tigrbl_acme_ca │ │ │ ├── adapters │ │ │ ├── jws_to_ctx.py │ │ │ └── results_to_http.py │ │ │ ├── app │ │ │ ├── api_spec.py │ │ │ ├── app_spec.py │ │ │ └── table_spec.py │ │ │ ├── domain │ │ │ ├── errors.py │ │ │ └── models.py │ │ │ ├── engines │ │ │ └── acme_signing │ │ │ │ ├── __init__.py │ │ │ │ ├── engine.py │ │ │ │ └── session.py │ │ │ ├── key_mgmt │ │ │ ├── __init__.py │ │ │ ├── ca_key_loader.py │ │ │ └── providers.py │ │ │ ├── libs │ │ │ ├── __init__.py │ │ │ ├── sw_cert_service.py │ │ │ └── sw_kms.py │ │ │ ├── ops │ │ │ ├── acme │ │ │ │ ├── directory.py │ │ │ │ ├── finalize.py │ │ │ │ ├── get_authz.py │ │ │ │ ├── get_cert.py │ │ │ │ ├── key_change.py │ │ │ │ ├── new_account.py │ │ │ │ ├── new_nonce.py │ │ │ │ ├── new_order.py │ │ │ │ ├── post_challenge.py │ │ │ │ └── revoke.py │ │ │ └── guards │ │ │ │ ├── jws_envelope_guard.py │ │ │ │ └── ratelimit.py │ │ │ ├── schema │ │ │ ├── csr_finalize_extra.py │ │ │ └── directory_extra.py │ │ │ ├── services │ │ │ ├── audit │ │ │ │ ├── auditor.py │ │ │ │ └── redact.py │ │ │ ├── ca │ │ │ │ ├── chain_builder.py │ │ │ │ ├── csr_service.py │ │ │ │ ├── issuance_service.py │ │ │ │ └── policy.py │ │ │ ├── compliance │ │ │ │ ├── control_enforcers.py │ │ │ │ └── evidence_hooks.py │ │ │ ├── integration │ │ │ │ ├── cloud_dns │ │ │ │ │ ├── aws_route53.py │ │ │ │ │ ├── azure_dns.py │ │ │ │ │ └── gcp_dns.py │ │ │ │ └── webhooks │ │ │ │ │ └── ct_log_publisher.py │ │ │ ├── ra │ │ │ │ ├── account_service.py │ │ │ │ ├── nonce_service.py │ │ │ │ └── order_service.py │ │ │ ├── revocation │ │ │ │ ├── crl_publisher.py │ │ │ │ ├── ocsp_responder.py │ │ │ │ └── revoke_service.py │ │ │ └── va │ │ │ │ ├── challenge_service.py │ │ │ │ ├── dns01_validator.py │ │ │ │ └── http01_validator.py │ │ │ ├── tables │ │ │ ├── __init__.py │ │ │ ├── accounts.py │ │ │ ├── audit_events.py │ │ │ ├── authorizations.py │ │ │ ├── certificates.py │ │ │ ├── challenges.py │ │ │ ├── external_account_bindings.py │ │ │ ├── nonces.py │ │ │ ├── orders.py │ │ │ ├── revocations.py │ │ │ └── tos_agreements.py │ │ │ ├── telemetry │ │ │ ├── metrics.py │ │ │ └── tracing.py │ │ │ └── workers │ │ │ ├── __init__.py │ │ │ ├── queue.py │ │ │ ├── tasks_issuance.py │ │ │ ├── tasks_revocation.py │ │ │ └── tasks_validation.py │ ├── tigrbl_engine_bigquery │ │ └── tigrbl_engine_bigquery │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_bigquery │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_engine_clickhouse │ │ └── tigrbl_engine_clickhouse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_clickhouse │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_engine_dataframe │ │ └── tigrbl_engine_dataframe │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_dataframe │ │ │ ├── __init__.py │ │ │ ├── df_engine.py │ │ │ └── df_session.py │ ├── tigrbl_engine_duckdb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── src │ │ │ └── tigrbl_engine_duckdb │ │ │ ├── __init__.py │ │ │ ├── duck_builder.py │ │ │ ├── duck_session.py │ │ │ └── plugin.py │ ├── tigrbl_engine_pgsqli_wal │ │ └── tigrbl_engine_pgsqli_wal │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_pgsqli_wal │ │ │ ├── __init__.py │ │ │ ├── engines │ │ │ ├── postgres_wal_engine.py │ │ │ └── sqlite_wal_engine.py │ │ │ └── sessions │ │ │ ├── postgres_wal_session.py │ │ │ └── sqlite_wal_session.py │ ├── tigrbl_engine_pyspark │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── src │ │ │ └── tigrbl_engine_pyspark │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_engine_redis │ │ └── tigrbl_engine_redis │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_redis │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_engine_rediscachethrough │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── src │ │ │ └── tigrbl_engine_rediscachethrough │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_engine_snowflake │ │ └── tigrbl_engine_snowflake │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── tigrbl_engine_snowflake │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ └── session.py │ ├── tigrbl_spiffe │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── _e2e_shared.py │ │ │ ├── e2e_uds_multi_client.py │ │ │ ├── e2e_uds_one_client.py │ │ │ ├── exchange_jwt_bearer.py │ │ │ ├── exchange_mtls.py │ │ │ ├── quickstart_agent.py │ │ │ ├── registrar_merge.py │ │ │ ├── server_side_bundle_sync.py │ │ │ ├── server_side_registrar_admin.py │ │ │ └── tls_client.py │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── tigrbl_spiffe │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters │ │ │ │ ├── __init__.py │ │ │ │ └── tigrbl_client_adapter.py │ │ │ │ ├── authz │ │ │ │ ├── __init__.py │ │ │ │ └── policy_bindings.py │ │ │ │ ├── config.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── identity │ │ │ │ ├── __init__.py │ │ │ │ ├── rotation_policy.py │ │ │ │ └── svid_validator.py │ │ │ │ ├── middleware │ │ │ │ ├── __init__.py │ │ │ │ ├── authn.py │ │ │ │ ├── identity.py │ │ │ │ └── tls.py │ │ │ │ ├── plugin.py │ │ │ │ ├── registry.py │ │ │ │ ├── supports.py │ │ │ │ ├── tables │ │ │ │ ├── __init__.py │ │ │ │ ├── bundle.py │ │ │ │ ├── registrar.py │ │ │ │ ├── svid.py │ │ │ │ └── workload.py │ │ │ │ ├── tls │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters.py │ │ │ │ └── context.py │ │ │ │ └── types.py │ │ └── tests │ │ │ ├── test_imports.py │ │ │ ├── test_supports.py │ │ │ └── test_tables_shape.py │ ├── wcag_pdf_pytest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── STYLE_GUIDE.md │ │ ├── pyproject.toml │ │ └── wcag_pdf_pytest │ │ │ ├── __init__.py │ │ │ ├── criteria │ │ │ ├── test_sc_1_1_1_non-text_content.py │ │ │ ├── test_sc_1_2_1_audio-only_and_video-only_prerecorded.py │ │ │ ├── test_sc_1_2_2_captions_prerecorded.py │ │ │ ├── test_sc_1_2_3_audio_description_or_media_alternative_prerecorded.py │ │ │ ├── test_sc_1_2_4_captions_live.py │ │ │ ├── test_sc_1_2_5_audio_description_prerecorded.py │ │ │ ├── test_sc_1_2_6_sign_language_prerecorded.py │ │ │ ├── test_sc_1_2_7_extended_audio_description_prereerecorded.py │ │ │ ├── test_sc_1_2_8_media_alternative_prerecorded.py │ │ │ ├── test_sc_1_2_9_audio-only_live.py │ │ │ ├── test_sc_1_3_1_info_and_relationships.py │ │ │ ├── test_sc_1_3_2_meaningful_sequence.py │ │ │ ├── test_sc_1_3_3_sensory_characteristics.py │ │ │ ├── test_sc_1_3_4_orientation.py │ │ │ ├── test_sc_1_4_10_reflow.py │ │ │ ├── test_sc_1_4_11_non-text_contrast.py │ │ │ ├── test_sc_1_4_12_text_spacing.py │ │ │ ├── test_sc_1_4_13_content_on_hover_or_focus.py │ │ │ ├── test_sc_1_4_1_use_of_color.py │ │ │ ├── test_sc_1_4_2_audio_control.py │ │ │ ├── test_sc_1_4_3_contrast_minimum.py │ │ │ ├── test_sc_1_4_4_resize_text.py │ │ │ ├── test_sc_1_4_5_images_of_text.py │ │ │ ├── test_sc_1_4_6_contrast_enhanced.py │ │ │ ├── test_sc_1_4_7_low_or_no_background_audio.py │ │ │ ├── test_sc_1_4_8_visual_presentation.py │ │ │ ├── test_sc_1_4_9_images_of_text_no_exception.py │ │ │ ├── test_sc_2_1_1_keyboard.py │ │ │ ├── test_sc_2_1_2_no_keyboard_trap.py │ │ │ ├── test_sc_2_1_3_keyboard_no_exception.py │ │ │ ├── test_sc_2_2_1_timing_adjustable.py │ │ │ ├── test_sc_2_2_2_pause_stop_hide.py │ │ │ ├── test_sc_2_2_3_no_timing.py │ │ │ ├── test_sc_2_2_4_interruptions.py │ │ │ ├── test_sc_2_2_5_re-authenticating.py │ │ │ ├── test_sc_2_2_6_timeouts.py │ │ │ ├── test_sc_2_3_1_three_flashes_or_below_threshold.py │ │ │ ├── test_sc_2_3_2_three_flashes.py │ │ │ ├── test_sc_2_3_3_animation_from_interactions.py │ │ │ ├── test_sc_2_4_10_section_headings.py │ │ │ ├── test_sc_2_4_1_bypass_blocks.py │ │ │ ├── test_sc_2_4_2_page_titled.py │ │ │ ├── test_sc_2_4_3_focus_order.py │ │ │ ├── test_sc_2_4_4_link_purpose_in_context.py │ │ │ ├── test_sc_2_4_5_multiple_ways.py │ │ │ ├── test_sc_2_4_6_headings_and_labels.py │ │ │ ├── test_sc_2_4_7_focus_visible.py │ │ │ ├── test_sc_2_4_8_location.py │ │ │ ├── test_sc_2_4_9_link_purpose_link_only.py │ │ │ ├── test_sc_2_5_2_pointer_cancellation.py │ │ │ ├── test_sc_2_5_3_label_in_name.py │ │ │ ├── test_sc_2_5_5_target_size.py │ │ │ ├── test_sc_3_1_1_language_of_page.py │ │ │ ├── test_sc_3_1_2_language_of_parts.py │ │ │ ├── test_sc_3_1_3_unusual_words.py │ │ │ ├── test_sc_3_1_4_abbreviations.py │ │ │ ├── test_sc_3_1_5_reading_level.py │ │ │ ├── test_sc_3_1_6_pronunciation.py │ │ │ ├── test_sc_3_2_1_on_focus.py │ │ │ ├── test_sc_3_2_2_on_input.py │ │ │ ├── test_sc_3_2_3_consistent_navigation.py │ │ │ ├── test_sc_3_2_4_consistent_identification.py │ │ │ ├── test_sc_3_3_1_error_identification.py │ │ │ ├── test_sc_3_3_2_labels_or_instructions.py │ │ │ ├── test_sc_3_3_3_error_suggestion.py │ │ │ ├── test_sc_3_3_4_error_prevention_legal_financial_data.py │ │ │ ├── test_sc_3_3_5_help.py │ │ │ ├── test_sc_3_3_6_error_prevention_all.py │ │ │ ├── test_sc_4_1_2_name_role_value.py │ │ │ └── test_sc_4_1_3_status_messages.py │ │ │ ├── pdf_inspector.py │ │ │ └── plugin.py │ ├── ye │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── ye │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ ├── ymls │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── ymls │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ └── zr0 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── zr0 │ │ ├── ExampleAgent.py │ │ └── __init__.py ├── plugins │ ├── EmbedXMP │ │ ├── EmbedXMP │ │ │ └── __init__.py │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── test_embed_xmp.py │ │ │ └── test_plugin_reexports.py │ ├── embedded_signer │ │ ├── EmbeddedSigner │ │ │ ├── __init__.py │ │ │ ├── _embed_signer.py │ │ │ └── cli.py │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── test_cli.py │ │ │ ├── test_embed_signer_embedding.py │ │ │ └── test_embed_signer_signing.py │ ├── example_plugin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swm_example_plugin │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_version.py │ └── media_signer │ │ ├── LICENSE │ │ ├── MediaSigner │ │ ├── __init__.py │ │ ├── _signer.py │ │ └── cli.py │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── tests │ │ ├── __init__.py │ │ ├── _helpers.py │ │ ├── test_media_signer_cli.py │ │ ├── test_media_signer_cms.py │ │ ├── test_media_signer_jws.py │ │ ├── test_media_signer_openpgp.py │ │ ├── test_media_signer_pdf.py │ │ └── test_media_signer_xmld.py ├── pyproject.toml ├── standards │ ├── peagen │ │ ├── AGENTS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── byok_private_repo.md │ │ │ ├── contributing.md │ │ │ ├── eda_protocol.md │ │ │ ├── examples │ │ │ │ ├── VectorSpaceFoundation.yaml │ │ │ │ ├── base_example_project.yaml │ │ │ │ ├── core_example_project.yaml │ │ │ │ ├── cpp_python_example.yaml │ │ │ │ ├── evaluator_projects_payload.yaml │ │ │ │ ├── example_projects_payload.yaml │ │ │ │ ├── python_projects_payload.yaml │ │ │ │ ├── rust_python_pkg.yaml │ │ │ │ ├── searchword_projects_payload.yaml │ │ │ │ └── standard_example_project.yaml │ │ │ ├── git_vcs.md │ │ │ ├── login_keys_secrets_testing.md │ │ │ ├── secret_workflow_test.md │ │ │ ├── specification │ │ │ │ ├── PTGEN_SPECIFICATION_0.0.1.md │ │ │ │ ├── PTGEN_SPECIFICATION_0.0.2.md │ │ │ │ ├── PTGEN_SPECIFICATION_0.0.3.md │ │ │ │ └── PTGEN_SPECIFICATION_0.0.4.md │ │ │ ├── storage_adapters_and_publishers.md │ │ │ ├── task_git_ops.md │ │ │ └── v2_transport │ │ │ │ └── transport_diagram.md │ │ ├── peagen │ │ │ ├── __init__.py │ │ │ ├── _utils │ │ │ │ ├── __init__.py │ │ │ │ ├── _context.py │ │ │ │ ├── _graph.py │ │ │ │ ├── _init.py │ │ │ │ ├── _jinja.py │ │ │ │ ├── _search_template_sets.py │ │ │ │ ├── _source_packages.py │ │ │ │ ├── _split_github.py │ │ │ │ ├── _template_sets.py │ │ │ │ ├── _validation.py │ │ │ │ ├── config_loader.py │ │ │ │ ├── git_filter.py │ │ │ │ ├── repo_utils.py │ │ │ │ └── slug_utils.py │ │ │ ├── alembic.ini │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── _banner.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analysis.py │ │ │ │ │ ├── db.py │ │ │ │ │ ├── deploykey.py │ │ │ │ │ ├── doe.py │ │ │ │ │ ├── eval.py │ │ │ │ │ ├── evolve.py │ │ │ │ │ ├── extras.py │ │ │ │ │ ├── fetch.py │ │ │ │ │ ├── init.py │ │ │ │ │ ├── mutate.py │ │ │ │ │ ├── process.py │ │ │ │ │ ├── publickey.py │ │ │ │ │ ├── secrets.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── sort.py │ │ │ │ │ ├── task.py │ │ │ │ │ ├── templates.py │ │ │ │ │ ├── tui.py │ │ │ │ │ └── validate.py │ │ │ │ └── task_helpers.py │ │ │ ├── common.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── _external.py │ │ │ │ ├── _llm.py │ │ │ │ ├── analysis_core.py │ │ │ │ ├── control_core.py │ │ │ │ ├── doe_core.py │ │ │ │ ├── eval_core.py │ │ │ │ ├── extras_core.py │ │ │ │ ├── fetch_core.py │ │ │ │ ├── git_repo_core.py │ │ │ │ ├── git_shadow_core.py │ │ │ │ ├── init_core.py │ │ │ │ ├── keys_core.py │ │ │ │ ├── migrate_core.py │ │ │ │ ├── mutate_core.py │ │ │ │ ├── patch_core.py │ │ │ │ ├── process_core.py │ │ │ │ ├── publickey_core.py │ │ │ │ ├── render_core.py │ │ │ │ ├── secrets_core.py │ │ │ │ ├── sort_core.py │ │ │ │ ├── task_core.py │ │ │ │ ├── templates_core.py │ │ │ │ └── validate_core.py │ │ │ ├── defaults │ │ │ │ └── __init__.py │ │ │ ├── errors.py │ │ │ ├── gateway │ │ │ │ ├── .peagen.toml │ │ │ │ ├── Dockerfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _publish.py │ │ │ │ ├── db.py │ │ │ │ ├── kms.py │ │ │ │ ├── runtime_cfg.py │ │ │ │ ├── schedule_helpers.py │ │ │ │ └── ws_server.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── analysis_handler.py │ │ │ │ ├── control_handler.py │ │ │ │ ├── doe_handler.py │ │ │ │ ├── doe_process_handler.py │ │ │ │ ├── eval_handler.py │ │ │ │ ├── evolve_handler.py │ │ │ │ ├── extras_handler.py │ │ │ │ ├── fanout.py │ │ │ │ ├── fetch_handler.py │ │ │ │ ├── get_task_handler.py │ │ │ │ ├── init_handler.py │ │ │ │ ├── keys_handler.py │ │ │ │ ├── migrate_handler.py │ │ │ │ ├── mutate_handler.py │ │ │ │ ├── process_handler.py │ │ │ │ ├── secrets_handler.py │ │ │ │ ├── sort_handler.py │ │ │ │ ├── templates_handler.py │ │ │ │ └── validate_handler.py │ │ │ ├── jsonschemas │ │ │ │ ├── __init__.py │ │ │ │ ├── doe_spec.schema.v1.1.json │ │ │ │ ├── doe_spec.schema.v1.json │ │ │ │ ├── doe_spec.schema.v2.json │ │ │ │ ├── eval_manifest.schema.v1.json │ │ │ │ ├── event.schema.v1.json │ │ │ │ ├── evolve_spec.schema.v1.json │ │ │ │ ├── evolve_spec.schema.v2.0.0.json │ │ │ │ ├── extras │ │ │ │ │ ├── component.schema.v1.json │ │ │ │ │ ├── cpp_python_pkg.schema.v1.json │ │ │ │ │ ├── no_requirements.schema.v1.json │ │ │ │ │ ├── python_api_gw.schema.v1.json │ │ │ │ │ ├── python_api_gw_service.schema.v1.json │ │ │ │ │ ├── python_orm.schema.v1.json │ │ │ │ │ ├── pythonpkg.schema.v1.json │ │ │ │ │ ├── react_atom.schema.v1.json │ │ │ │ │ ├── rust_python_pkg.schema.v1.json │ │ │ │ │ ├── svelte_atom.schema.v1.json │ │ │ │ │ ├── swarmauri_base.schema.v1.json │ │ │ │ │ ├── swarmauri_core.schema.v1.json │ │ │ │ │ ├── swarmauri_standard.schema.v1.json │ │ │ │ │ ├── swarmauri_standard_standalone.schema.v1.json │ │ │ │ │ ├── test3.schema.v1.json │ │ │ │ │ ├── test5.schema.v1.json │ │ │ │ │ └── vue_atom.schema.v1.json │ │ │ │ ├── llm_patch.schema.v1.json │ │ │ │ ├── manifest.schema.v3.1.json │ │ │ │ ├── manifest.schema.v3.json │ │ │ │ ├── peagen.toml.schema.v1.1.0.json │ │ │ │ ├── peagen.toml.schema.v1.json │ │ │ │ ├── projects_payload.schema.v1.json │ │ │ │ └── ptree.schema.v1.json │ │ │ ├── migrations │ │ │ │ ├── env.py │ │ │ │ ├── script.py.mako │ │ │ │ └── versions │ │ │ │ │ └── 69f4d7c302fa_create_public_tenant.py │ │ │ ├── orm │ │ │ │ ├── __init__.py │ │ │ │ ├── abuse_record.py │ │ │ │ ├── analysis_result.py │ │ │ │ ├── doe_spec.py │ │ │ │ ├── domain_models.py │ │ │ │ ├── eval_result.py │ │ │ │ ├── evolve_spec.py │ │ │ │ ├── keys.py │ │ │ │ ├── mixins.py │ │ │ │ ├── orgs.py │ │ │ │ ├── peagen_toml_spec.py │ │ │ │ ├── pools.py │ │ │ │ ├── project_payload.py │ │ │ │ ├── raw_blobs.py │ │ │ │ ├── repositories.py │ │ │ │ ├── secrets.py │ │ │ │ ├── tasks.py │ │ │ │ ├── tenants.py │ │ │ │ ├── user_repositories.py │ │ │ │ ├── users.py │ │ │ │ ├── workers.py │ │ │ │ └── works.py │ │ │ ├── plugin_manager.py │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── cryptos │ │ │ │ │ └── __init__.py │ │ │ │ ├── evaluator_pools │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── default.py │ │ │ │ ├── evaluators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── benchmark.py │ │ │ │ │ ├── performance_evaluator.py │ │ │ │ │ ├── psutil_io.py │ │ │ │ │ ├── pytest_evaluator.py │ │ │ │ │ ├── pytest_memray_evaluator.py │ │ │ │ │ ├── pytest_monitor.py │ │ │ │ │ ├── pytest_perf_regression.py │ │ │ │ │ ├── pytest_profiling.py │ │ │ │ │ ├── ruff_evaluator.py │ │ │ │ │ └── simple_time.py │ │ │ │ ├── git_filters │ │ │ │ │ └── __init__.py │ │ │ │ ├── mutators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── default_mutator.py │ │ │ │ │ ├── echo_mutator.py │ │ │ │ │ ├── llm_prog_rewrite.py │ │ │ │ │ └── llm_prompt.py │ │ │ │ ├── programs │ │ │ │ │ └── __init__.py │ │ │ │ ├── publishers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── rabbitmq_publisher.py │ │ │ │ │ ├── redis_publisher.py │ │ │ │ │ └── webhook_publisher.py │ │ │ │ ├── queues │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── in_memory_queue.py │ │ │ │ │ └── redis_queue.py │ │ │ │ ├── selectors │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bootstrap_selector.py │ │ │ │ │ ├── input_selector.py │ │ │ │ │ ├── result_backend_selector.py │ │ │ │ │ └── selector_base.py │ │ │ │ ├── storage_adapters │ │ │ │ │ └── __init__.py │ │ │ │ └── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constants.py │ │ │ │ │ └── git_vcs.py │ │ │ ├── template_scaffold │ │ │ │ ├── ci │ │ │ │ │ ├── ci-github │ │ │ │ │ │ └── .github │ │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ └── peagen.yml.j2 │ │ │ │ │ └── ci-gitlab │ │ │ │ │ │ └── .gitlab-ci.yml.j2 │ │ │ │ ├── doe_spec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doe_spec.yml.j2 │ │ │ │ │ └── spec.yaml.j2 │ │ │ │ ├── project │ │ │ │ │ ├── .peagen.toml.j2 │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ └── project.yaml.j2 │ │ │ │ └── template_set │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ ├── template_payload.yaml │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ ├── greeting.txt.j2 │ │ │ │ │ └── hello.txt.j2 │ │ │ ├── template_sets │ │ │ │ ├── component │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── llm-payload.json │ │ │ │ │ ├── parsers-projects_payloads.json │ │ │ │ │ ├── payload.json │ │ │ │ │ ├── payload.json.j2 │ │ │ │ │ ├── projects_payloads.json │ │ │ │ │ ├── tool-payload.json │ │ │ │ │ └── {{ PROJECT_ROOT }} │ │ │ │ │ │ └── {{ PACKAGE_ROOT }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ └── unit │ │ │ │ │ │ │ ├── test___init__.py.j2 │ │ │ │ │ │ │ └── test_{{ MODULE_NAME }}.py.j2 │ │ │ │ │ │ └── {{ PACKAGE_ROOT }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MODULE_NAME }}.py.j2 │ │ │ │ ├── cpp_python_pkg │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── meson.build.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ ├── meson.build.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.cpp.j2 │ │ │ │ ├── no_requirements │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJECT_ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── python_api_gw │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ ├── config.py.j2 │ │ │ │ │ │ ├── main.py.j2 │ │ │ │ │ │ └── routes.py.j2 │ │ │ │ ├── python_api_gw_service │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ │ │ ├── main.py.j2 │ │ │ │ │ │ └── routes.py.j2 │ │ │ │ ├── python_crouton_client_backend │ │ │ │ │ ├── README.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ └── ptree.yaml.j2 │ │ │ │ ├── python_crouton_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ ├── docker-compose.yaml.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── Dockerfile.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── main.py.j2 │ │ │ │ │ │ │ └── utils.py.j2 │ │ │ │ │ │ └── main.py.j2 │ │ │ │ ├── python_orm │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── example.payload.yaml │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── pythonpkg │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── react_atom │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ └── src │ │ │ │ │ │ └── components │ │ │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ │ │ ├── index.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.a11y.spec.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.css.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.d.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.spec.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.stories.mdx.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.stories.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.tsx.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.visual.spec.ts.j2 │ │ │ │ ├── rust_python_pkg │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── Cargo.toml.j2 │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── lib.rs.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.rs.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ │ └── __init__.py.j2 │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ ├── svelte_atom │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ └── src │ │ │ │ │ │ └── components │ │ │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ │ │ ├── index.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.a11y.spec.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.css.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.d.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.spec.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.stories.mdx.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.stories.ts.j2 │ │ │ │ │ │ ├── {{ MOD.NAME }}.svelte.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.visual.spec.ts.j2 │ │ │ │ ├── swarmauri_base │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── base │ │ │ │ │ │ └── swarmauri_base │ │ │ │ │ │ └── {{ MOD.EXTRAS.RESOURCE_KIND }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── swarmauri_community │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── community │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── swarmauri_core │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── core │ │ │ │ │ │ └── swarmauri_core │ │ │ │ │ │ └── {{ MOD.EXTRAS.RESOURCE_KIND }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── swarmauri_standard │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── swarmauri_standard │ │ │ │ │ │ ├── swarmauri_standard │ │ │ │ │ │ └── {{ MOD.EXTRAS.RESOURCE_KIND }} │ │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ └── {{ MOD.EXTRA.RESOURCE_KIND }} │ │ │ │ │ │ │ └── {{ MOD.NAME }}_i9n_test.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ └── {{ MOD.EXTRAS.RESOURCE_KIND }} │ │ │ │ │ │ │ └── {{ MOD.NAME }}_unit_test.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ └── {{ MOD.EXTRA.RESOURCE_KIND }} │ │ │ │ │ │ └── {{ MOD.NAME }}_xfail_test.py.j2 │ │ │ │ ├── swarmauri_standard_standalone │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJ.ROOT }} │ │ │ │ │ │ └── standards │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── test3 │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── agent_requirements.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJECT_ROOT }} │ │ │ │ │ │ ├── PROJECT_REQUIREMENTS.md.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ ├── test5 │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── agent_requirements.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PROJECT_ROOT }} │ │ │ │ │ │ ├── PROJECT_REQUIREMENTS.md.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── LICENSE.j2 │ │ │ │ │ │ ├── README.md.j2 │ │ │ │ │ │ ├── pyproject.toml.j2 │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── i9n │ │ │ │ │ │ │ ├── test_i9n__init__.py.j2 │ │ │ │ │ │ │ └── test_i9n_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ └── test_{{ MOD.NAME }}.py.j2 │ │ │ │ │ │ └── xfail │ │ │ │ │ │ │ └── test_xfail_{{ PKG.NAME }}.py.j2 │ │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ └── {{ MOD.NAME }}.py.j2 │ │ │ │ └── vue_atom │ │ │ │ │ ├── EXTRAS.md │ │ │ │ │ ├── agent_default.j2 │ │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ │ └── src │ │ │ │ │ └── components │ │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ │ ├── index.ts.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.a11y.spec.ts.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.css.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.d.ts.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.spec.ts.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.stories.mdx.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.stories.ts.j2 │ │ │ │ │ ├── {{ MOD.NAME }}.visual.spec.ts.j2 │ │ │ │ │ └── {{ MOD.NAME }}.vue.j2 │ │ │ ├── transport │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── jsonrpc.py │ │ │ ├── tui │ │ │ │ ├── __init__.py │ │ │ │ ├── app.py │ │ │ │ ├── components │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── filter_bar.py │ │ │ │ │ ├── footer.py │ │ │ │ │ ├── log_view.py │ │ │ │ │ ├── metrics_tab.py │ │ │ │ │ ├── number_input_screen.py │ │ │ │ │ ├── reconnect_screen.py │ │ │ │ │ ├── task_detail_screen.py │ │ │ │ │ ├── task_table.py │ │ │ │ │ ├── templates_view.py │ │ │ │ │ ├── tree_view.py │ │ │ │ │ └── workers_view.py │ │ │ │ ├── fileops.py │ │ │ │ └── ws_client.py │ │ │ └── worker │ │ │ │ ├── .peagen.toml │ │ │ │ ├── Dockerfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── base.py │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── e2e │ │ │ ├── __init__.py │ │ │ └── test_local_evolve.py │ │ │ ├── examples │ │ │ ├── 2x2Grid │ │ │ │ ├── .peagen.toml │ │ │ │ ├── README.md │ │ │ │ ├── doe_spec.yaml │ │ │ │ ├── patches │ │ │ │ │ ├── factor1_A.yaml │ │ │ │ │ ├── factor1_B.yaml │ │ │ │ │ ├── factor2_C.yaml │ │ │ │ │ └── factor2_D.yaml │ │ │ │ └── template_project.yaml │ │ │ ├── README.md │ │ │ ├── doe_specs │ │ │ │ ├── README.md │ │ │ │ ├── doe_spec(composite).yaml │ │ │ │ ├── doe_spec(evpools).yaml │ │ │ │ └── doe_spec.yaml │ │ │ ├── evolve_example_2 │ │ │ │ ├── README.md │ │ │ │ ├── cfg │ │ │ │ │ ├── local.toml │ │ │ │ │ └── remote.toml │ │ │ │ ├── evolve_spec.yaml │ │ │ │ ├── patches │ │ │ │ │ └── echo.patch │ │ │ │ └── workspace │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── main.py │ │ │ ├── gateway_demo │ │ │ │ ├── .peagen.toml │ │ │ │ ├── README.md │ │ │ │ ├── doe_spec.yaml │ │ │ │ └── template_project.yaml │ │ │ ├── locking_demo │ │ │ │ ├── README.md │ │ │ │ ├── doe_spec.yaml │ │ │ │ ├── patches │ │ │ │ │ ├── suffix_001.yaml │ │ │ │ │ └── suffix_002.yaml │ │ │ │ └── template_project.yaml │ │ │ ├── manifests │ │ │ │ ├── ExampleParserProject_manifest.json │ │ │ │ └── README.md │ │ │ ├── override │ │ │ │ ├── .override.toml │ │ │ │ └── README.md │ │ │ ├── peagen_local_demo │ │ │ │ ├── README.md │ │ │ │ ├── patches │ │ │ │ │ └── demo.patch │ │ │ │ ├── test_evolve_spec.yaml │ │ │ │ └── test_workspace │ │ │ │ │ ├── .peagen.toml │ │ │ │ │ └── main.py │ │ │ ├── peagen_tomls │ │ │ │ ├── .peagen.toml │ │ │ │ ├── README.md │ │ │ │ └── local_minimal.toml │ │ │ ├── projects_payloads │ │ │ │ ├── README.md │ │ │ │ ├── linked_example_project.yaml │ │ │ │ ├── middleware_payload.yaml │ │ │ │ ├── orm_projects_payload.yaml │ │ │ │ ├── project_payloads.yaml │ │ │ │ ├── projects_payload.yaml │ │ │ │ ├── projects_payload_example1.yaml │ │ │ │ ├── template_two_colliding_projects.yaml │ │ │ │ └── template_two_project.yaml │ │ │ ├── ptrees │ │ │ │ ├── README.md │ │ │ │ └── ptree.yaml │ │ │ ├── repo_ref_demo │ │ │ │ ├── README.md │ │ │ │ ├── base.yaml │ │ │ │ ├── demo_spec.yaml │ │ │ │ ├── patch.yaml │ │ │ │ └── template.yaml │ │ │ └── simple_evolve_demo │ │ │ │ ├── README.md │ │ │ │ ├── cfg │ │ │ │ ├── local.toml │ │ │ │ └── remote.toml │ │ │ │ ├── evolve_remote_spec.yaml │ │ │ │ ├── evolve_spec_local.yaml │ │ │ │ ├── patches │ │ │ │ └── suffix_001.yaml │ │ │ │ ├── template_project.yaml │ │ │ │ └── workspace │ │ │ │ ├── .peagen.toml │ │ │ │ ├── __init__.py │ │ │ │ ├── main.py │ │ │ │ └── sort_alg.py │ │ │ ├── i9n │ │ │ ├── test_worker_crud.py │ │ │ └── two_user_secret_exchange_i9n_test.py │ │ │ ├── infra │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── test_gateway_worker_heartbeat.py │ │ │ ├── test_simple_evolve_demo.py │ │ │ └── test_worker_create_anon.py │ │ │ ├── perf │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── test_plugin_manager_perf.py │ │ │ ├── test_publisher_benchmarks.py │ │ │ └── test_queue_benchmarks.py │ │ │ ├── sequence_failure │ │ │ ├── __init__.py │ │ │ ├── examples │ │ │ │ └── demo_failure.yaml │ │ │ └── test_sequences_failure.py │ │ │ ├── sequence_success │ │ │ ├── __init__.py │ │ │ ├── examples │ │ │ │ └── demo_success.yaml │ │ │ └── test_sequences_success.py │ │ │ ├── smoke │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── test_gateway_login_keys_secrets_cli.py │ │ │ ├── test_gateway_ops.py │ │ │ ├── test_gateway_remote_doe.py │ │ │ ├── test_remote_doe_cli.py │ │ │ ├── test_remote_doe_process_cli.py │ │ │ ├── test_remote_eval_cli.py │ │ │ ├── test_remote_evolve.py │ │ │ ├── test_remote_full_flow.py │ │ │ ├── test_remote_mutate_cli.py │ │ │ ├── test_remote_process_cli.py │ │ │ └── test_remote_sort_cli.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── dummy_plugins.py │ │ │ ├── test_alembic_integration.py │ │ │ ├── test_cfg_fsm_invariants.py │ │ │ ├── test_cli_templates.py │ │ │ ├── test_deploykey_cli.py │ │ │ ├── test_doe_core_patch_error.py │ │ │ ├── test_doe_eval_results.py │ │ │ ├── test_doe_handler.py │ │ │ ├── test_doe_version_enforcement.py │ │ │ ├── test_eval_handler.py │ │ │ ├── test_evolve_cli.py │ │ │ ├── test_extras_cli.py │ │ │ ├── test_extras_core.py │ │ │ ├── test_extras_handler.py │ │ │ ├── test_fetch_handler.py │ │ │ ├── test_fileops.py │ │ │ ├── test_gateway_client_ip.py │ │ │ ├── test_gateway_worker_model.py │ │ │ ├── test_get_task_handler.py │ │ │ ├── test_git_filter.py │ │ │ ├── test_git_show_cli.py │ │ │ ├── test_in_memory_queue.py │ │ │ ├── test_init_core_init_repo.py │ │ │ ├── test_init_core_repo_config.py │ │ │ ├── test_init_handler.py │ │ │ ├── test_keys_core.py │ │ │ ├── test_kms_unwrap_keys.py │ │ │ ├── test_kms_wrap_keys.py │ │ │ ├── test_llm_prog_rewrite_mutator.py │ │ │ ├── test_llm_prompt_mutator.py │ │ │ ├── test_load_projects_payload.py │ │ │ ├── test_migrate_core.py │ │ │ ├── test_monitor_evaluator.py │ │ │ ├── test_mutate_handler.py │ │ │ ├── test_openapi_schemas.py │ │ │ ├── test_patch_core.py │ │ │ ├── test_perf_regression_evaluator.py │ │ │ ├── test_plugin_manager.py │ │ │ ├── test_pool_policy.py │ │ │ ├── test_process_core.py │ │ │ ├── test_process_handler.py │ │ │ ├── test_psutil_io_evaluator.py │ │ │ ├── test_publickey_cli.py │ │ │ ├── test_pytest_evaluator.py │ │ │ ├── test_pytest_memray_evaluator.py │ │ │ ├── test_redis_queue.py │ │ │ ├── test_render_core.py │ │ │ ├── test_rpc_batch.py │ │ │ ├── test_ruff_evaluator.py │ │ │ ├── test_simple_time_evaluator.py │ │ │ ├── test_sort_core_file_records.py │ │ │ ├── test_sort_handler.py │ │ │ ├── test_task_cli.py │ │ │ ├── test_task_submit.py │ │ │ ├── test_templates_handler.py │ │ │ ├── test_tui_clipboard.py │ │ │ ├── test_tui_collapse.py │ │ │ ├── test_tui_pagination.py │ │ │ ├── test_tui_task_details.py │ │ │ ├── test_utils_config_loader.py │ │ │ ├── test_utils_context.py │ │ │ ├── test_utils_graph.py │ │ │ ├── test_utils_init.py │ │ │ ├── test_utils_search_template_sets.py │ │ │ ├── test_utils_slug.py │ │ │ ├── test_utils_source_packages.py │ │ │ ├── test_validate_cli.py │ │ │ ├── test_validate_core.py │ │ │ ├── test_worker_openapi.py │ │ │ └── test_ws_client.py │ ├── peagen_templset_vue │ │ ├── LICENSE │ │ ├── README.md │ │ ├── peagen_templset_vue │ │ │ ├── __truthy.py │ │ │ └── templates │ │ │ │ └── peagen_templset_vue │ │ │ │ ├── agent_default.j2 │ │ │ │ ├── ptree.yaml.j2 │ │ │ │ └── {{ PKG.NAME }} │ │ │ │ └── src │ │ │ │ └── components │ │ │ │ └── {{ MOD.NAME }} │ │ │ │ ├── index.ts.j2 │ │ │ │ ├── {{ MOD.NAME }}.a11y.spec.ts.j2 │ │ │ │ ├── {{ MOD.NAME }}.css.j2 │ │ │ │ ├── {{ MOD.NAME }}.d.ts.j2 │ │ │ │ ├── {{ MOD.NAME }}.spec.ts.j2 │ │ │ │ ├── {{ MOD.NAME }}.stories.mdx.j2 │ │ │ │ ├── {{ MOD.NAME }}.stories.ts.j2 │ │ │ │ ├── {{ MOD.NAME }}.visual.spec.ts.j2 │ │ │ │ └── {{ MOD.NAME }}.vue.j2 │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── TemplateSetVue_unit_test.py │ ├── swarmauri_certs_composite │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_composite │ │ │ ├── CompositeCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_usage_example.py │ │ │ ├── functional │ │ │ └── test_compositecertservice_functional.py │ │ │ ├── perf │ │ │ └── test_compositecertservice_perf.py │ │ │ └── unit │ │ │ ├── CompositeCertService_unit_test.py │ │ │ ├── test_compositecertservice_rfc2986.py │ │ │ └── test_compositecertservice_rfc5280.py │ ├── swarmauri_certs_local_ca │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_local_ca │ │ │ ├── LocalCaCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ ├── test_service_functional.py │ │ │ └── test_usage_example.py │ │ │ ├── perf │ │ │ └── test_service_perf.py │ │ │ └── unit │ │ │ ├── LocalCaCertService_unit_test.py │ │ │ ├── test_rfc2986_csr.py │ │ │ ├── test_rfc5280_basic_constraints.py │ │ │ ├── test_rfc5480_ecdsa.py │ │ │ ├── test_rfc8017_rsa_pss.py │ │ │ └── test_rfc8032_ed25519.py │ ├── swarmauri_certs_remote_ca │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_remote_ca │ │ │ ├── RemoteCaCertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_usage.py │ │ │ ├── functional │ │ │ └── test_sign_cert_functional.py │ │ │ ├── perf │ │ │ └── test_sign_cert_perf.py │ │ │ └── unit │ │ │ ├── RemoteCaCertService_unit_test.py │ │ │ ├── test_rfc5280_reference.py │ │ │ └── test_rfc7030_reference.py │ ├── swarmauri_certs_self_signed │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_self_signed │ │ │ ├── SelfSignedCertificate.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_quickstart.py │ │ │ ├── functional │ │ │ └── test_self_signed_certificate_functional.py │ │ │ ├── perf │ │ │ └── test_self_signed_certificate_perf.py │ │ │ └── unit │ │ │ ├── SelfSignedCertificate_unit_test.py │ │ │ └── test_rfc5280_cert.py │ ├── swarmauri_certs_x509 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_x509 │ │ │ ├── X509CertService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── example │ │ │ └── test_usage_example.py │ │ │ ├── functional │ │ │ └── test_x509certservice_functional.py │ │ │ ├── perf │ │ │ └── test_x509certservice_perf.py │ │ │ └── unit │ │ │ ├── X509CertService_unit_test.py │ │ │ ├── test_rfc2986_pkcs10.py │ │ │ └── test_rfc5280_basic.py │ ├── swarmauri_certs_x509verify │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_certs_x509verify │ │ │ ├── X509VerifyService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_verify_chain.py │ │ │ ├── perf │ │ │ └── test_verify_perf.py │ │ │ └── unit │ │ │ ├── X509VerifyService_unit_test.py │ │ │ └── test_rfc5280.py │ ├── swarmauri_cipher_suite_cades │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_cades │ │ │ ├── CadesCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_CadesCipherSuite_unit.py │ ├── swarmauri_cipher_suite_cnsa20 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_cnsa20 │ │ │ ├── Cnsa20CipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_Cnsa20CipherSuite.py │ ├── swarmauri_cipher_suite_cose │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_cose │ │ │ ├── CoseCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_CoseCipherSuite_unit.py │ ├── swarmauri_cipher_suite_fips1403 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_fips1403 │ │ │ ├── FipsCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_FipsCipherSuite_unit.py │ ├── swarmauri_cipher_suite_ipsec │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_ipsec │ │ │ ├── IpsecCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_IpsecCipherSuite_unit.py │ ├── swarmauri_cipher_suite_jwa │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_jwa │ │ │ ├── JwaCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_JwaCipherSuite_unit.py │ ├── swarmauri_cipher_suite_pades │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_pades │ │ │ ├── PadesCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_PadesCipherSuite_unit.py │ ├── swarmauri_cipher_suite_pep458 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_pep458 │ │ │ ├── Pep458CipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_pep458_cipher_suite.py │ ├── swarmauri_cipher_suite_sigstore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_sigstore │ │ │ ├── SigstoreCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_SigstoreCipherSuite_unit.py │ ├── swarmauri_cipher_suite_ssh │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_ssh │ │ │ ├── SshCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_SshCipherSuite_unit.py │ ├── swarmauri_cipher_suite_tls13 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_tls13 │ │ │ ├── Tls13CipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_Tls13CipherSuite_unit.py │ ├── swarmauri_cipher_suite_webauthn │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_webauthn │ │ │ ├── WebAuthnCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_WebAuthnCipherSuite_unit.py │ ├── swarmauri_cipher_suite_xades │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_xades │ │ │ ├── XadesCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_XadesCipherSuite_unit.py │ ├── swarmauri_cipher_suite_yubikey │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_yubikey │ │ │ ├── YubiKeyCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_YubiKeyCipherSuite_unit.py │ ├── swarmauri_cipher_suite_yubikey_fips │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_cipher_suite_yubikey_fips │ │ │ ├── YubiKeyFipsCipherSuite.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_YubiKeyFipsCipherSuite_unit.py │ ├── swarmauri_crypto_composite │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_composite │ │ │ ├── CompositeCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_composite_crypto.py │ │ │ └── test_readme_example.py │ ├── swarmauri_crypto_ecdh_es_a128kw │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_ecdh_es_a128kw │ │ │ ├── ECDHESA128KWCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── test_wrap_unwrap.py │ ├── swarmauri_crypto_jwe │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_jwe │ │ │ ├── JweCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_jwe_functional.py │ │ │ ├── perf │ │ │ └── test_jwe_perf.py │ │ │ ├── rfc │ │ │ ├── test_rfc7516.py │ │ │ └── test_rfc7518.py │ │ │ └── unit │ │ │ └── test_jwe_unit.py │ ├── swarmauri_crypto_nacl_pkcs11 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_nacl_pkcs11 │ │ │ ├── NaClPkcs11Crypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme.py │ │ │ └── unit │ │ │ └── test_NaClPkcs11Crypto.py │ ├── swarmauri_crypto_paramiko │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_paramiko │ │ │ ├── ParamikoCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── test_ParamikoCrypto.py │ │ │ └── test_usage_examples.py │ ├── swarmauri_crypto_pgp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_crypto_pgp │ │ │ ├── PGPCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ └── unit │ │ │ └── test_PGPCrypto.py │ ├── swarmauri_crypto_rust │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── python │ │ │ └── swarmauri_crypto_rust │ │ │ │ ├── RustCrypto.py │ │ │ │ └── __init__.py │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_RustCrypto.py │ ├── swarmauri_distance_minkowski │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_distance_minkowski │ │ │ ├── MinkowskiDistance.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── MinkowskiDistance_unit_test.py │ ├── swarmauri_embedding_doc2vec │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_embedding_doc2vec │ │ │ ├── Doc2VecEmbedding.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── Doc2VecEmbedding_unit_test.py │ ├── swarmauri_embedding_nmf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_embedding_nmf │ │ │ ├── NmfEmbedding.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ └── unit │ │ │ └── NmfEmbedding_unit_test.py │ ├── swarmauri_evaluator_abstractmethods │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluator_abstractmethods │ │ │ ├── AbstractMethodsEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_AbstractMethodsEvaluator.py │ ├── swarmauri_evaluator_anyusage │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluator_anyusage │ │ │ ├── AnyTypeUsageEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ └── unit │ │ │ └── test_AnyTypeUsageEvaluator.py │ ├── swarmauri_evaluator_constanttime │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluator_constanttime │ │ │ ├── ConstantTimeEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_ConstantTimeEvaluator.py │ ├── swarmauri_evaluator_externalimports │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluator_externalimports │ │ │ ├── ExternalImportsEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_ExternalImportsEvaluator.py │ ├── swarmauri_evaluator_subprocess │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluator_subprocess │ │ │ ├── SubprocessEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_SubprocessEvaluator.py │ ├── swarmauri_evaluatorpool_accessibility │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_evaluatorpool_accessibility │ │ │ ├── AccessibilityEvaluatorPool.py │ │ │ ├── AutomatedReadabilityIndexEvaluator.py │ │ │ ├── ColemanLiauIndexEvaluator.py │ │ │ ├── FleschKincaidGradeEvaluator.py │ │ │ ├── FleschReadingEaseEvaluator.py │ │ │ ├── GunningFogEvaluator.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── test_AccessibilityEvaluatorPool.py │ │ │ ├── test_AutomatedReadabilityIndexEvaluator.py │ │ │ ├── test_ColemanLiauIndexEvaluator.py │ │ │ ├── test_FleschKincaidGradeEvaluator.py │ │ │ ├── test_FleschReadingEaseEvaluator.py │ │ │ ├── test_GunningFogEvaluator.py │ │ │ └── test_readme_example.py │ ├── swarmauri_gitfilter_file │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_gitfilter_file │ │ │ ├── __init__.py │ │ │ └── file_filter.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_file_filter.py │ ├── swarmauri_gitfilter_gh_release │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_gitfilter_gh_release │ │ │ ├── __init__.py │ │ │ └── gh_release_filter.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── _helpers.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_gh_release_filter.py │ │ │ └── test_readme_example.py │ ├── swarmauri_gitfilter_minio │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_gitfilter_minio │ │ │ ├── __init__.py │ │ │ └── minio_filter.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_minio_filter.py │ ├── swarmauri_gitfilter_s3fs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_gitfilter_s3fs │ │ │ ├── __init__.py │ │ │ └── s3fs_filter.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_s3fs_filter.py │ ├── swarmauri_keyprovider_file │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_file │ │ │ ├── FileKeyProvider.py │ │ │ ├── __init__.py │ │ │ └── examples │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ └── basic_usage.py │ │ └── tests │ │ │ ├── examples │ │ │ └── test_basic_usage.py │ │ │ ├── test_file_keyprovider_basic.py │ │ │ ├── test_file_keyprovider_functional.py │ │ │ ├── test_file_keyprovider_perf.py │ │ │ ├── test_readme_example.py │ │ │ ├── test_rfc5869_hkdf.py │ │ │ └── test_rfc7517_jwk.py │ ├── swarmauri_keyprovider_hierarchical │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_hierarchical │ │ │ ├── HierarchicalKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_functional.py │ │ │ ├── test_perf.py │ │ │ ├── test_readme_example.py │ │ │ ├── test_rfc7517.py │ │ │ ├── test_rfc7518.py │ │ │ └── test_unit.py │ ├── swarmauri_keyprovider_inmemory │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_inmemory │ │ │ ├── InMemoryKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_usage.py │ │ │ └── unit │ │ │ └── test_inmemory_provider_unit.py │ ├── swarmauri_keyprovider_local │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_local │ │ │ ├── LocalKeyProvider.py │ │ │ ├── __init__.py │ │ │ └── examples │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ └── basic_usage.py │ │ └── tests │ │ │ ├── examples │ │ │ ├── test_basic_usage.py │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_local_provider_functional.py │ │ │ ├── perf │ │ │ └── test_local_provider_perf.py │ │ │ └── unit │ │ │ └── test_local_provider_unit.py │ ├── swarmauri_keyprovider_remote_jwks │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_remote_jwks │ │ │ ├── RemoteJwksKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_remote_jwks_functional.py │ │ │ ├── test_remote_jwks_performance.py │ │ │ ├── test_remote_jwks_unit.py │ │ │ ├── test_rfc7517_jwks_compliance.py │ │ │ ├── test_rfc8414_oidc_discovery.py │ │ │ └── test_usage_example.py │ ├── swarmauri_keyprovider_ssh │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyprovider_ssh │ │ │ ├── SshKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_ssh_provider_functional.py │ │ │ ├── perf │ │ │ └── test_ssh_provider_perf.py │ │ │ └── unit │ │ │ ├── test_readme_examples.py │ │ │ ├── test_rfc5869_hkdf.py │ │ │ ├── test_rfc7517_jwk.py │ │ │ └── test_ssh_provider_unit.py │ ├── swarmauri_keyproviders_mirrored │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_keyproviders_mirrored │ │ │ ├── MirroredKeyProvider.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_failover_functional.py │ │ │ ├── perf │ │ │ └── test_perf_get_key.py │ │ │ └── unit │ │ │ ├── test_mirrored_key_provider.py │ │ │ ├── test_rfc7517.py │ │ │ └── test_rfc7518.py │ ├── swarmauri_middleware_auth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_auth │ │ │ ├── AuthMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── test_AuthMiddleware.py │ │ │ └── test_readme_example.py │ ├── swarmauri_middleware_bulkhead │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_bulkhead │ │ │ ├── BulkheadMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_BulkheadMiddleware.py │ ├── swarmauri_middleware_cachecontrol │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_cachecontrol │ │ │ ├── CacheControlMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_CacheControlMiddleware.py │ ├── swarmauri_middleware_cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_cors │ │ │ ├── CustomCORSMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── examples │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_CustomCORSMiddleware.py │ ├── swarmauri_middleware_exceptionhandling │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_exceptionhandling │ │ │ ├── ExceptionHandlingMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_ExceptionHandlingMiddleware.py │ ├── swarmauri_middleware_gzipcompression │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_gzipcompression │ │ │ ├── GzipCompressionMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_GzipCompressionMiddleware.py │ ├── swarmauri_middleware_httpsig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_httpsig │ │ │ ├── HttpSigMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_HttpSigMiddleware.py │ ├── swarmauri_middleware_jsonrpc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_jsonrpc │ │ │ ├── JsonRpcMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ ├── test_fastapi_integration.py │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_JsonRpcMiddleware.py │ ├── swarmauri_middleware_jwksverifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_jwksverifier │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_jwksverifier_functional.py │ │ │ ├── perf │ │ │ └── test_jwksverifier_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ ├── test_jwksverifier_unit.py │ │ │ ├── test_rfc7515_unit.py │ │ │ ├── test_rfc7517_unit.py │ │ │ └── test_rfc7519_unit.py │ ├── swarmauri_middleware_jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_jwt │ │ │ ├── JWTMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_JWTMiddleware.py │ ├── swarmauri_middleware_llamaguard │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_llamaguard │ │ │ ├── LlamaGuardMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_examples.py │ │ │ └── unit │ │ │ └── test_LlamaGuardMiddleware.py │ ├── swarmauri_middleware_logging │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_logging │ │ │ ├── LoggingMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_LoggingMiddleware.py │ ├── swarmauri_middleware_ratelimit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_ratelimit │ │ │ ├── RateLimitMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_RateLimitMiddleware.py │ ├── swarmauri_middleware_securityheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_securityheaders │ │ │ ├── SecurityHeadersMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_SecurityHeadersMiddleware.py │ ├── swarmauri_middleware_session │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_session │ │ │ ├── SessionMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_SessionMiddleware.py │ ├── swarmauri_middleware_stdio │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_stdio │ │ │ ├── StdioMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ ├── test_fastapi_integration.py │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_StdioMiddleware.py │ ├── swarmauri_middleware_time │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_middleware_time │ │ │ ├── TimerMiddleware.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_TimerMiddleware.py │ ├── swarmauri_mre_crypto_age │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_mre_crypto_age │ │ │ ├── AgeMreCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ ├── test_example_usage.py │ │ │ └── test_open_for_many.py │ │ │ ├── perf │ │ │ └── test_encrypt_perf.py │ │ │ └── unit │ │ │ └── test_AgeMreCrypto.py │ ├── swarmauri_mre_crypto_ecdh_es_kw │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_mre_crypto_ecdh_es_kw │ │ │ ├── EcdhEsA128KwMreCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_open_for_many.py │ │ │ ├── perf │ │ │ └── test_encrypt_perf.py │ │ │ └── unit │ │ │ ├── test_EcdhEsA128KwMreCrypto.py │ │ │ └── test_readme_example.py │ ├── swarmauri_mre_crypto_keyring │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_mre_crypto_keyring │ │ │ ├── KeyringMreCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_keyring_mre_crypto_functional.py │ │ │ ├── perf │ │ │ └── test_keyring_mre_crypto_perf.py │ │ │ └── unit │ │ │ └── test_keyring_mre_crypto.py │ ├── swarmauri_mre_crypto_pgp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_mre_crypto_pgp │ │ │ ├── PGPSealMreCrypto.py │ │ │ ├── __init__.py │ │ │ ├── pgp_mre.py │ │ │ └── pgp_sealed_cek_mre.py │ │ └── tests │ │ │ ├── i9n │ │ │ ├── test_pgpmrecrypto_rewrap_integration.py │ │ │ └── test_rewrap_integration.py │ │ │ ├── perf │ │ │ ├── test_encrypt_perf.py │ │ │ └── test_pgpmrecrypto_encrypt_perf.py │ │ │ └── unit │ │ │ ├── test_PGPMreCrypto.py │ │ │ ├── test_PGPSealMreCrypto.py │ │ │ ├── test_PGPSealedCekMreCrypto.py │ │ │ └── test_usage_example.py │ ├── swarmauri_mre_crypto_shamir │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_mre_crypto_shamir │ │ │ ├── ShamirMreCrypto.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_shamir_functional.py │ │ │ ├── perf │ │ │ └── test_shamir_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_shamir_unit.py │ ├── swarmauri_parser_beautifulsoupelement │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_beautifulsoupelement │ │ │ ├── BeautifulSoupElementParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_examples.py │ │ │ └── unit │ │ │ └── BeautifulSoupElementParser_unit_test.py │ ├── swarmauri_parser_keywordextractor │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_parser_keywordextractor │ │ │ ├── KeywordExtractorParser.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ └── unit │ │ │ └── KeywordExtractorParser_unit_test.py │ ├── swarmauri_pop_cwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_pop_cwt │ │ │ ├── __init__.py │ │ │ └── cwt.py │ ├── swarmauri_pop_dpop │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_pop_dpop │ │ │ ├── __init__.py │ │ │ └── dpop.py │ ├── swarmauri_pop_x509 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_pop_x509 │ │ │ ├── __init__.py │ │ │ └── x509.py │ ├── swarmauri_prompt_j2prompttemplate │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_prompt_j2prompttemplate │ │ │ ├── J2PromptTemplate.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_examples.py │ │ │ └── unit │ │ │ └── test_J2PromptTemplate.py │ ├── swarmauri_publisher_rabbitmq │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_publisher_rabbitmq │ │ │ ├── RabbitMQPublisher.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_RabbitMQPublisher.py │ ├── swarmauri_publisher_redis │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_publisher_redis │ │ │ ├── RedisPublisher.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_RedisPublisher.py │ ├── swarmauri_publisher_webhook │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_publisher_webhook │ │ │ ├── WebhookPublisher.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ └── unit │ │ │ └── test_WebhookPublisher.py │ ├── swarmauri_signing_ca │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_ca │ │ │ ├── CASigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_quickstart.py │ │ │ ├── functional │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ └── unit │ │ │ ├── test_rfc5280_cert_chain.py │ │ │ ├── test_rfc5480_ecdsa.py │ │ │ ├── test_rfc8017_rsa_pss.py │ │ │ ├── test_rfc8032_ed25519.py │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_cms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_cms │ │ │ ├── __init__.py │ │ │ └── cms_signer.py │ │ └── tests │ │ │ └── __init__.py │ ├── swarmauri_signing_dpop │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_dpop │ │ │ ├── DpopSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ ├── test_dpop_replay_hooks.py │ │ │ ├── test_dpop_signer.py │ │ │ └── test_dpop_signer_ath.py │ ├── swarmauri_signing_ecdsa │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_ecdsa │ │ │ ├── EcdsaEnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ ├── test_readme_example.py │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_ed25519 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_ed25519 │ │ │ ├── Ed25519EnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_hmac │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_hmac │ │ │ ├── HmacEnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_jws │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_jws │ │ │ ├── JwsSignerVerifier.py │ │ │ ├── __init__.py │ │ │ └── jws_signer.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_jws_functional.py │ │ │ ├── perf │ │ │ └── test_jws_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_jws_unit.py │ ├── swarmauri_signing_openpgp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_openpgp │ │ │ ├── __init__.py │ │ │ └── openpgp_signer.py │ │ └── tests │ │ │ └── __init__.py │ ├── swarmauri_signing_pdf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_pdf │ │ │ ├── __init__.py │ │ │ └── pdf_signer.py │ │ └── tests │ │ │ └── __init__.py │ ├── swarmauri_signing_pep458 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_pep458 │ │ │ ├── Pep458Signer.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_pep458_signer.py │ ├── swarmauri_signing_pgp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_pgp │ │ │ ├── __init__.py │ │ │ └── pgp_signer.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_pgp_signer_functional.py │ │ │ ├── perf │ │ │ └── test_pgp_signer_perf.py │ │ │ └── unit │ │ │ └── test_pgp_signer.py │ ├── swarmauri_signing_rsa │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_rsa │ │ │ ├── RSAEnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ ├── test_readme_example.py │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_secp256k1 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_secp256k1 │ │ │ ├── Secp256k1EnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_ssh │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_signing_ssh │ │ │ ├── SshEnvelopeSigner.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_signer_functional.py │ │ │ ├── perf │ │ │ └── test_signer_perf.py │ │ │ └── unit │ │ │ └── test_signer_unit.py │ ├── swarmauri_signing_xmld │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_signing_xmld │ │ │ ├── __init__.py │ │ │ └── xmld_signer.py │ ├── swarmauri_storage_file │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_storage_file │ │ │ ├── __init__.py │ │ │ └── file_storage_adapter.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_file_storage_adapter.py │ ├── swarmauri_storage_github │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_storage_github │ │ │ ├── __init__.py │ │ │ └── github_storage_adapter.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ └── test_github_storage_adapter.py │ ├── swarmauri_storage_github_release │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_storage_github_release │ │ │ ├── __init__.py │ │ │ └── gh_release_storage_adapter.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ └── unit │ │ │ ├── test_github_release_storage_adapter.py │ │ │ └── test_readme_example.py │ ├── swarmauri_storage_minio │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_storage_minio │ │ │ ├── __init__.py │ │ │ └── minio_storage_adapter.py │ │ └── tests │ │ │ ├── i9n │ │ │ └── test_i9n__init__.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ └── test_minio_storage_adapter.py │ ├── swarmauri_tokens_composite │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_composite │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_composite_token_service.py │ │ │ ├── test_functional_composite_token_service.py │ │ │ ├── test_perf_composite_token_service.py │ │ │ ├── test_readme_example.py │ │ │ ├── test_rfc4253_ssh.py │ │ │ └── test_rfc7519_jwt.py │ ├── swarmauri_tokens_dpopboundjwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_dpopboundjwt │ │ │ ├── DPoPBoundJWTTokenService.py │ │ │ ├── JWTTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_rfc9449_dpop_functional.py │ │ │ ├── perf │ │ │ └── test_dpop_verify_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ ├── test_rfc7638_thumbprint_unit.py │ │ │ └── test_rfc9449_compliance_unit.py │ ├── swarmauri_tokens_introspection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_introspection │ │ │ ├── IntrospectionTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── test_functional.py │ │ │ ├── test_performance.py │ │ │ ├── test_readme_example.py │ │ │ ├── test_rfc7662.py │ │ │ └── test_unit.py │ ├── swarmauri_tokens_jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_jwt │ │ │ ├── JWTTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_jwttokenservice_functional.py │ │ │ ├── perf │ │ │ └── test_jwttokenservice_perf.py │ │ │ └── unit │ │ │ ├── test_jwttokenservice_unit.py │ │ │ ├── test_rfc7515_jws.py │ │ │ ├── test_rfc7517_jwks.py │ │ │ ├── test_rfc7519_jwt.py │ │ │ └── test_usage_example.py │ ├── swarmauri_tokens_paseto_v4 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_paseto_v4 │ │ │ ├── PasetoV4TokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── functional │ │ │ └── test_service_functional.py │ │ │ ├── perf │ │ │ └── test_service_perf.py │ │ │ ├── test_readme_example.py │ │ │ └── unit │ │ │ ├── test_rfc7519_claims.py │ │ │ └── test_service_unit.py │ ├── swarmauri_tokens_remoteoidc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_remoteoidc │ │ │ ├── RemoteOIDCTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_readme_example.py │ │ │ ├── functional │ │ │ └── test_remote_oidc_functional.py │ │ │ ├── perf │ │ │ └── test_remote_oidc_perf.py │ │ │ └── unit │ │ │ ├── test_rfc7517_jwks.py │ │ │ └── test_rfc7519_jwt.py │ ├── swarmauri_tokens_rotatingjwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_rotatingjwt │ │ │ ├── __init__.py │ │ │ └── rotating_jwt.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── test_performance.py │ │ │ ├── test_rfc7515_jws.py │ │ │ ├── test_rfc7517_jwks.py │ │ │ ├── test_rfc7518_jwa.py │ │ │ └── test_rfc7519_jwt.py │ ├── swarmauri_tokens_sshcert │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_sshcert │ │ │ ├── SshCertTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── example │ │ │ └── test_usage_example.py │ │ │ ├── functional │ │ │ └── test_sshcerttokenservice_functional.py │ │ │ ├── perf │ │ │ └── test_sshcerttokenservice_perf.py │ │ │ └── unit │ │ │ ├── test_rfc4252_userauth.py │ │ │ ├── test_rfc8709_ed25519.py │ │ │ └── test_sshcerttokenservice_unit.py │ ├── swarmauri_tokens_sshsig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_sshsig │ │ │ ├── SshSigTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── functional │ │ │ └── test_sshsigtokenservice_functional.py │ │ │ ├── perf │ │ │ └── test_sshsigtokenservice_perf.py │ │ │ └── unit │ │ │ ├── test_rfc5656_ecdsa.py │ │ │ ├── test_rfc8032_ed25519.py │ │ │ └── test_sshsigtokenservice_unit.py │ ├── swarmauri_tokens_tlsboundjwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tokens_tlsboundjwt │ │ │ ├── TlsBoundJWTTokenService.py │ │ │ └── __init__.py │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── functional │ │ │ └── test_tlsboundjwt_functional.py │ │ │ ├── perf │ │ │ └── test_tlsboundjwt_perf.py │ │ │ └── unit │ │ │ ├── test_rfc8705_compliance.py │ │ │ └── test_tlsboundjwt_unit.py │ ├── swarmauri_tool_containerfeedchars │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_containerfeedchars │ │ │ ├── ContainerFeedCharsTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_ContainerFeedCharsTool.py │ ├── swarmauri_tool_containermakepr │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_containermakepr │ │ │ ├── ContainerMakePrTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_ContainerMakePrTool.py │ ├── swarmauri_tool_containernewsession │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_containernewsession │ │ │ ├── ContainerNewSessionTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_ContainerNewSessionTool.py │ ├── swarmauri_tool_githubloader │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_githubloader │ │ │ ├── GithubLoadedTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── GithubLoadedTool_unit_test.py │ ├── swarmauri_tool_httploaded │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_httploaded │ │ │ ├── HTTPLoadedTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_HTTPLoadedTool.py │ ├── swarmauri_tool_matplotlib │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_tool_matplotlib │ │ │ ├── MatplotlibCsvTool.py │ │ │ ├── MatplotlibTool.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ ├── MatplotlibCsvTool_unit_test.py │ │ │ └── MatplotlibTool_unit_test.py │ ├── swarmauri_toolkit_containertoolkit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_toolkit_containertoolkit │ │ │ ├── ContainerToolkit.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_ContainerToolkit.py │ ├── swarmauri_transport_asgi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_asgi │ │ │ ├── __init__.py │ │ │ └── asgi_transport.py │ ├── swarmauri_transport_h2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_h2 │ │ │ ├── __init__.py │ │ │ └── h2_transport.py │ ├── swarmauri_transport_h2mux │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_h2mux │ │ │ ├── __init__.py │ │ │ └── h2_mux.py │ ├── swarmauri_transport_meshsidecarhttp2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_meshsidecarhttp2 │ │ │ ├── __init__.py │ │ │ └── mesh_sidecar_h2.py │ ├── swarmauri_transport_mtlsunicast │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_mtlsunicast │ │ │ ├── __init__.py │ │ │ └── mtls_unicast.py │ ├── swarmauri_transport_quic │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_transport_quic │ │ │ ├── __init__.py │ │ │ └── quic_transport.py │ │ └── tests │ │ │ └── test_quic_transport.py │ ├── swarmauri_transport_sseoutbound │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_sseoutbound │ │ │ ├── __init__.py │ │ │ └── sse_outbound.py │ ├── swarmauri_transport_sshtunnel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_sshtunnel │ │ │ ├── __init__.py │ │ │ └── ssh_tunnel.py │ ├── swarmauri_transport_stdio │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_stdio │ │ │ ├── __init__.py │ │ │ └── stdio_transport.py │ ├── swarmauri_transport_tcpunicast │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_tcpunicast │ │ │ ├── __init__.py │ │ │ └── tcp_unicast.py │ ├── swarmauri_transport_tls_unicast │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_transport_tls_unicast │ │ │ ├── __init__.py │ │ │ └── tls_unicast.py │ │ └── tests │ │ │ └── test_tls_unicast_transport.py │ ├── swarmauri_transport_udp │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_transport_udp │ │ │ ├── __init__.py │ │ │ └── udp_transport.py │ │ └── tests │ │ │ └── test_udp_transport.py │ ├── swarmauri_transport_uds_unicast │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_transport_uds_unicast │ │ │ ├── __init__.py │ │ │ └── uds_unicast.py │ │ └── tests │ │ │ └── test_uds_unicast_transport.py │ ├── swarmauri_transport_wsjsonrpcmux │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swarmauri_transport_wsjsonrpcmux │ │ │ ├── __init__.py │ │ │ └── ws_jsonrpc_mux.py │ ├── swarmauri_vectorstore_doc2vec │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_vectorstore_doc2vec │ │ │ ├── Doc2VecVectorStore.py │ │ │ └── __init__.py │ │ └── tests │ │ │ └── unit │ │ │ └── Doc2VecVectorStore_unit_test.py │ ├── swarmauri_xmp_gif │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_gif │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_gif_handler.py │ ├── swarmauri_xmp_jpeg │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_jpeg │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_jpeg_handler.py │ ├── swarmauri_xmp_mp4 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_mp4 │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_mp4_handler.py │ ├── swarmauri_xmp_pdf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_pdf │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_pdf_handler.py │ ├── swarmauri_xmp_png │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_png │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_png_handler.py │ ├── swarmauri_xmp_svg │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_svg │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_svg_handler.py │ ├── swarmauri_xmp_tiff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_tiff │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_tiff_handler.py │ ├── swarmauri_xmp_webp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── swarmauri_xmp_webp │ │ │ └── __init__.py │ │ └── tests │ │ │ └── test_webp_handler.py │ ├── swm_example_package │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── swm_example_package │ │ │ ├── ExampleAgent.py │ │ │ └── __init__.py │ ├── tigrbl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── STYLE_GUIDE.md │ │ ├── examples │ │ │ └── book_api.ipynb │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── i9n │ │ │ │ ├── __init__.py │ │ │ │ ├── test_acronym_route_name.py │ │ │ │ ├── test_allow_anon.py │ │ │ │ ├── test_apikey_generation.py │ │ │ │ ├── test_authn_provider_integration.py │ │ │ │ ├── test_bindings_integration.py │ │ │ │ ├── test_bindings_modules.py │ │ │ │ ├── test_bulk_docs_client.py │ │ │ │ ├── test_core_access.py │ │ │ │ ├── test_error_mappings.py │ │ │ │ ├── test_field_spec_effects.py │ │ │ │ ├── test_header_io_uvicorn.py │ │ │ │ ├── test_healthz_methodz_hookz.py │ │ │ │ ├── test_hook_ctx_v3_i9n.py │ │ │ │ ├── test_hook_lifecycle.py │ │ │ │ ├── test_iospec_attributes.py │ │ │ │ ├── test_iospec_integration.py │ │ │ │ ├── test_key_digest_uvicorn.py │ │ │ │ ├── test_list_filters_optional.py │ │ │ │ ├── test_mixins.py │ │ │ │ ├── test_nested_path_schema_and_rpc.py │ │ │ │ ├── test_nested_routing_depth.py │ │ │ │ ├── test_op_ctx_alias_examples.py │ │ │ │ ├── test_op_ctx_behavior.py │ │ │ │ ├── test_op_ctx_core_crud_order.py │ │ │ │ ├── test_openapi_clear_response_schema.py │ │ │ │ ├── test_openapi_schema_examples_presence.py │ │ │ │ ├── test_opspec_effects_i9n_test.py │ │ │ │ ├── test_owner_tenant_policy.py │ │ │ │ ├── test_request_extras.py │ │ │ │ ├── test_request_extras_provider.py │ │ │ │ ├── test_response_extras_provider.py │ │ │ │ ├── test_rest_fallback_serialization.py │ │ │ │ ├── test_rest_row_serialization.py │ │ │ │ ├── test_rest_rpc_parity_v3.py │ │ │ │ ├── test_row_result_serialization.py │ │ │ │ ├── test_schema.py │ │ │ │ ├── test_schema_ctx_attributes_integration.py │ │ │ │ ├── test_schema_ctx_op_ctx_integration.py │ │ │ │ ├── test_schema_ctx_spec_integration.py │ │ │ │ ├── test_sqlite_attachments.py │ │ │ │ ├── test_storage_spec_integration.py │ │ │ │ ├── test_symmetry_parity.py │ │ │ │ ├── test_v3_bulk_rest_endpoints.py │ │ │ │ ├── test_v3_default_rest_ops.py │ │ │ │ ├── test_v3_default_rpc_ops.py │ │ │ │ ├── test_v3_opspec_attributes.py │ │ │ │ └── test_verb_alias_policy.py │ │ │ ├── perf │ │ │ │ ├── __init__.py │ │ │ │ ├── test_collect_caching.py │ │ │ │ ├── test_hookz_performance.py │ │ │ │ └── test_methodz_performance.py │ │ │ └── unit │ │ │ │ ├── __init__.py │ │ │ │ ├── decorators │ │ │ │ ├── test_alias_ctx_bindings.py │ │ │ │ ├── test_engine_ctx_bindings.py │ │ │ │ ├── test_hook_ctx_bindings.py │ │ │ │ ├── test_op_alias_bindings.py │ │ │ │ ├── test_op_ctx_bindings.py │ │ │ │ ├── test_response_ctx_bindings.py │ │ │ │ └── test_schema_ctx_bindings.py │ │ │ │ ├── response_utils.py │ │ │ │ ├── runtime │ │ │ │ ├── atoms │ │ │ │ │ ├── test_emit_paired_post.py │ │ │ │ │ ├── test_emit_paired_pre.py │ │ │ │ │ ├── test_emit_readtime_alias.py │ │ │ │ │ ├── test_out_masking.py │ │ │ │ │ ├── test_refresh_demand.py │ │ │ │ │ ├── test_resolve_assemble.py │ │ │ │ │ ├── test_resolve_paired_gen.py │ │ │ │ │ ├── test_schema_collect_in.py │ │ │ │ │ ├── test_schema_collect_out.py │ │ │ │ │ ├── test_storage_to_stored.py │ │ │ │ │ ├── test_wire_build_in.py │ │ │ │ │ ├── test_wire_build_out.py │ │ │ │ │ ├── test_wire_dump.py │ │ │ │ │ └── test_wire_validate_in.py │ │ │ │ └── test_events_phases.py │ │ │ │ ├── test_acol_vcol_knobs.py │ │ │ │ ├── test_alias_ctx_op_alias_attributes.py │ │ │ │ ├── test_alias_ctx_op_attributes.py │ │ │ │ ├── test_api_level_set_auth.py │ │ │ │ ├── test_app_model_defaults.py │ │ │ │ ├── test_app_reexport.py │ │ │ │ ├── test_base_facade_initialize.py │ │ │ │ ├── test_build_list_params_spec_model.py │ │ │ │ ├── test_bulk_body_annotation.py │ │ │ │ ├── test_bulk_response_schema.py │ │ │ │ ├── test_colspec_map_isolation.py │ │ │ │ ├── test_column_collect_mixins.py │ │ │ │ ├── test_column_rest_rpc_results.py │ │ │ │ ├── test_column_table_orm_binding.py │ │ │ │ ├── test_config_dataclass_none.py │ │ │ │ ├── test_core_crud_bulk_ops.py │ │ │ │ ├── test_core_crud_default_ops.py │ │ │ │ ├── test_core_crud_methods.py │ │ │ │ ├── test_core_wrap_memoization.py │ │ │ │ ├── test_db_dependency.py │ │ │ │ ├── test_decorator_and_collect.py │ │ │ │ ├── test_default_tags.py │ │ │ │ ├── test_engine_spec_and_shortcuts.py │ │ │ │ ├── test_engine_usage_levels.py │ │ │ │ ├── test_field_spec_attrs.py │ │ │ │ ├── test_file_response.py │ │ │ │ ├── test_handler_step_qualname.py │ │ │ │ ├── test_hook_ctx_attributes.py │ │ │ │ ├── test_hook_ctx_binding.py │ │ │ │ ├── test_hookz_empty_phase.py │ │ │ │ ├── test_hybrid_session_run_sync.py │ │ │ │ ├── test_in_tx.py │ │ │ │ ├── test_include_models_base_prefix.py │ │ │ │ ├── test_initialize_cross_ddl.py │ │ │ │ ├── test_io_spec_attributes.py │ │ │ │ ├── test_iospec_attributes.py │ │ │ │ ├── test_iospec_effects.py │ │ │ │ ├── test_jsonrpc_id_example.py │ │ │ │ ├── test_jsonrpc_router_default_tag.py │ │ │ │ ├── test_kernel_invoke_ctx.py │ │ │ │ ├── test_kernel_opview_on_demand.py │ │ │ │ ├── test_kernel_plan_labels.py │ │ │ │ ├── test_kernelz_endpoint.py │ │ │ │ ├── test_make_column_shortcuts.py │ │ │ │ ├── test_mixins_sqlalchemy.py │ │ │ │ ├── test_op_alias.py │ │ │ │ ├── test_op_class_engine_binding.py │ │ │ │ ├── test_op_ctx_arity_paths.py │ │ │ │ ├── test_op_ctx_attributes.py │ │ │ │ ├── test_op_ctx_core_crud_integration.py │ │ │ │ ├── test_op_ctx_dynamic_attach.py │ │ │ │ ├── test_op_ctx_persist_options.py │ │ │ │ ├── test_opspec_effects.py │ │ │ │ ├── test_postgres_engine_errors.py │ │ │ │ ├── test_postgres_env_vars.py │ │ │ │ ├── test_relationship_alias_cols.py │ │ │ │ ├── test_request_body_schema.py │ │ │ │ ├── test_request_response_examples.py │ │ │ │ ├── test_resolver_precedence.py │ │ │ │ ├── test_response_alias_table_rpc.py │ │ │ │ ├── test_response_ctx_precedence.py │ │ │ │ ├── test_response_diagnostics_kernelz.py │ │ │ │ ├── test_response_html_jinja_behavior.py │ │ │ │ ├── test_response_parity.py │ │ │ │ ├── test_response_rest.py │ │ │ │ ├── test_response_rpc.py │ │ │ │ ├── test_response_template.py │ │ │ │ ├── test_response_uuid.py │ │ │ │ ├── test_rest_all_default_op_verbs.py │ │ │ │ ├── test_rest_bulk_delete_suppresses_clear.py │ │ │ │ ├── test_rest_no_schema_jsonable.py │ │ │ │ ├── test_rest_operation_id_uniqueness.py │ │ │ │ ├── test_rest_rpc_parity_default_ops.py │ │ │ │ ├── test_rest_rpc_prefixes.py │ │ │ │ ├── test_rest_rpc_symmetry.py │ │ │ │ ├── test_rpc_all_default_op_verbs.py │ │ │ │ ├── test_rpc_default_ops.py │ │ │ │ ├── test_schema_ctx_attributes.py │ │ │ │ ├── test_schema_ctx_plain_class.py │ │ │ │ ├── test_schema_spec_presence.py │ │ │ │ ├── test_schemas_binding.py │ │ │ │ ├── test_security_per_route.py │ │ │ │ ├── test_should_wire_canonical.py │ │ │ │ ├── test_sqlite_attachments.py │ │ │ │ ├── test_storage_spec_attributes.py │ │ │ │ ├── test_sys_handler_crud.py │ │ │ │ ├── test_sys_run_rollback.py │ │ │ │ ├── test_sys_tx_async_begin.py │ │ │ │ ├── test_sys_tx_begin.py │ │ │ │ ├── test_sys_tx_commit.py │ │ │ │ ├── test_table_base_exports.py │ │ │ │ ├── test_table_collect_spec.py │ │ │ │ ├── test_table_columns_namespace.py │ │ │ │ ├── test_v3_favicon_endpoint.py │ │ │ │ ├── test_v3_healthz_endpoint.py │ │ │ │ ├── test_v3_op_alias.py │ │ │ │ ├── test_v3_op_ctx_attributes.py │ │ │ │ ├── test_v3_schemas_and_decorators.py │ │ │ │ └── test_v3_storage_spec_attributes.py │ │ └── tigrbl │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── _api.py │ │ │ ├── api_spec.py │ │ │ ├── mro_collect.py │ │ │ ├── shortcuts.py │ │ │ └── tigrbl_api.py │ │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── _app.py │ │ │ ├── _model_registry.py │ │ │ ├── app_spec.py │ │ │ ├── mro_collect.py │ │ │ ├── shortcuts.py │ │ │ └── tigrbl_app.py │ │ │ ├── bindings │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── include.py │ │ │ │ ├── resource_proxy.py │ │ │ │ └── rpc.py │ │ │ ├── columns.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ ├── ctx.py │ │ │ │ ├── identifiers.py │ │ │ │ ├── namespaces.py │ │ │ │ └── steps.py │ │ │ ├── hooks.py │ │ │ ├── model.py │ │ │ ├── model_helpers.py │ │ │ ├── model_registry.py │ │ │ ├── rest │ │ │ │ ├── __init__.py │ │ │ │ ├── attach.py │ │ │ │ ├── collection.py │ │ │ │ ├── common.py │ │ │ │ ├── fastapi.py │ │ │ │ ├── helpers.py │ │ │ │ ├── io.py │ │ │ │ ├── io_headers.py │ │ │ │ ├── member.py │ │ │ │ ├── router.py │ │ │ │ └── routing.py │ │ │ ├── rpc.py │ │ │ └── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ ├── defaults.py │ │ │ │ └── utils.py │ │ │ ├── column │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── _column.py │ │ │ ├── column_spec.py │ │ │ ├── field_spec.py │ │ │ ├── infer │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── jsonhints.py │ │ │ │ ├── planning.py │ │ │ │ ├── types.py │ │ │ │ └── utils.py │ │ │ ├── io_spec.py │ │ │ ├── mro_collect.py │ │ │ ├── shortcuts.py │ │ │ └── storage_spec.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── defaults.py │ │ │ └── resolver.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ └── crud │ │ │ │ ├── __init__.py │ │ │ │ ├── bulk.py │ │ │ │ ├── helpers │ │ │ │ ├── __init__.py │ │ │ │ ├── db.py │ │ │ │ ├── enum.py │ │ │ │ ├── filters.py │ │ │ │ ├── model.py │ │ │ │ └── normalize.py │ │ │ │ └── ops.py │ │ │ ├── ddl │ │ │ └── __init__.py │ │ │ ├── decorators.py │ │ │ ├── deps │ │ │ ├── __init__.py │ │ │ ├── fastapi.py │ │ │ ├── favicon.svg │ │ │ ├── jinja.py │ │ │ ├── pydantic.py │ │ │ ├── sqlalchemy.py │ │ │ └── starlette.py │ │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── _engine.py │ │ │ ├── bind.py │ │ │ ├── builders.py │ │ │ ├── capabilities.py │ │ │ ├── collect.py │ │ │ ├── decorators.py │ │ │ ├── docs │ │ │ │ └── PLUGINS.md │ │ │ ├── engine_spec.py │ │ │ ├── plugins.py │ │ │ ├── registry.py │ │ │ ├── resolver.py │ │ │ └── shortcuts.py │ │ │ ├── hook │ │ │ ├── __init__.py │ │ │ ├── _hook.py │ │ │ ├── decorators.py │ │ │ ├── hook_spec.py │ │ │ ├── mro_collect.py │ │ │ ├── shortcuts.py │ │ │ └── types.py │ │ │ ├── op │ │ │ ├── __init__.py │ │ │ ├── _op.py │ │ │ ├── canonical.py │ │ │ ├── collect.py │ │ │ ├── decorators.py │ │ │ ├── model_registry.py │ │ │ ├── mro_collect.py │ │ │ ├── resolver.py │ │ │ └── types.py │ │ │ ├── orm │ │ │ ├── __init__.py │ │ │ ├── mixins │ │ │ │ ├── _RowBound.py │ │ │ │ ├── __init__.py │ │ │ │ ├── bootstrappable.py │ │ │ │ ├── bound.py │ │ │ │ ├── edges.py │ │ │ │ ├── fields.py │ │ │ │ ├── hierarchy.py │ │ │ │ ├── key_digest.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── locks.py │ │ │ │ ├── markers.py │ │ │ │ ├── operations.py │ │ │ │ ├── ownable.py │ │ │ │ ├── principals.py │ │ │ │ ├── tenant_bound.py │ │ │ │ ├── upsertable.py │ │ │ │ └── utils.py │ │ │ └── tables │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── audit.py │ │ │ │ ├── client.py │ │ │ │ ├── group.py │ │ │ │ ├── org.py │ │ │ │ ├── rbac.py │ │ │ │ ├── status.py │ │ │ │ ├── tenant.py │ │ │ │ └── user.py │ │ │ ├── response │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── bind.py │ │ │ ├── decorators.py │ │ │ ├── resolver.py │ │ │ ├── shortcuts.py │ │ │ └── types.py │ │ │ ├── rest │ │ │ └── __init__.py │ │ │ ├── runtime │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── atoms │ │ │ │ ├── __init__.py │ │ │ │ ├── emit │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── paired_post.py │ │ │ │ │ ├── paired_pre.py │ │ │ │ │ └── readtime_alias.py │ │ │ │ ├── out │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── masking.py │ │ │ │ ├── refresh │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── demand.py │ │ │ │ ├── resolve │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── assemble.py │ │ │ │ │ └── paired_gen.py │ │ │ │ ├── response │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── headers_from_payload.py │ │ │ │ │ ├── negotiate.py │ │ │ │ │ ├── negotiation.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── renderer.py │ │ │ │ │ ├── template.py │ │ │ │ │ └── templates.py │ │ │ │ ├── schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collect_in.py │ │ │ │ │ └── collect_out.py │ │ │ │ ├── storage │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── to_stored.py │ │ │ │ └── wire │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build_in.py │ │ │ │ │ ├── build_out.py │ │ │ │ │ ├── dump.py │ │ │ │ │ └── validate_in.py │ │ │ ├── context.py │ │ │ ├── errors │ │ │ │ ├── __init__.py │ │ │ │ ├── converters.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── mappings.py │ │ │ │ └── utils.py │ │ │ ├── events.py │ │ │ ├── executor │ │ │ │ ├── __init__.py │ │ │ │ ├── guards.py │ │ │ │ ├── helpers.py │ │ │ │ ├── invoke.py │ │ │ │ └── types.py │ │ │ ├── kernel.py │ │ │ ├── labels.py │ │ │ ├── opview.py │ │ │ ├── ordering.py │ │ │ ├── system.py │ │ │ └── trace.py │ │ │ ├── schema │ │ │ ├── __init__.py │ │ │ ├── _schema.py │ │ │ ├── builder │ │ │ │ ├── __init__.py │ │ │ │ ├── build_schema.py │ │ │ │ ├── cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── extras.py │ │ │ │ ├── helpers.py │ │ │ │ ├── list_params.py │ │ │ │ └── strip_parent_fields.py │ │ │ ├── collect.py │ │ │ ├── decorators.py │ │ │ ├── get_schema.py │ │ │ ├── schema_spec.py │ │ │ ├── shortcuts.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── session │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── abc.py │ │ │ ├── base.py │ │ │ ├── decorators.py │ │ │ ├── default.py │ │ │ ├── shortcuts.py │ │ │ └── spec.py │ │ │ ├── shortcuts.py │ │ │ ├── specs.py │ │ │ ├── system │ │ │ ├── __init__.py │ │ │ └── diagnostics │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── healthz.py │ │ │ │ ├── hookz.py │ │ │ │ ├── kernelz.py │ │ │ │ ├── methodz.py │ │ │ │ ├── router.py │ │ │ │ └── utils.py │ │ │ ├── table │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _table.py │ │ │ ├── mro_collect.py │ │ │ ├── shortcuts.py │ │ │ └── table_spec.py │ │ │ ├── transport │ │ │ ├── __init__.py │ │ │ ├── jsonrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── dispatcher.py │ │ │ │ ├── helpers.py │ │ │ │ └── models.py │ │ │ └── rest │ │ │ │ ├── __init__.py │ │ │ │ └── aggregator.py │ │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── allow_anon_provider.py │ │ │ ├── authn_abc.py │ │ │ ├── nested_path_provider.py │ │ │ ├── op.py │ │ │ ├── op_config_provider.py │ │ │ ├── op_verb_alias_provider.py │ │ │ ├── request_extras_provider.py │ │ │ ├── response_extras_provider.py │ │ │ └── table_config_provider.py │ ├── tigrbl_auth │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── conftest.py │ │ │ ├── examples │ │ │ │ └── test_readme_usage.py │ │ │ ├── i9n │ │ │ │ ├── test_auth_flows.py │ │ │ │ ├── test_authorization_code_flow.py │ │ │ │ ├── test_authorization_response_types.py │ │ │ │ ├── test_crud_api.py │ │ │ │ ├── test_device_code_flow.py │ │ │ │ ├── test_full_workflow.py │ │ │ │ ├── test_long_lived_worker_flow.py │ │ │ │ ├── test_oidc_endpoints.py │ │ │ │ ├── test_rfc7662.py │ │ │ │ ├── test_rfc8414_metadata.py │ │ │ │ ├── test_rfc8628.py │ │ │ │ ├── test_rfc8693_token_exchange_endpoint.py │ │ │ │ ├── test_service_key_creation.py │ │ │ │ ├── test_service_key_introspection_flow.py │ │ │ │ └── test_token_exchange_flow.py │ │ │ └── unit │ │ │ │ ├── test_adapters.py │ │ │ │ ├── test_auth_code_exchange_pkce.py │ │ │ │ ├── test_authorize_id_token_hashes.py │ │ │ │ ├── test_authorize_response_modes.py │ │ │ │ ├── test_backends.py │ │ │ │ ├── test_bulk_schema_fields.py │ │ │ │ ├── test_crypto.py │ │ │ │ ├── test_engine_initialization.py │ │ │ │ ├── test_fastapi_deps.py │ │ │ │ ├── test_jwks_rotation.py │ │ │ │ ├── test_jwtoken.py │ │ │ │ ├── test_models.py │ │ │ │ ├── test_oidc_authorize_scope_nonce.py │ │ │ │ ├── test_oidc_id_token.py │ │ │ │ ├── test_oidc_id_token_encryption.py │ │ │ │ ├── test_openapi_examples.py │ │ │ │ ├── test_openapi_well_known_endpoints.py │ │ │ │ ├── test_openid_configuration.py │ │ │ │ ├── test_openid_userinfo_endpoint.py │ │ │ │ ├── test_remote_adapter.py │ │ │ │ ├── test_rfc6749_auth_flow_endpoints.py │ │ │ │ ├── test_rfc6749_token_endpoint.py │ │ │ │ ├── test_rfc6749_validators.py │ │ │ │ ├── test_rfc6750_bearer_token.py │ │ │ │ ├── test_rfc7009_token_revocation.py │ │ │ │ ├── test_rfc7515_jws.py │ │ │ │ ├── test_rfc7516_jwe.py │ │ │ │ ├── test_rfc7517_jwk.py │ │ │ │ ├── test_rfc7518_jwa.py │ │ │ │ ├── test_rfc7519_jwt.py │ │ │ │ ├── test_rfc7520_examples.py │ │ │ │ ├── test_rfc7521_assertion_framework.py │ │ │ │ ├── test_rfc7523_jwt_profile.py │ │ │ │ ├── test_rfc7591_client_registration_endpoint.py │ │ │ │ ├── test_rfc7591_dynamic_client_registration.py │ │ │ │ ├── test_rfc7592_client_management_endpoint.py │ │ │ │ ├── test_rfc7592_client_registration_management.py │ │ │ │ ├── test_rfc7636_pkce.py │ │ │ │ ├── test_rfc7638_jwk_thumbprint.py │ │ │ │ ├── test_rfc7662_token_introspection.py │ │ │ │ ├── test_rfc7662_unit.py │ │ │ │ ├── test_rfc7800_proof_of_possession.py │ │ │ │ ├── test_rfc7952_security_event_token.py │ │ │ │ ├── test_rfc8037_eddsa.py │ │ │ │ ├── test_rfc8176_amr.py │ │ │ │ ├── test_rfc8252_native_app_redirects.py │ │ │ │ ├── test_rfc8291_webpush_encryption.py │ │ │ │ ├── test_rfc8414_authorization_server_metadata.py │ │ │ │ ├── test_rfc8523_jwt_client_auth.py │ │ │ │ ├── test_rfc8628_device_authorization.py │ │ │ │ ├── test_rfc8693_token_exchange.py │ │ │ │ ├── test_rfc8705_compliance.py │ │ │ │ ├── test_rfc8707_resource_indicators.py │ │ │ │ ├── test_rfc8725_jwt_best_practices.py │ │ │ │ ├── test_rfc8812_webauthn_algorithms.py │ │ │ │ ├── test_rfc8932_dns_privacy.py │ │ │ │ ├── test_rfc8932_enhanced_metadata.py │ │ │ │ ├── test_rfc9068_jwt_profile.py │ │ │ │ ├── test_rfc9101_jwt_secured_authorization_request.py │ │ │ │ ├── test_rfc9126_pushed_authorization_requests.py │ │ │ │ ├── test_rfc9207_issuer_identification.py │ │ │ │ ├── test_rfc9396_authorization_details.py │ │ │ │ ├── test_rfc9449_dpop.py │ │ │ │ ├── test_runtime_cfg.py │ │ │ │ ├── test_user_register_schema.py │ │ │ │ └── test_well_known_endpoints_behavior.py │ │ └── tigrbl_auth │ │ │ ├── __init__.py │ │ │ ├── adapters │ │ │ ├── __init__.py │ │ │ ├── auth_context.py │ │ │ ├── local_adapter.py │ │ │ └── remote_adapter.py │ │ │ ├── app.py │ │ │ ├── backends.py │ │ │ ├── crypto.py │ │ │ ├── db.py │ │ │ ├── deps │ │ │ ├── __init__.py │ │ │ ├── fastapi.py │ │ │ ├── pydantic.py │ │ │ ├── sqlalchemy.py │ │ │ └── tigrbl.py │ │ │ ├── errors.py │ │ │ ├── fastapi_deps.py │ │ │ ├── jwtoken.py │ │ │ ├── oidc_discovery.py │ │ │ ├── oidc_id_token.py │ │ │ ├── oidc_userinfo.py │ │ │ ├── orm │ │ │ ├── __init__.py │ │ │ ├── api_key.py │ │ │ ├── auth_code.py │ │ │ ├── auth_session.py │ │ │ ├── client.py │ │ │ ├── device_code.py │ │ │ ├── pushed_authorization_request.py │ │ │ ├── revoked_token.py │ │ │ ├── service.py │ │ │ ├── service_key.py │ │ │ ├── tenant.py │ │ │ └── user.py │ │ │ ├── principal_ctx.py │ │ │ ├── rfc │ │ │ ├── __init__.py │ │ │ ├── rfc6749.py │ │ │ ├── rfc6749_token.py │ │ │ ├── rfc6750.py │ │ │ ├── rfc7009.py │ │ │ ├── rfc7515.py │ │ │ ├── rfc7516.py │ │ │ ├── rfc7517.py │ │ │ ├── rfc7518.py │ │ │ ├── rfc7519.py │ │ │ ├── rfc7520.py │ │ │ ├── rfc7521.py │ │ │ ├── rfc7523.py │ │ │ ├── rfc7591.py │ │ │ ├── rfc7592.py │ │ │ ├── rfc7636_pkce.py │ │ │ ├── rfc7638.py │ │ │ ├── rfc7662.py │ │ │ ├── rfc7662_introspection.py │ │ │ ├── rfc7800.py │ │ │ ├── rfc7952.py │ │ │ ├── rfc8037.py │ │ │ ├── rfc8176.py │ │ │ ├── rfc8252.py │ │ │ ├── rfc8291.py │ │ │ ├── rfc8414.py │ │ │ ├── rfc8414_metadata.py │ │ │ ├── rfc8523.py │ │ │ ├── rfc8628.py │ │ │ ├── rfc8693.py │ │ │ ├── rfc8705.py │ │ │ ├── rfc8707.py │ │ │ ├── rfc8725.py │ │ │ ├── rfc8812.py │ │ │ ├── rfc8932.py │ │ │ ├── rfc9068.py │ │ │ ├── rfc9101.py │ │ │ ├── rfc9126.py │ │ │ ├── rfc9207.py │ │ │ ├── rfc9396.py │ │ │ └── rfc9449_dpop.py │ │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── auth_flows.py │ │ │ ├── authz │ │ │ │ ├── __init__.py │ │ │ │ └── oidc.py │ │ │ ├── schemas.py │ │ │ ├── shared.py │ │ │ └── surface.py │ │ │ ├── runtime_cfg.py │ │ │ └── typing.py │ ├── tigrbl_client │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── tests │ │ │ └── unit │ │ │ │ ├── test_422_error_detail.py │ │ │ │ ├── test_process_response_edge_cases.py │ │ │ │ ├── test_tigrbl_async_context.py │ │ │ │ ├── test_tigrbl_async_crud.py │ │ │ │ ├── test_tigrbl_async_rpc.py │ │ │ │ ├── test_tigrbl_crud.py │ │ │ │ ├── test_tigrbl_rpc.py │ │ │ │ ├── tigrbl_client_api_key_test.py │ │ │ │ ├── tigrbl_client_call_params_test.py │ │ │ │ ├── tigrbl_client_context_test.py │ │ │ │ └── tigrbl_client_init_test.py │ │ └── tigrbl_client │ │ │ ├── __init__.py │ │ │ ├── _crud.py │ │ │ ├── _nested_crud.py │ │ │ └── _rpc.py │ └── tigrbl_kms │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── tests │ │ └── unit │ │ │ ├── test_ctx_providers.py │ │ │ ├── test_default_ops.py │ │ │ ├── test_encrypt_decrypt_roundtrip.py │ │ │ ├── test_encrypt_invalid_base64.py │ │ │ ├── test_key_bulk_create.py │ │ │ ├── test_key_create_schema.py │ │ │ ├── test_key_creation_versions.py │ │ │ ├── test_key_default_op_verbs.py │ │ │ ├── test_key_encrypt_decrypt_schema.py │ │ │ ├── test_key_lifecycle.py │ │ │ ├── test_key_read_list.py │ │ │ ├── test_key_rotate.py │ │ │ ├── test_key_version_default_op_verbs.py │ │ │ ├── test_key_wrap_unwrap_schema.py │ │ │ ├── test_model_bindings_before_mount.py │ │ │ ├── test_openapi_schema_examples_presence.py │ │ │ ├── test_openapi_unique_operation_ids.py │ │ │ ├── test_paramiko_integration.py │ │ │ ├── test_resource_names.py │ │ │ ├── test_wrap_unwrap_errors.py │ │ │ └── test_wrap_unwrap_roundtrip.py │ │ └── tigrbl_kms │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── app.py │ │ ├── cli.py │ │ ├── orm │ │ ├── __init__.py │ │ ├── key.py │ │ └── key_version.py │ │ └── utils.py ├── swarmauri │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── callflow.md │ │ ├── citizenship.md │ │ └── outcomes.md │ ├── pyproject.toml │ ├── swarmauri │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── importer.py │ │ ├── interface_registry.py │ │ ├── plugin_citizenship_registry.py │ │ └── plugin_manager.py │ └── tests │ │ ├── performance │ │ ├── test_namespace_performance.py │ │ └── test_plugin_discovery_benchmark.py │ │ ├── test_assert_truth.py │ │ ├── test_performance.py │ │ ├── test_random_registration_performance.py │ │ └── unit │ │ ├── determine_plugin_citizenship_unit_test.py │ │ ├── importer_unit_test.py │ │ ├── interface_registry_unit_test.py │ │ ├── plugin_citizenship_registry_unit_test.py │ │ ├── test_accessibility_toolkit_serialization.py │ │ ├── test_plugin_import_time.py │ │ ├── test_plugin_manager_cache.py │ │ └── test_plugin_manager_paths.py ├── swarmauri_standard │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ ├── swarmauri_standard │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── QAAgent.py │ │ │ ├── RagAgent.py │ │ │ ├── SimpleConversationAgent.py │ │ │ ├── ToolAgent.py │ │ │ └── __init__.py │ │ ├── chains │ │ │ ├── CallableChain.py │ │ │ ├── ChainStep.py │ │ │ ├── ContextChain.py │ │ │ ├── PromptContextChain.py │ │ │ └── __init__.py │ │ ├── chunkers │ │ │ ├── DelimiterBasedChunker.py │ │ │ ├── FixedLengthChunker.py │ │ │ ├── MdSnippetChunker.py │ │ │ ├── SentenceChunker.py │ │ │ ├── SlidingWindowChunker.py │ │ │ └── __init__.py │ │ ├── conversations │ │ │ ├── Conversation.py │ │ │ ├── MaxSizeConversation.py │ │ │ ├── MaxSystemContextConversation.py │ │ │ ├── SessionCacheConversation.py │ │ │ └── __init__.py │ │ ├── dataconnectors │ │ │ ├── GoogleDriveDataConnector.py │ │ │ └── __init__.py │ │ ├── decorators │ │ │ ├── __init__.py │ │ │ ├── deprecate.py │ │ │ ├── maybe_async.py │ │ │ ├── retry_on_status_codes.py │ │ │ └── tool_decorator.py │ │ ├── distances │ │ │ ├── CanberraDistance.py │ │ │ ├── ChebyshevDistance.py │ │ │ ├── ChiSquaredDistance.py │ │ │ ├── CosineDistance.py │ │ │ ├── EuclideanDistance.py │ │ │ ├── HaversineDistance.py │ │ │ ├── JaccardIndexDistance.py │ │ │ ├── LevenshteinDistance.py │ │ │ ├── ManhattanDistance.py │ │ │ ├── SorensenDiceDistance.py │ │ │ ├── SquaredEuclideanDistance.py │ │ │ └── __init__.py │ │ ├── documents │ │ │ ├── Document.py │ │ │ └── __init__.py │ │ ├── embeddings │ │ │ ├── CohereEmbedding.py │ │ │ ├── GeminiEmbedding.py │ │ │ ├── MistralEmbedding.py │ │ │ ├── OpenAIEmbedding.py │ │ │ ├── TfidfEmbedding.py │ │ │ ├── VoyageEmbedding.py │ │ │ └── __init__.py │ │ ├── evaluator_pools │ │ │ ├── EvaluatorPool.py │ │ │ └── __init__.py │ │ ├── evaluator_results │ │ │ ├── EvalResult.py │ │ │ └── __init__.py │ │ ├── exceptions │ │ │ ├── IndexErrorWithContext.py │ │ │ └── __init__.py │ │ ├── factories │ │ │ ├── AgentFactory.py │ │ │ ├── Factory.py │ │ │ └── __init__.py │ │ ├── image_gens │ │ │ ├── BlackForestImgGenModel.py │ │ │ ├── DeepInfraImgGenModel.py │ │ │ ├── FalAIImgGenModel.py │ │ │ ├── HyperbolicImgGenModel.py │ │ │ ├── OpenAIImgGenModel.py │ │ │ └── __init__.py │ │ ├── inner_products │ │ │ ├── EuclideanInnerProduct.py │ │ │ ├── FrobeniusComplexInnerProduct.py │ │ │ ├── FrobeniusRealInnerProduct.py │ │ │ ├── HermitianInnerProduct.py │ │ │ ├── RKHSInnerProduct.py │ │ │ ├── SobolevH1InnerProduct.py │ │ │ ├── TraceFormWeightedInnerProduct.py │ │ │ ├── WeightedL2InnerProduct.py │ │ │ └── __init__.py │ │ ├── key_providers │ │ │ ├── InMemoryKeyProvider.py │ │ │ └── __init__.py │ │ ├── llms │ │ │ ├── AI21StudioModel.py │ │ │ ├── AnthropicModel.py │ │ │ ├── AnthropicToolModel.py │ │ │ ├── CerebrasModel.py │ │ │ ├── CohereModel.py │ │ │ ├── CohereToolModel.py │ │ │ ├── DeepInfraModel.py │ │ │ ├── DeepSeekModel.py │ │ │ ├── FalAIVisionModel.py │ │ │ ├── GeminiProModel.py │ │ │ ├── GeminiToolModel.py │ │ │ ├── GroqAIAudio.py │ │ │ ├── GroqModel.py │ │ │ ├── GroqToolModel.py │ │ │ ├── GroqVisionModel.py │ │ │ ├── HyperbolicAudioTTS.py │ │ │ ├── HyperbolicModel.py │ │ │ ├── HyperbolicVisionModel.py │ │ │ ├── LLM.py │ │ │ ├── LlamaCppModel.py │ │ │ ├── MistralModel.py │ │ │ ├── MistralToolModel.py │ │ │ ├── OpenAIAudio.py │ │ │ ├── OpenAIAudioTTS.py │ │ │ ├── OpenAIModel.py │ │ │ ├── OpenAIReasonModel.py │ │ │ ├── OpenAIToolModel.py │ │ │ ├── PerplexityModel.py │ │ │ ├── PlayHTModel.py │ │ │ ├── WhisperLargeModel.py │ │ │ └── __init__.py │ │ ├── logger_formatters │ │ │ ├── BorderFormatter.py │ │ │ ├── ColorFormatter.py │ │ │ ├── ContextualFormatter.py │ │ │ ├── HTMLFormatter.py │ │ │ ├── IndentedFormatter.py │ │ │ ├── JSONFormatter.py │ │ │ ├── KeyValueFormatter.py │ │ │ ├── LoggerFormatter.py │ │ │ ├── MultilineFormatter.py │ │ │ └── __init__.py │ │ ├── logger_handlers │ │ │ ├── EmailLoggingHandler.py │ │ │ ├── FileLoggingHandler.py │ │ │ ├── HTTPLoggingHandler.py │ │ │ ├── HTTPSLoggingHandler.py │ │ │ ├── MemoryLoggingHandler.py │ │ │ ├── NullLoggingHandler.py │ │ │ ├── QueueLoggingHandler.py │ │ │ ├── RichLoggingHandler.py │ │ │ ├── RotatingFileLoggingHandler.py │ │ │ ├── StreamLoggingHandler.py │ │ │ ├── SysLogLoggingHandler.py │ │ │ ├── TimedRotatingFileLoggingHandler.py │ │ │ └── __init__.py │ │ ├── loggers │ │ │ ├── Logger.py │ │ │ └── __init__.py │ │ ├── measurements │ │ │ ├── CompletenessMeasurement.py │ │ │ ├── DistinctivenessMeasurement.py │ │ │ ├── FirstImpressionMeasurement.py │ │ │ ├── MeanMeasurement.py │ │ │ ├── MiscMeasurement.py │ │ │ ├── MissingnessMeasurement.py │ │ │ ├── PatternMatchingMeasurement.py │ │ │ ├── RatioOfSumsMeasurement.py │ │ │ ├── StaticMeasurement.py │ │ │ ├── UniquenessMeasurement.py │ │ │ ├── ZeroMeasurement.py │ │ │ └── __init__.py │ │ ├── messages │ │ │ ├── AgentMessage.py │ │ │ ├── FunctionMessage.py │ │ │ ├── HumanMessage.py │ │ │ ├── SystemMessage.py │ │ │ └── __init__.py │ │ ├── metrics │ │ │ ├── AbsoluteValueMetric.py │ │ │ ├── DiscreteMetric.py │ │ │ ├── EuclideanMetric.py │ │ │ ├── FrobeniusMetric.py │ │ │ ├── HammingMetric.py │ │ │ ├── LevenshteinMetric.py │ │ │ ├── LpMetric.py │ │ │ ├── SobolevMetric.py │ │ │ ├── SupremumMetric.py │ │ │ └── __init__.py │ │ ├── norms │ │ │ ├── GeneralLpNorm.py │ │ │ ├── L1ManhattanNorm.py │ │ │ ├── L2EuclideanNorm.py │ │ │ ├── LInfNorm.py │ │ │ ├── SobolevNorm.py │ │ │ ├── SupremumComplexNorm.py │ │ │ └── __init__.py │ │ ├── parsers │ │ │ ├── CSVParser.py │ │ │ ├── HTMLTagStripParser.py │ │ │ ├── Md2HtmlParser.py │ │ │ ├── OpenAPISpecParser.py │ │ │ ├── PhoneNumberExtractorParser.py │ │ │ ├── PythonParser.py │ │ │ ├── RegExParser.py │ │ │ ├── URLExtractorParser.py │ │ │ ├── XMLParser.py │ │ │ └── __init__.py │ │ ├── pipelines │ │ │ ├── Pipeline.py │ │ │ └── __init__.py │ │ ├── programs │ │ │ ├── Program.py │ │ │ └── __init__.py │ │ ├── prompt_templates │ │ │ ├── PromptTemplate.py │ │ │ └── __init__.py │ │ ├── prompts │ │ │ ├── Prompt.py │ │ │ ├── PromptGenerator.py │ │ │ ├── PromptMatrix.py │ │ │ └── __init__.py │ │ ├── pseudometrics │ │ │ ├── EquivalenceRelationPseudometric.py │ │ │ ├── FunctionDifferencePseudometric.py │ │ │ ├── LpPseudometric.py │ │ │ ├── ProjectionPseudometricR2.py │ │ │ ├── ZeroPseudometric.py │ │ │ └── __init__.py │ │ ├── rate_limits │ │ │ ├── TokenBucketRateLimit.py │ │ │ └── __init__.py │ │ ├── schema_converters │ │ │ ├── AnthropicSchemaConverter.py │ │ │ ├── CohereSchemaConverter.py │ │ │ ├── GeminiSchemaConverter.py │ │ │ ├── GroqSchemaConverter.py │ │ │ ├── MistralSchemaConverter.py │ │ │ ├── OpenAISchemaConverter.py │ │ │ ├── ShuttleAISchemaConverter.py │ │ │ └── __init__.py │ │ ├── seminorms │ │ │ ├── CoordinateProjectionSeminorm.py │ │ │ ├── LpSeminorm.py │ │ │ ├── PartialSumSeminorm.py │ │ │ ├── PointEvaluationSeminorm.py │ │ │ ├── TraceSeminorm.py │ │ │ ├── ZeroSeminorm.py │ │ │ └── __init__.py │ │ ├── service_registries │ │ │ ├── ServiceRegistry.py │ │ │ └── __init__.py │ │ ├── signing │ │ │ └── __init__.py │ │ ├── similarities │ │ │ ├── BhattacharyyaCoefficientSimilarity.py │ │ │ ├── BrayCurtisSimilarity.py │ │ │ ├── CosineSimilarity.py │ │ │ ├── DiceSimilarity.py │ │ │ ├── GaussianRBFSimilarity.py │ │ │ ├── HellingerAffinitySimilarity.py │ │ │ ├── JaccardIndexSimilarity.py │ │ │ ├── OverlapCoefficientSimilarity.py │ │ │ ├── TanimotoSimilarity.py │ │ │ ├── TriangleCosineSimilarity.py │ │ │ └── __init__.py │ │ ├── state │ │ │ ├── DictState.py │ │ │ └── __init__.py │ │ ├── stt │ │ │ ├── GroqSTT.py │ │ │ ├── OpenaiSTT.py │ │ │ ├── WhisperLargeSTT.py │ │ │ └── __init__.py │ │ ├── swarms │ │ │ ├── Swarm.py │ │ │ └── __init__.py │ │ ├── task_mgmt_strategies │ │ │ ├── RoundRobinStrategy.py │ │ │ └── __init__.py │ │ ├── tool_llms │ │ │ ├── AnthropicToolModel.py │ │ │ ├── CohereToolModel.py │ │ │ ├── DeepInfraToolModel.py │ │ │ ├── GeminiToolModel.py │ │ │ ├── GroqToolModel.py │ │ │ ├── MistralToolModel.py │ │ │ ├── OpenAIToolModel.py │ │ │ ├── ToolLLM.py │ │ │ └── __init__.py │ │ ├── toolkits │ │ │ ├── AccessibilityToolkit.py │ │ │ ├── Toolkit.py │ │ │ └── __init__.py │ │ ├── tools │ │ │ ├── AdditionTool.py │ │ │ ├── AutomatedReadabilityIndexTool.py │ │ │ ├── CalculatorTool.py │ │ │ ├── CodeExtractorTool.py │ │ │ ├── CodeInterpreterTool.py │ │ │ ├── ColemanLiauIndexTool.py │ │ │ ├── FleschKincaidTool.py │ │ │ ├── FleschReadingEaseTool.py │ │ │ ├── GunningFogTool.py │ │ │ ├── ImportMemoryModuleTool.py │ │ │ ├── JSONRequestsTool.py │ │ │ ├── Parameter.py │ │ │ ├── RequestsTool.py │ │ │ ├── SubprocessTool.py │ │ │ ├── TemperatureConverterTool.py │ │ │ ├── TestTool.py │ │ │ ├── WeatherTool.py │ │ │ └── __init__.py │ │ ├── tracing │ │ │ ├── CallableTracer.py │ │ │ ├── ChainTracer.py │ │ │ ├── SimpleTraceContext.py │ │ │ ├── SimpleTracer.py │ │ │ ├── TracedVariable.py │ │ │ ├── VariableTracer.py │ │ │ └── __init__.py │ │ ├── transports │ │ │ ├── PubSubTransport.py │ │ │ └── __init__.py │ │ ├── tts │ │ │ ├── HyperbolicTTS.py │ │ │ ├── OpenaiTTS.py │ │ │ ├── PlayhtTTS.py │ │ │ └── __init__.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── _get_subclasses.py │ │ │ ├── _lazy_import.py │ │ │ ├── apply_metaclass.py │ │ │ ├── base64_encoder.py │ │ │ ├── base64_to_file_path.py │ │ │ ├── base64_to_img_url.py │ │ │ ├── base64_to_in_memory_img.py │ │ │ ├── decorate.py │ │ │ ├── duration_manager.py │ │ │ ├── file_path_to_base64.py │ │ │ ├── file_path_to_img_url.py │ │ │ ├── file_path_to_in_memory_img.py │ │ │ ├── get_class_hash.py │ │ │ ├── img_url_to_base64.py │ │ │ ├── img_url_to_file_path.py │ │ │ ├── img_url_to_in_memory_img.py │ │ │ ├── in_memory_img_to_base64.py │ │ │ ├── in_memory_img_to_file_path.py │ │ │ ├── in_memory_img_to_img_url.py │ │ │ ├── json_validator.py │ │ │ ├── load_documents_from_folder.py │ │ │ ├── load_documents_from_json.py │ │ │ ├── memoize.py │ │ │ ├── method_signature_extractor_decorator.py │ │ │ ├── print_notebook_metadata.py │ │ │ ├── retry_decorator.py │ │ │ ├── sql_log.py │ │ │ ├── timeout_wrapper.py │ │ │ └── tool_decorator.py │ │ ├── vector_stores │ │ │ ├── TfidfVectorStore.py │ │ │ └── __init__.py │ │ ├── vectors │ │ │ ├── Vector.py │ │ │ └── __init__.py │ │ └── vlms │ │ │ ├── FalVLM.py │ │ │ ├── GroqVLM.py │ │ │ ├── HyperbolicVLM.py │ │ │ └── __init__.py │ └── tests │ │ ├── README.md │ │ ├── i9n │ │ ├── agents │ │ │ └── RagAgent_i9n_test.py │ │ └── llms │ │ │ ├── AI21StudioModel_i9n_test.py │ │ │ ├── AnthropicModel_i9n_test.py │ │ │ ├── CohereModel_i9n_test.py │ │ │ ├── DeepInfraModel_i9n_test.py │ │ │ ├── DeepSeekModel_i9n_test.py │ │ │ ├── GroqModel_i9n_test.py │ │ │ └── OpenAIModel_i9n_test.py │ │ ├── r8n │ │ └── llms │ │ │ ├── AnthropicToolModel_r8n_test.py │ │ │ ├── CohereToolModel_r8n_test.py │ │ │ ├── GeminiToolModel_r8n_test.py │ │ │ ├── GroqToolModel_r8n_test.py │ │ │ ├── MistralToolModel_r8n_test.py │ │ │ └── OpenAIToolModel_r8n_test.py │ │ ├── static │ │ ├── cityscape.png │ │ ├── credentials.json │ │ ├── generated_image.png │ │ ├── generated_image.png 12-20-10-721 PM.png │ │ ├── generated_image_0.png │ │ ├── generated_image_0.png 12-19-54-478 PM.png │ │ ├── generated_image_1.png │ │ ├── generated_image_1.png 12-19-48-249 PM.png │ │ ├── generated_image_2.png │ │ ├── generated_image_2.png 12-20-03-172 PM.png │ │ ├── hyperbolic_test2.mp3 │ │ ├── hyperbolic_test3.mp3 │ │ ├── hyperbolic_test_tts.mp3 │ │ ├── sunset.png │ │ ├── sunset.png 9-18-18-261 AM.png │ │ ├── test.mp3 │ │ ├── test_fr.mp3 │ │ └── test_tts.mp3 │ │ ├── unit │ │ ├── agents │ │ │ ├── QAAgent_unit_test.py │ │ │ ├── RagAgent_unit_test.py │ │ │ ├── SimpleConversationAgent_unit_test.py │ │ │ └── ToolAgent_unit_test.py │ │ ├── chains │ │ │ ├── ChainStep_unit_test.py │ │ │ └── ContextChain_unit_test.py │ │ ├── chunkers │ │ │ ├── DelimiterBasedChunker_unit_test.py │ │ │ ├── FixedLengthChunker_unit_test.py │ │ │ ├── MdSnippetChunker_unit_test.py │ │ │ ├── SentenceChunker_unit_test.py │ │ │ └── SlidingWindowChunker_unit_test.py │ │ ├── conversations │ │ │ ├── Conversation_unit_test.py │ │ │ ├── MaxSizeConversation_unit_test.py │ │ │ ├── MaxSystemContextConversation_unit_test.py │ │ │ └── SessionCacheConversation_unit_test.py │ │ ├── dataconnectors │ │ │ └── GoogleDriveDataConnector_unit_test.py │ │ ├── distances │ │ │ ├── CanberraDistance_unit_test.py │ │ │ ├── ChebyShevDistance_unit_test.py │ │ │ ├── ChiSquaredDistance_unit_test.py │ │ │ ├── CosineDistance_unit_test.py │ │ │ ├── EuclideanDistance_unit_test.py │ │ │ ├── HaversineDistance_unit_test.py │ │ │ ├── JaccardIndexDistance_unit_test.py │ │ │ ├── LevenshteinDistance_unit_test.py │ │ │ ├── ManhattanDistance_unit_test.py │ │ │ ├── SorensenDiceDistance_unit_test.py │ │ │ └── SquaredEuclideanDistance_unit_test.py │ │ ├── documents │ │ │ └── Document_unit_test.py │ │ ├── embeddings │ │ │ ├── CohereEmbedding_unit_test.py │ │ │ ├── GeminiEmbedding_unit_test.py │ │ │ ├── MistralEmbedding_unit_test.py │ │ │ ├── OpenAIEmbedding_unit_test.py │ │ │ ├── TfidfEmbedding_unit_test.py │ │ │ └── VoyageEmbedding_unit_test.py │ │ ├── evaluator_pools │ │ │ └── EvaluatorPool_unit_test.py │ │ ├── evaluator_results │ │ │ └── EvalResult_unit_test.py │ │ ├── factories │ │ │ ├── AgentFactory_unit_test.py │ │ │ └── Factory_unit_test.py │ │ ├── image_gens │ │ │ ├── BlackForestImgGenModel_unit_test.py │ │ │ ├── DeepInfraImgGenModel_unit_test.py │ │ │ ├── FalAIImgGenModel_unit_test.py │ │ │ ├── HyperbolicImgGenModel_unit_test.py │ │ │ └── OpenAIImgGenModel_unit_tesst.py │ │ ├── inner_products │ │ │ ├── EuclideanInnerProduct_unit_test.py │ │ │ ├── FrobeniusComplexInnerProduct_unit_test.py │ │ │ ├── FrobeniusRealInnerProduct_unit_test.py │ │ │ ├── HermitianInnerProduct_unit_test.py │ │ │ ├── RKHSInnerProduct_unit_test.py │ │ │ ├── SobolevH1InnerProduct_unit_test.py │ │ │ ├── TraceFormWeightedInnerProduct_unit_test.py │ │ │ └── WeightedL2InnerProduct_unit_test.py │ │ ├── key_providers │ │ │ └── test_inmemory_provider_unit.py │ │ ├── llms │ │ │ ├── AI21StudioModel_unit_test.py │ │ │ ├── AnthropicModel_unit_test.py │ │ │ ├── CerebrasModel_unit_test.py │ │ │ ├── CohereModel_unit_test.py │ │ │ ├── DeepInfraModel_unit_test.py │ │ │ ├── DeepSeekModel_unit_test.py │ │ │ ├── FalAIVisionModel_unit_test.py │ │ │ ├── GeminiProModel_unit_test.py │ │ │ ├── GroqAIAudio_unit_test.py │ │ │ ├── GroqModel_unit_test.py │ │ │ ├── GroqVisionModel_unit_test.py │ │ │ ├── HyperbolicAudioTTS_unit_test.py │ │ │ ├── HyperbolicModel_unit_test.py │ │ │ ├── HyperbolicVisionModel_unit_test.py │ │ │ ├── LLM_unit_test.py │ │ │ ├── MistralModel_unit_test.py │ │ │ ├── OpenAIAudioTTS_unit_test.py │ │ │ ├── OpenAIAudio_unit_test.py │ │ │ ├── OpenAIModel_unit_test.py │ │ │ ├── OpenAIReasonModel_unit_test.py │ │ │ ├── PerplexityModel_unit_test.py │ │ │ ├── PlayHTModel_unit_test.py │ │ │ └── WhisperLargeModel_unit_test.py │ │ ├── logger_formatters │ │ │ ├── BorderFormatter_unit_test.py │ │ │ ├── ColorFormatter_unit_test.py │ │ │ ├── ContextualFormatter_unit_test.py │ │ │ ├── HTMLFormatter_unit_test.py │ │ │ ├── IndentedFormatter_unit_test.py │ │ │ ├── JSONFormatter_unit_test.py │ │ │ ├── KeyValueFormatter_unit_test.py │ │ │ ├── LoggerFormatter_unit_test.py │ │ │ └── MultilineFormatter_unit_test.py │ │ ├── logger_handlers │ │ │ ├── EmailLoggingHandler_unit_test.py │ │ │ ├── FileLoggingHandler_unit_test.py │ │ │ ├── HTTPLoggingHandler_unit_test.py │ │ │ ├── HTTPSLoggingHandler_unit_test.py │ │ │ ├── MemoryLoggingHandler_unit_test.py │ │ │ ├── NullLoggingHandler_unit_test.py │ │ │ ├── QueueLoggingHandler_unit_test.py │ │ │ ├── RichLoggingHandler_unit_test.py │ │ │ ├── RotatingFileLoggingHandler_unit_test.py │ │ │ ├── StreamLoggingHandler_unit_test.py │ │ │ ├── SysLogLoggingHandler_unit_test.py │ │ │ └── TimedRotatingFileLoggingHandler_unit_test.py │ │ ├── loggers │ │ │ └── Logger_unit_test.py │ │ ├── measurements │ │ │ ├── CompletenessMeasurement_unit_test.py │ │ │ ├── DistinctivenessMeasurement_unit_test.py │ │ │ ├── FirstImpressionMeasurement_unit_test.py │ │ │ ├── MeanMeasurement_unit_test.py │ │ │ ├── MiscMeasurement_unit_test.py │ │ │ ├── MissingnessMeasurement_unit_test.py │ │ │ ├── PatternMatchingMeasurement_unit_test.py │ │ │ ├── RatioOfSumsMeasurement_unit_test.py │ │ │ ├── StaticMeasurement_unit_test.py │ │ │ ├── UniquenessMeasurement_unit_test.py │ │ │ └── ZeroMeasurement_unit_test.py │ │ ├── messages │ │ │ ├── AgentMessage_unit_test.py │ │ │ ├── FunctionMessage_unit_test.py │ │ │ ├── HumanMessage_unit_test.py │ │ │ └── SystemMessage_unit_test.py │ │ ├── metrics │ │ │ ├── AbsoluteValueMetric_unit_test.py │ │ │ ├── DiscreteMetric_unit_test.py │ │ │ ├── EuclideanMetric_unit_test.py │ │ │ ├── FrobeniusMetric_unit_test.py │ │ │ ├── HammingMetric_unit_test.py │ │ │ ├── LevenshteinMetric_unit_test.py │ │ │ ├── LpMetric_unit_test.py │ │ │ ├── SobolevMetric_unit_test.py │ │ │ └── SupremumMetric_unit_test.py │ │ ├── norms │ │ │ ├── GeneralLpNorm_unit_test.py │ │ │ ├── L1ManhattanNorm_unit_test.py │ │ │ ├── L2EuclideanNorm_unit_test.py │ │ │ ├── LInfNorm_unit_test.py │ │ │ ├── SobolevNorm_unit_test.py │ │ │ └── SupremumComplexNorm_unit_test.py │ │ ├── parsers │ │ │ ├── HTMLTagStripParser_unit_test.py │ │ │ ├── Md2HtmlParser_unit_test.py │ │ │ ├── OpenAPISpecParser_unit_test.py │ │ │ ├── PhoneNumberExtractorParser_unit_test.py │ │ │ ├── PythonParser_unit_test.py │ │ │ ├── RegExParser_unit_test.py │ │ │ ├── URLExtractorParser_unit_test.py │ │ │ └── XMLParser_unit_test.py │ │ ├── pipelines │ │ │ └── Pipeline_unit_test.py │ │ ├── programs │ │ │ └── Program_unit_test.py │ │ ├── prompt_templates │ │ │ └── PromptTemplate_unit_test.py │ │ ├── prompts │ │ │ ├── PromptGenerator_unit_test.py │ │ │ ├── PromptMatrix_unit_test.py │ │ │ └── Prompt_unit_test.py │ │ ├── pseudometrics │ │ │ ├── EquivalenceRelationPseudometric_unit_test.py │ │ │ ├── FunctionDifferencePseudometric_unit_test.py │ │ │ ├── LpPseudometric_unit_test.py │ │ │ ├── ProjectionPseudometricR2_unit_test.py │ │ │ └── ZeroPseudometric_unit_test.py │ │ ├── rate_limits │ │ │ └── TokenBucketRateLimit_unit_test.py │ │ ├── schema_converters │ │ │ ├── AnthropicSchemaConverter_unit_test.py │ │ │ ├── CohereSchemaConverter_unit_test.py │ │ │ ├── GeminiSchemaConverter_unit_test.py │ │ │ ├── GroqSchemaConverter_unit_test.py │ │ │ ├── MistralSchemaConverter_unit_test.py │ │ │ ├── OpenAISchemaConverter_unit_test.py │ │ │ └── ShuttleAISchemaConverter_unit_test.py │ │ ├── seminorms │ │ │ ├── CoordinateProjectionSeminorm_unit_test.py │ │ │ ├── LpSeminorm_unit_test.py │ │ │ ├── PartialSumSeminorm_unit_test.py │ │ │ ├── PointEvaluationSeminorm_unit_test.py │ │ │ ├── TraceSeminorm_unit_test.py │ │ │ └── ZeroSeminorm_unit_test.py │ │ ├── service_registries │ │ │ └── ServiceRegistry_unit_test.py │ │ ├── similarities │ │ │ ├── BhattacharyyaCoefficientSimilarity_unit_test.py │ │ │ ├── BrayCurtisSimilarity_unit_test.py │ │ │ ├── CosineSimilarity_unit_test.py │ │ │ ├── DiceSimilarity_unit_test.py │ │ │ ├── GaussianRBFSimilarity_unit_test.py │ │ │ ├── HellingerAffinitySimilarity_unit_test.py │ │ │ ├── JaccardIndexSimilarity_unit_test.py │ │ │ ├── OverlapCoefficientSimilarity_unit_test.py │ │ │ ├── TanimotoSimilarity_unit_test.py │ │ │ └── TriangleCosineSimilarity_unit_test.py │ │ ├── state │ │ │ └── DictState_unit_test.py │ │ ├── stt │ │ │ ├── GroqSTT_unit_test.py │ │ │ ├── OpenaiSTT_unit_test.py │ │ │ └── WhisperLargeSTT_unit_test.py │ │ ├── swarms │ │ │ └── Swarm_unit_test.py │ │ ├── task_mgmt_strategies │ │ │ └── RoundRobinStrategy_unit_test.py │ │ ├── tool_llms │ │ │ ├── AnthropicToolModel_unit_test.py │ │ │ ├── CohereToolModel_unit_test.py │ │ │ ├── DeepInfraToolModel_unit_test.py │ │ │ ├── GeminiToolModel_unit_test.py │ │ │ ├── GroqToolModel_unit_test.py │ │ │ ├── MistralToolModel_unit_test.py │ │ │ ├── OpenAIToolModel_unit_test.py │ │ │ └── ToolLLM_unit_test.py │ │ ├── toolkits │ │ │ ├── AccessibilityToolkit_unit_test.py │ │ │ └── Toolkit_unit_test.py │ │ ├── tools │ │ │ ├── AdditionTool_unit_test.py │ │ │ ├── AutomatedReadabilityIndex_unit_test.py │ │ │ ├── CalculatorTool_unit_test.py │ │ │ ├── CodeExtractorTool_unit_test.py │ │ │ ├── CodeInterpreterTool_unit_test.py │ │ │ ├── ColemanLiauIndex_unit_test.py │ │ │ ├── FleschKincaid_unit_test.py │ │ │ ├── FleschReadingEaseTool_unit_test.py │ │ │ ├── GunningFogTool_unit_test.py │ │ │ ├── ImportMemoryModuleTool_unit_test.py │ │ │ ├── JSONRequestsTool_unit_test.py │ │ │ ├── Parameter_unit_test.py │ │ │ ├── SubprocessTool_unit_test.py │ │ │ ├── TemperatureConverterTool_unit_test.py │ │ │ ├── TestTool_unit_test.py │ │ │ └── WeatherTool_unit_test.py │ │ ├── transports │ │ │ └── PubSubTransport_unit_test.py │ │ ├── tts │ │ │ ├── HyperbolicTTS_unit_test.py │ │ │ ├── OpenaiTTS_unit_test.py │ │ │ └── PlayhtTTS_unit_test.py │ │ ├── typing │ │ │ └── typing_unit_test.py │ │ ├── utils │ │ │ ├── apply_metaclass_test.py │ │ │ ├── base64_to_file_path_test.py │ │ │ ├── base64_to_img_url_test.py │ │ │ ├── base64_to_in_memory_img_test.py │ │ │ ├── decorate_test.py │ │ │ ├── file_path_to_base64_test.py │ │ │ ├── file_path_to_img_url_test.py │ │ │ ├── file_path_to_in_memory_img_test.py │ │ │ ├── get_class_hash_test.py │ │ │ ├── img_url_to_base64_test.py │ │ │ ├── img_url_to_file_path_test.py │ │ │ ├── img_url_to_in_memory_img_test.py │ │ │ ├── in_memory_img_to_base64_test.py │ │ │ ├── in_memory_img_to_file_path_test.py │ │ │ ├── in_memory_img_to_img_url_test.py │ │ │ ├── json_validator_test.py │ │ │ ├── load_documents_from_json_test.py │ │ │ ├── memoize_test.py │ │ │ ├── method_signature_extractor_decorator_test.py │ │ │ ├── print_notebook_metadata_test.py │ │ │ ├── retry_decorator_test.py │ │ │ ├── tool_decorator_additional_test.py │ │ │ └── tool_decorator_test.py │ │ ├── vector_stores │ │ │ └── TfidfVectorStore_unit_test.py │ │ ├── vectors │ │ │ └── Vector_unit_test.py │ │ └── vlms │ │ │ ├── FalVLM_unit_test.py │ │ │ ├── GroqVLM_unit_test.py │ │ │ └── HyperbolicVLM_unit_test.py │ │ └── xfail │ │ └── llms │ │ ├── AnthropicToolModel_xfail_test.py │ │ ├── CohereModel_xfail_test.py │ │ ├── DeepInfraModel_xfail_test.py │ │ ├── GeminiProModel_xfail_test.py │ │ ├── GroqModel_xfail_test.py │ │ ├── GroqToolModel_xfail_test.py │ │ ├── MistralModel_xfail_test.py │ │ ├── MistralToolModel_xfail_test.py │ │ └── PerplexityModel_xfail_test.py └── typing │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ ├── swarmauri_typing │ ├── Intersection.py │ ├── UnionFactory.py │ └── __init__.py │ └── tests │ ├── i9n │ └── test_swarmauri_typing__init__.py │ └── unit │ ├── test_Intersection.py │ ├── test_MetadataRepr.py │ └── test_UnionFactory.py └── scripts ├── add_missing_badges.py ├── add_perf_marker.py ├── bump_pyproject_version.py ├── classify_json_results.py ├── classify_results.py ├── convert_to_uv.py ├── create_component.py ├── create_json_schema.py ├── extract_path_dependencies.py ├── flatten_files.py ├── generate_extras_schemas.py ├── license_scan.py ├── list_site_package_sizes.py ├── manage_issues.py ├── manage_packages.py ├── rag_issue_manager.py ├── run_all_tests.py ├── total_site_packages_size.py ├── update_entrypoints.py ├── update_imports.py ├── update_namespace.py ├── update_pyproject_version.py ├── update_readme_hits.py ├── update_toml.py ├── update_toml_branches.py └── verify_package_metadata.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cobycloud 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/ISSUE_TEMPLATE/03_bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_design_feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/ISSUE_TEMPLATE/04_design_feedback.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/06_feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/ISSUE_TEMPLATE/06_feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/07_feature_research.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/ISSUE_TEMPLATE/07_feature_research.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_technical_debt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/ISSUE_TEMPLATE/10_technical_debt.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docs-apps-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/docs-apps-deployment.yaml -------------------------------------------------------------------------------- /.github/workflows/docs-infra-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/docs-infra-deployment.yaml -------------------------------------------------------------------------------- /.github/workflows/license-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/license-scan.yml -------------------------------------------------------------------------------- /.github/workflows/package-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/package-metadata.yaml -------------------------------------------------------------------------------- /.github/workflows/peagen_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/peagen_ci.yml -------------------------------------------------------------------------------- /.github/workflows/peagen_infra_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/peagen_infra_ci.yaml -------------------------------------------------------------------------------- /.github/workflows/v0.7.0_matrix_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.github/workflows/v0.7.0_matrix_test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.peagen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/.peagen.toml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/README.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /assets/swarmauri.brand.theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/swarmauri.brand.theme.svg -------------------------------------------------------------------------------- /assets/swarmauri_brand_frag_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/swarmauri_brand_frag_dark.png -------------------------------------------------------------------------------- /assets/swarmauri_brand_frag_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/swarmauri_brand_frag_light.png -------------------------------------------------------------------------------- /assets/swarmauri_emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/swarmauri_emblem.png -------------------------------------------------------------------------------- /assets/swarmauri_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/swarmauri_icon_small.png -------------------------------------------------------------------------------- /assets/tigrbl.brand.theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl.brand.theme.svg -------------------------------------------------------------------------------- /assets/tigrbl_favico_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_favico_1024x1024.png -------------------------------------------------------------------------------- /assets/tigrbl_favico_1024x1024_light_stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_favico_1024x1024_light_stroke.png -------------------------------------------------------------------------------- /assets/tigrbl_full_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_full_logo.png -------------------------------------------------------------------------------- /assets/tigrbl_full_logo_sp_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_full_logo_sp_inv.png -------------------------------------------------------------------------------- /assets/tigrbl_full_logo_trnsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_full_logo_trnsp.png -------------------------------------------------------------------------------- /assets/tigrbl_type_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/assets/tigrbl_type_logo.png -------------------------------------------------------------------------------- /infra/docs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/docker-compose.yaml -------------------------------------------------------------------------------- /infra/docs/peagen/README.md: -------------------------------------------------------------------------------- 1 | # Placeholder for peagen docs 2 | -------------------------------------------------------------------------------- /infra/docs/peagen/api_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/api_manifest.yaml -------------------------------------------------------------------------------- /infra/docs/peagen/docs/assets/peagen_logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/docs/peagen/docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/docs/guide/index.md -------------------------------------------------------------------------------- /infra/docs/peagen/docs/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/docs/home/index.md -------------------------------------------------------------------------------- /infra/docs/peagen/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/docs/index.md -------------------------------------------------------------------------------- /infra/docs/peagen/docs/news/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/docs/news/index.md -------------------------------------------------------------------------------- /infra/docs/peagen/mkdocs.insiders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/mkdocs.insiders.yaml -------------------------------------------------------------------------------- /infra/docs/peagen/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/peagen/mkdocs.yml -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/api_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/api_manifest.yaml -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/api/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/api/concepts.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/blog/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/guide/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/guide/faq.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/guide/index.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/guide/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/guide/usage.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/home/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/home/help.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/index.md -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/news/.authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/docs/news/.authors.yml -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/news/index.md: -------------------------------------------------------------------------------- 1 | # Blog 2 | 3 | -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/docs/people/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/mkdocs.insiders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/mkdocs.insiders.yaml -------------------------------------------------------------------------------- /infra/docs/swarmauri-sdk/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/swarmauri-sdk/mkdocs.yml -------------------------------------------------------------------------------- /infra/docs/tigrbl/README.md: -------------------------------------------------------------------------------- 1 | # Placeholder for tigrbl docs 2 | -------------------------------------------------------------------------------- /infra/docs/tigrbl/api_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/api_manifest.yaml -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/assets/tigrbl_logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/docs/guide/index.md -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/docs/home/index.md -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/docs/index.md -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/news/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/docs/news/index.md -------------------------------------------------------------------------------- /infra/docs/tigrbl/docs/tigrbl_auth_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/docs/tigrbl_auth_overview.md -------------------------------------------------------------------------------- /infra/docs/tigrbl/mkdocs.insiders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/mkdocs.insiders.yaml -------------------------------------------------------------------------------- /infra/docs/tigrbl/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/docs/tigrbl/mkdocs.yml -------------------------------------------------------------------------------- /infra/peagen/.gw.peagen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/.gw.peagen.toml -------------------------------------------------------------------------------- /infra/peagen/.peagen/samplers/openai-gpt4o.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/.peagen/samplers/openai-gpt4o.yml -------------------------------------------------------------------------------- /infra/peagen/.worker.peagen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/.worker.peagen.toml -------------------------------------------------------------------------------- /infra/peagen/Dockerfile.gw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/Dockerfile.gw -------------------------------------------------------------------------------- /infra/peagen/Dockerfile.worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/Dockerfile.worker -------------------------------------------------------------------------------- /infra/peagen/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/infra/peagen/docker-compose.yml -------------------------------------------------------------------------------- /pkgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/LICENSE -------------------------------------------------------------------------------- /pkgs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/LICENSE -------------------------------------------------------------------------------- /pkgs/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/README.md -------------------------------------------------------------------------------- /pkgs/base/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/pyproject.toml -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ComponentBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/ComponentBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/DynamicBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/DynamicBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/LoggerMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/LoggerMixin.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ObserveBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/ObserveBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ServiceMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/ServiceMixin.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/TomlMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/TomlMixin.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/YamlMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/YamlMixin.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/agents/AgentBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/agents/AgentBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/certs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/certs/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/chains/ChainBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/chains/ChainBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/chains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/chunkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/conversations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/crypto/CryptoBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/crypto/CryptoBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/dataconnectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/distances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/document_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/documents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ensembles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/evaluator_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/evaluator_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/evaluators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/glogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/glogging.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/image_gens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/inner_products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/keys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/keys/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/keys/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/keys/loaders.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/llms/LLMBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/llms/LLMBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/logger_formatters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/logger_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/loggers/LoggerBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/loggers/LoggerBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/loggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/matrices/MatrixBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/matrices/MatrixBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/matrices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/measurements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/metrics/MetricBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/metrics/MetricBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/mre_crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/mre_crypto/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/norms/NormBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/norms/NormBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/norms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ocrs/OCRBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/ocrs/OCRBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/ocrs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/parsers/ParserBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/parsers/ParserBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pop/PopSignerMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/pop/PopSignerMixin.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pop/PopSigningBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/pop/PopSigningBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/pop/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pop/binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/pop/binding.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pop/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/pop/util.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/programs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/prompt_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/prompts/PromptBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/prompts/PromptBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/pseudometrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/publishers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/rate_limits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/schema_converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/secrets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/secrets/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/seminorms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/service_registries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/signing/SigningBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/signing/SigningBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/signing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/signing/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/similarities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/state/StateBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/state/StateBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/storage/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/stt/STTBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/stt/STTBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/stt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/swarms/SwarmBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/swarms/SwarmBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/swarms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/task_mgmt_strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tensors/TensorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/tensors/TensorBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tokens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/tokens/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tool_llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/toolkits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tools/ParameterBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/tools/ParameterBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tools/ToolBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/tools/ToolBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/transports/__init__.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/transports/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/transports/mixins.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tts/TTSBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/tts/TTSBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/vector_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/vectors/VectorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/vectors/VectorBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/vectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/vlms/VLMBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/vlms/VLMBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/vlms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/xmp/EmbedXmpBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/xmp/EmbedXmpBase.py -------------------------------------------------------------------------------- /pkgs/base/swarmauri_base/xmp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/swarmauri_base/xmp/__init__.py -------------------------------------------------------------------------------- /pkgs/base/tests/i9n/LoggerMixin_i9n_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/i9n/LoggerMixin_i9n_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/i9n/YamlMixinUnitTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/i9n/YamlMixinUnitTest.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/ComponentBase_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/ComponentBase_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/LoggerMixin_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/LoggerMixin_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/ObserveBase_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/ObserveBase_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/ServiceMixin_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/ServiceMixin_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/TomlMixin_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/TomlMixin_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/YamlMixin_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/YamlMixin_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/import_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/import_base_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/publishbase_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/publishbase_unit_test.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/test_embedxmp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/test_embedxmp_base.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/test_git_filter_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/test_git_filter_base.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/test_token_service_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/test_token_service_base.py -------------------------------------------------------------------------------- /pkgs/base/tests/unit/test_transport_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/unit/test_transport_base.py -------------------------------------------------------------------------------- /pkgs/base/tests/xfail/LoggerMixin_xfail_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/base/tests/xfail/LoggerMixin_xfail_test.py -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_acme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_acme/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_acme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_acme/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_azure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_azure/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_azure/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_azure/swarmauri_certs_azure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_azure/swarmauri_certs_azure/certs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_cfssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_cfssl/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_cfssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_cfssl/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_certs_csronly/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_certs_csronly/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_embedding_mlm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_embedding_mlm/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_llm_leptonai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_llm_leptonai/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_llm_leptonai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_llm_leptonai/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_parser_fitzpdf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_parser_fitzpdf/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_parser_pypdf2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_parser_pypdf2/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_parser_pypdftk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_parser_pypdftk/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_parser_slate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_parser_slate/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_parser_slate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_parser_slate/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_signing_dsse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_signing_dsse/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_signing_dsse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_signing_dsse/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tests_griffe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tests_griffe/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tests_griffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tests_griffe/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_folium/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_folium/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_folium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_folium/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_gmail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_gmail/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_gmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_gmail/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_psutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_psutil/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_psutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_psutil/README.md -------------------------------------------------------------------------------- /pkgs/community/swarmauri_tool_smogindex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_tool_smogindex/LICENSE -------------------------------------------------------------------------------- /pkgs/community/swarmauri_toolkit_github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/swarmauri_toolkit_github/LICENSE -------------------------------------------------------------------------------- /pkgs/community/zdx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/Dockerfile -------------------------------------------------------------------------------- /pkgs/community/zdx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/LICENSE -------------------------------------------------------------------------------- /pkgs/community/zdx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/README.md -------------------------------------------------------------------------------- /pkgs/community/zdx/api_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/api_manifest.yaml -------------------------------------------------------------------------------- /pkgs/community/zdx/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/community/zdx/mkdocs.insiders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/mkdocs.insiders.yaml -------------------------------------------------------------------------------- /pkgs/community/zdx/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/mkdocs.yml -------------------------------------------------------------------------------- /pkgs/community/zdx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/pyproject.toml -------------------------------------------------------------------------------- /pkgs/community/zdx/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/tests/test_cli.py -------------------------------------------------------------------------------- /pkgs/community/zdx/tests/test_gen_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/tests/test_gen_api.py -------------------------------------------------------------------------------- /pkgs/community/zdx/tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/tests/test_performance.py -------------------------------------------------------------------------------- /pkgs/community/zdx/zdx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/zdx/__init__.py -------------------------------------------------------------------------------- /pkgs/community/zdx/zdx/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/zdx/cli.py -------------------------------------------------------------------------------- /pkgs/community/zdx/zdx/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/community/zdx/zdx/scripts/gen_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/zdx/scripts/gen_api.py -------------------------------------------------------------------------------- /pkgs/community/zdx/zdx/scripts/gen_readmes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/community/zdx/zdx/scripts/gen_readmes.py -------------------------------------------------------------------------------- /pkgs/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/conftest.py -------------------------------------------------------------------------------- /pkgs/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/LICENSE -------------------------------------------------------------------------------- /pkgs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/README.md -------------------------------------------------------------------------------- /pkgs/core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/pyproject.toml -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/agent_apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/agent_apis/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/agent_factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/agents/IAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/agents/IAgent.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/agents/IAgentParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/agents/IAgentParser.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/certs/ICertService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/certs/ICertService.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/certs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/certs/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/chains/IChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/chains/IChain.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/chains/IChainStep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/chains/IChainStep.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/chains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/chains/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/chunkers/IChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/chunkers/IChunker.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/chunkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/cipher_suites/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/cipher_suites/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/conversations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/crypto/ICrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/crypto/ICrypto.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/crypto/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/crypto/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/dataconnectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/distances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/document_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/documents/IDocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/documents/IDocument.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/documents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/embeddings/IFeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/embeddings/IFeature.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/ensembles/IEnsemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/ensembles/IEnsemble.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/ensembles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/evaluator_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/evaluator_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/evaluators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/factories/IFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/factories/IFactory.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/image_gens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/inner_products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/keys/IKeyProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/keys/IKeyProvider.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/keys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/keys/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/keys/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/keys/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/llms/IFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/llms/IFit.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/llms/IPredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/llms/IPredict.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/logger_formatters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/logger_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/loggers/ILogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/loggers/ILogger.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/loggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/matrices/IMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/matrices/IMatrix.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/matrices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/measurements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/messages/IMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/messages/IMessage.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/messages/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/metrics/IMetric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/metrics/IMetric.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/mre_crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/mre_crypto/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/mre_crypto/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/mre_crypto/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/norms/INorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/norms/INorm.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/norms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/ocrs/IPredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/ocrs/IPredict.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/ocrs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/parsers/IParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/parsers/IParser.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pipelines/IPipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/pipelines/IPipeline.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/pop/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pop/ipop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/pop/ipop.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pop/isigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/pop/isigner.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pop/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/pop/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/programs/IProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/programs/IProgram.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/programs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/prompt_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/prompts/IPrompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/prompts/IPrompt.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/prompts/ITemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/prompts/ITemplate.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/pseudometrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/publishers/IPublish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/publishers/IPublish.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/publishers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/rate_limits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/schema_converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/seminorms/ISeminorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/seminorms/ISeminorm.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/seminorms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/service_registries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/signing/ISigning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/signing/ISigning.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/signing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/signing/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/signing/intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/signing/intent.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/signing/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/signing/types.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/similarities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/sst/IPredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/sst/IPredict.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/sst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/state/IState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/state/IState.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/storage/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/swarm_apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/swarms/ISwarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/swarms/ISwarm.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/swarms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/task_mgmt_strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tensors/ITensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tensors/ITensor.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tokens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tokens/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tool_llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/toolkits/IToolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/toolkits/IToolkit.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/toolkits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tools/IParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tools/IParameter.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tools/ITool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tools/ITool.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tracing/ITracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tracing/ITracer.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tracing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/transports/__init__.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/transports/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/transports/enums.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/transports/i_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/transports/i_peer.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tts/IPredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/tts/IPredict.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vector_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vectors/IVector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/vectors/IVector.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vectors/IVectorMeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/vectors/IVectorMeta.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vlms/IPredictVision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/vlms/IPredictVision.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/vlms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/xmp/IEmbedXMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/xmp/IEmbedXMP.py -------------------------------------------------------------------------------- /pkgs/core/swarmauri_core/xmp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/swarmauri_core/xmp/__init__.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/iagent_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/iagent_unit_test.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/import_core_test.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | assert True 3 | -------------------------------------------------------------------------------- /pkgs/core/tests/unit/iparser_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/iparser_unit_test.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/ipredict_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/ipredict_unit_test.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/ipublish_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/ipublish_unit_test.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/ivectorstore_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/ivectorstore_unit_test.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/test_git_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/test_git_filter.py -------------------------------------------------------------------------------- /pkgs/core/tests/unit/test_token_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/unit/test_token_interface.py -------------------------------------------------------------------------------- /pkgs/core/tests/xmp/test_xmp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/core/tests/xmp/test_xmp_interface.py -------------------------------------------------------------------------------- /pkgs/experimental/6w/6w/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6w/6w/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/6w/6w/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6w/6w/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/6w/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6w/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/6w/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6w/README.md -------------------------------------------------------------------------------- /pkgs/experimental/6w/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6w/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/6x/6x/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6x/6x/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/6x/6x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6x/6x/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/6x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6x/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/6x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6x/README.md -------------------------------------------------------------------------------- /pkgs/experimental/6x/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6x/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/6y/6y/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6y/6y/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/6y/6y/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6y/6y/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/6y/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6y/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/6y/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6y/README.md -------------------------------------------------------------------------------- /pkgs/experimental/6y/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6y/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/6z/6z/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6z/6z/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/6z/6z/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6z/6z/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/6z/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6z/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/6z/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6z/README.md -------------------------------------------------------------------------------- /pkgs/experimental/6z/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/6z/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/77/77/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/77/77/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/77/77/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/77/77/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/77/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/77/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/77/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/77/README.md -------------------------------------------------------------------------------- /pkgs/experimental/77/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/77/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/9x/9x/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/9x/9x/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/9x/9x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/9x/9x/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/9x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/9x/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/9x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/9x/README.md -------------------------------------------------------------------------------- /pkgs/experimental/9x/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/9x/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/CanonHttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/CanonHttp/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/CanonHttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/CanonHttp/README.md -------------------------------------------------------------------------------- /pkgs/experimental/CanonHttp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/CanonHttp/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/FastTokenizer/Cargo.toml -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/FastTokenizer/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/FastTokenizer/README.md -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/FastTokenizer/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/FastTokenizer/src/lib.rs -------------------------------------------------------------------------------- /pkgs/experimental/FastTokenizer/tests/unit/test_tokenizer_io.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/catoml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/catoml/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/catoml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/catoml/README.md -------------------------------------------------------------------------------- /pkgs/experimental/catoml/catoml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/catoml/catoml/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/catoml/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/catoml/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/README.md -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/cayaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/cayaml/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/cayaml/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/cayaml/api.py -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/cayaml/ast_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/cayaml/ast_nodes.py -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/cayaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/cayaml/parser.py -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/cayaml/unparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/cayaml/unparser.py -------------------------------------------------------------------------------- /pkgs/experimental/cayaml/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/cayaml/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/g9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/g9/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/g9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/g9/README.md -------------------------------------------------------------------------------- /pkgs/experimental/g9/g9/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/g9/g9/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/g9/g9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/g9/g9/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/g9/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/g9/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/idp_clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/idp_clients/README.md -------------------------------------------------------------------------------- /pkgs/experimental/idp_clients/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/idp_clients/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/jaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/jaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/README.md -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0030[File Referencing and Embedding].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0032 [Git Referencing and Embedding].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0033 [URL Referencing and Embedding].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0042 [Typed Arrays].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0049 [Type Validation Checks].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0050 [Default Values and Fallbacks].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0060 [Union Types].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0061 [Datetime Data Types].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0070 [Filter Pipeline Operations].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0100 [Circular Dependencies].py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0200 [JSON].md: -------------------------------------------------------------------------------- 1 | Type inference of data types from jaml to json -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0201 [TOML].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/docs/MEP-0201 [TOML].md -------------------------------------------------------------------------------- /pkgs/experimental/jaml/docs/MEP-0202 [YAML].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/docs/MEP-0202 [YAML].md -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_ast_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_ast_nodes.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_comprehension.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_config.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_eval.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_expression.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_fstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_fstring.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_lark_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_lark_parser.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_make_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_make_static.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_substitute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_substitute.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_transformer.bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_transformer.bak.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_transformer.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/_utils.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/api.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/ast_nodes.bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/ast_nodes.bak.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/grammar.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/grammar.lark -------------------------------------------------------------------------------- /pkgs/experimental/jaml/jaml/unparser.bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/jaml/unparser.bak.py -------------------------------------------------------------------------------- /pkgs/experimental/jaml/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/languages.yml -------------------------------------------------------------------------------- /pkgs/experimental/jaml/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jaml/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/jz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jz/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/jz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jz/README.md -------------------------------------------------------------------------------- /pkgs/experimental/jz/jz/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jz/jz/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/jz/jz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jz/jz/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/jz/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/jz/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/layout_engine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/layout_engine/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/layout_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/layout_engine/README.md -------------------------------------------------------------------------------- /pkgs/experimental/layout_engine/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/layout_engine/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/layout_engine/src/layout_engine/targets/media/__init__.py: -------------------------------------------------------------------------------- 1 | """Media exporters: HTML, SVG, PDF (placeholder), and code emission.""" 2 | -------------------------------------------------------------------------------- /pkgs/experimental/ptree_dag_extension_example/ptree_dag/__truthy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/ptree_dag_extension_example/ptree_dag/templates/example_template_set/{{ PROJECT_ROOT }}/PROJECT_REQUIREMENTS.md.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/s_f/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/s_f/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/s_f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/s_f/README.md -------------------------------------------------------------------------------- /pkgs/experimental/s_f/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/s_f/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/s_f/s_f/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/s_f/s_f/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/s_f/s_f/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/s_f/s_f/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/sfw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/sfw/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/sfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/sfw/README.md -------------------------------------------------------------------------------- /pkgs/experimental/sfw/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/sfw/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/sfw/sfw/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/sfw/sfw/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/sfw/sfw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/sfw/sfw/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/snt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/snt/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/snt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/snt/README.md -------------------------------------------------------------------------------- /pkgs/experimental/snt/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/snt/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/snt/snt/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/snt/snt/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/snt/snt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/snt/snt/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_asn1/swarmauri_asn1/examples/data/question.der: -------------------------------------------------------------------------------- 1 | 0 2 | *Hello -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/chains/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/conversations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/distances/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/document_stores/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/llms/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/tracing/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vcms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vcms/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vcms/concrete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vector_stores/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vector_stores/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_experimental/swarmauri_experimental/vectors/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_workflow_statedriven/swarmauri_workflow_statedriven/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_workflow_statedriven/swarmauri_workflow_statedriven/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_workflow_statedriven/swarmauri_workflow_statedriven/input_modes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_workflow_statedriven/swarmauri_workflow_statedriven/join_strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/swarmauri_workflow_statedriven/swarmauri_workflow_statedriven/merge_strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_acme_ca/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_acme_ca/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_acme_ca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_acme_ca/README.md -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_acme_ca/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_acme_ca/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_engine_duckdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_engine_duckdb/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_engine_pyspark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_engine_pyspark/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_spiffe/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_spiffe/README.md -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/tigrbl_spiffe/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/src/tigrbl_spiffe/authz/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/src/tigrbl_spiffe/identity/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/src/tigrbl_spiffe/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /pkgs/experimental/tigrbl_spiffe/src/tigrbl_spiffe/tls/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /pkgs/experimental/wcag_pdf_pytest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/wcag_pdf_pytest/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/wcag_pdf_pytest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/wcag_pdf_pytest/README.md -------------------------------------------------------------------------------- /pkgs/experimental/ye/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ye/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/ye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ye/README.md -------------------------------------------------------------------------------- /pkgs/experimental/ye/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ye/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/ye/ye/ExampleAgent.py: -------------------------------------------------------------------------------- 1 | print('hello world') -------------------------------------------------------------------------------- /pkgs/experimental/ye/ye/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ye/ye/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/ymls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ymls/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/ymls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ymls/README.md -------------------------------------------------------------------------------- /pkgs/experimental/ymls/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ymls/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/ymls/ymls/ExampleAgent.py: -------------------------------------------------------------------------------- 1 | print('hello world') -------------------------------------------------------------------------------- /pkgs/experimental/ymls/ymls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/ymls/ymls/__init__.py -------------------------------------------------------------------------------- /pkgs/experimental/zr0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/zr0/LICENSE -------------------------------------------------------------------------------- /pkgs/experimental/zr0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/zr0/README.md -------------------------------------------------------------------------------- /pkgs/experimental/zr0/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/zr0/pyproject.toml -------------------------------------------------------------------------------- /pkgs/experimental/zr0/zr0/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/zr0/zr0/ExampleAgent.py -------------------------------------------------------------------------------- /pkgs/experimental/zr0/zr0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/experimental/zr0/zr0/__init__.py -------------------------------------------------------------------------------- /pkgs/plugins/EmbedXMP/EmbedXMP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/EmbedXMP/EmbedXMP/__init__.py -------------------------------------------------------------------------------- /pkgs/plugins/EmbedXMP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/EmbedXMP/LICENSE -------------------------------------------------------------------------------- /pkgs/plugins/EmbedXMP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/EmbedXMP/README.md -------------------------------------------------------------------------------- /pkgs/plugins/EmbedXMP/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/EmbedXMP/pyproject.toml -------------------------------------------------------------------------------- /pkgs/plugins/EmbedXMP/tests/test_embed_xmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/EmbedXMP/tests/test_embed_xmp.py -------------------------------------------------------------------------------- /pkgs/plugins/embedded_signer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/embedded_signer/LICENSE -------------------------------------------------------------------------------- /pkgs/plugins/embedded_signer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/embedded_signer/README.md -------------------------------------------------------------------------------- /pkgs/plugins/embedded_signer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/embedded_signer/pyproject.toml -------------------------------------------------------------------------------- /pkgs/plugins/embedded_signer/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/embedded_signer/tests/test_cli.py -------------------------------------------------------------------------------- /pkgs/plugins/example_plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/example_plugin/LICENSE -------------------------------------------------------------------------------- /pkgs/plugins/example_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/example_plugin/README.md -------------------------------------------------------------------------------- /pkgs/plugins/example_plugin/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/example_plugin/pyproject.toml -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/media_signer/LICENSE -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/MediaSigner/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/media_signer/MediaSigner/cli.py -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/media_signer/README.md -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/media_signer/pyproject.toml -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test package for MediaSigner plugin behavior verification.""" 2 | -------------------------------------------------------------------------------- /pkgs/plugins/media_signer/tests/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/plugins/media_signer/tests/_helpers.py -------------------------------------------------------------------------------- /pkgs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/peagen/AGENTS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/peagen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/docs/byok_private_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/docs/byok_private_repo.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/docs/contributing.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/docs/eda_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/docs/eda_protocol.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/docs/git_vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/docs/git_vcs.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/docs/task_git_ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/docs/task_git_ops.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/_utils/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/_utils/_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/_utils/_context.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/_utils/_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/_utils/_graph.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/_utils/_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/_utils/_init.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/_utils/_jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/_utils/_jinja.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/alembic.ini -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/cli/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/cli/_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/cli/_banner.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/cli/commands/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/cli/commands/db.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/common.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/_external.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/_llm.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/doe_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/doe_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/eval_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/eval_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/fetch_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/fetch_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/init_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/init_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/keys_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/keys_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/patch_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/patch_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/sort_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/sort_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/core/task_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/core/task_core.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/errors.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/gateway/Dockerfile -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/gateway/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/gateway/db.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/gateway/kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/gateway/kms.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/handlers/fanout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/handlers/fanout.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/migrations/env.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/doe_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/doe_spec.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/eval_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/eval_result.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/evolve_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/evolve_spec.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/keys.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/mixins.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/orgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/orgs.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/pools.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/secrets.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/tasks.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/tenants.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/users.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/workers.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/orm/works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/orm/works.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/plugins/evaluator_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/plugins/programs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_scaffold/template_set/template_payload.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/component/{{ PROJECT_ROOT }}/{{ PACKAGE_ROOT }}/LICENSE.j2: -------------------------------------------------------------------------------- 1 | EXMAPLE LICENSE 2 -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/component/{{ PROJECT_ROOT }}/{{ PACKAGE_ROOT }}/tests/unit/test___init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/cpp_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/cpp_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/cpp_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/unit/test_{{ MOD.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/cpp_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/{{ PKG.NAME }}/{{ MOD.NAME }}.cpp.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/no_requirements/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/no_requirements/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/no_requirements/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/xfail/test_xfail_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw/{{ PROJ.ROOT }}/{{ PKG.NAME }}/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw/{{ PROJ.ROOT }}/{{ PKG.NAME }}/config.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw/{{ PROJ.ROOT }}/{{ PKG.NAME }}/main.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw/{{ PROJ.ROOT }}/{{ PKG.NAME }}/routes.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw_service/{{ PROJ.ROOT }}/{{ PKG.NAME }}/{{ MOD.NAME }}/main.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/python_api_gw_service/{{ PROJ.ROOT }}/{{ PKG.NAME }}/{{ MOD.NAME }}/routes.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/pythonpkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/pythonpkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/pythonpkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/xfail/test_xfail_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/pythonpkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/{{ PKG.NAME }}/{{ MOD.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/react_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.css.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/react_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.d.ts.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/rust_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/src/{{ MOD.NAME }}.rs.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/rust_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/rust_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/rust_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/unit/test_{{ MOD.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/rust_python_pkg/{{ PROJ.ROOT }}/{{ PKG.NAME }}/tests/xfail/test_xfail_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/svelte_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.css.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/svelte_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.d.ts.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/swarmauri_base/{{ PROJ.ROOT }}/base/swarmauri_base/{{ MOD.EXTRAS.RESOURCE_KIND }}/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/swarmauri_core/{{ PROJ.ROOT }}/core/swarmauri_core/{{ MOD.EXTRAS.RESOURCE_KIND }}/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test3/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test3/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test3/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/xfail/test_xfail_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test5/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n__init__.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test5/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/i9n/test_i9n_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | import pytest -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/test5/{{ PROJECT_ROOT }}/{{ PKG.NAME }}/tests/xfail/test_xfail_{{ PKG.NAME }}.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/vue_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.css.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/template_sets/vue_atom/{{ PKG.NAME }}/src/components/{{ MOD.NAME }}/{{ MOD.NAME }}.d.ts.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/tui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/tui/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/tui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/tui/app.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/tui/fileops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/tui/fileops.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/peagen/worker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/peagen/worker/base.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/conftest.py -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/2x2Grid/patches/factor1_A.yaml: -------------------------------------------------------------------------------- 1 | PROJECTS: 2 | - NAME: BaseProject-A 3 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/2x2Grid/patches/factor1_B.yaml: -------------------------------------------------------------------------------- 1 | PROJECTS: 2 | - NAME: BaseProject-B 3 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/evolve_example_2/workspace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/locking_demo/patches/suffix_001.yaml: -------------------------------------------------------------------------------- 1 | PROJECTS: 2 | - NAME: ExampleParserProject-001 3 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/locking_demo/patches/suffix_002.yaml: -------------------------------------------------------------------------------- 1 | PROJECTS: 2 | - NAME: ExampleParserProject-002 3 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/repo_ref_demo/base.yaml: -------------------------------------------------------------------------------- 1 | a: 1 2 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/repo_ref_demo/patch.yaml: -------------------------------------------------------------------------------- 1 | - op: add 2 | path: /b 3 | value: 2 4 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/simple_evolve_demo/patches/suffix_001.yaml: -------------------------------------------------------------------------------- 1 | PROJECTS: 2 | - NAME: ExampleParserProject-001 3 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/examples/simple_evolve_demo/workspace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/infra/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/infra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/perf/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/perf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/sequence_failure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/sequence_success/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/smoke/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/smoke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/unit/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/peagen/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen/tests/unit/conftest.py -------------------------------------------------------------------------------- /pkgs/standards/peagen_templset_vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen_templset_vue/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/peagen_templset_vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/peagen_templset_vue/README.md -------------------------------------------------------------------------------- /pkgs/standards/peagen_templset_vue/peagen_templset_vue/__truthy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_certs_x509/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_certs_x509/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_crypto_jwe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_crypto_jwe/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_crypto_pgp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_crypto_pgp/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_crypto_rust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_crypto_rust/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_gitfilter_gh_release/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_gitfilter_gh_release/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_keyprovider_file/swarmauri_keyprovider_file/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_keyprovider_local/swarmauri_keyprovider_local/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_cwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_cwt/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_cwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_cwt/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_dpop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_dpop/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_dpop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_dpop/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_x509/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_x509/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_pop_x509/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_pop_x509/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_publisher_webhook/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_ca/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_ca/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_cms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_cms/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_cms/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_jws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_jws/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_openpgp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_pdf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_pdf/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_pdf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_pgp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_pgp/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_rsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_rsa/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_signing_ssh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_signing_ssh/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_tokens_jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_tokens_jwt/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_gif/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_gif/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_gif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_gif/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_jpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_jpeg/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_jpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_jpeg/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_mp4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_mp4/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_mp4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_mp4/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_pdf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_pdf/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_pdf/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_png/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_png/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_png/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_svg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_svg/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_svg/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_tiff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_tiff/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_tiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_tiff/README.md -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_webp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_webp/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swarmauri_xmp_webp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swarmauri_xmp_webp/README.md -------------------------------------------------------------------------------- /pkgs/standards/swm_example_package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swm_example_package/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/swm_example_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/swm_example_package/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/STYLE_GUIDE.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tests/conftest.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/i9n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/i9n/test_rest_rpc_parity_v3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/perf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/api/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/api/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/api/_api.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/api/api_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/api/api_spec.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/app/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/app/_app.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/app/app_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/app/app_spec.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/bindings/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/bindings/rpc.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/ddl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/ddl/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/decorators.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/deps/fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/deps/fastapi.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/deps/jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/deps/jinja.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/engine/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/engine/bind.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/hook/_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/hook/_hook.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/hook/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/hook/types.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/__init__.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/_op.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/canonical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/canonical.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/collect.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/resolver.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/op/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/op/types.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/orm/__init__.py: -------------------------------------------------------------------------------- 1 | """ORM utilities containing SQLAlchemy tables and mixins.""" 2 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/schema/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/schema/types.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/schema/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/schema/utils.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/session/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/session/abc.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/session/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/session/base.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/session/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/session/spec.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/shortcuts.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/specs.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/table/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/table/_base.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/table/_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/table/_table.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl/tigrbl/types/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl/tigrbl/types/op.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/Dockerfile -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/tests/conftest.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/tigrbl_auth/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_auth/tigrbl_auth/db.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/tigrbl_auth/rfc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_auth/tigrbl_auth/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_client/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_client/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_client/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/Dockerfile -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/LICENSE -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/README.md -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/pyproject.toml -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/tigrbl_kms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/tigrbl_kms/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/tigrbl_kms/app.py -------------------------------------------------------------------------------- /pkgs/standards/tigrbl_kms/tigrbl_kms/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/standards/tigrbl_kms/tigrbl_kms/cli.py -------------------------------------------------------------------------------- /pkgs/swarmauri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/LICENSE -------------------------------------------------------------------------------- /pkgs/swarmauri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/README.md -------------------------------------------------------------------------------- /pkgs/swarmauri/docs/callflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/docs/callflow.md -------------------------------------------------------------------------------- /pkgs/swarmauri/docs/citizenship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/docs/citizenship.md -------------------------------------------------------------------------------- /pkgs/swarmauri/docs/outcomes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/docs/outcomes.md -------------------------------------------------------------------------------- /pkgs/swarmauri/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/pyproject.toml -------------------------------------------------------------------------------- /pkgs/swarmauri/swarmauri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/swarmauri/__init__.py -------------------------------------------------------------------------------- /pkgs/swarmauri/swarmauri/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/swarmauri/cli.py -------------------------------------------------------------------------------- /pkgs/swarmauri/swarmauri/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/swarmauri/importer.py -------------------------------------------------------------------------------- /pkgs/swarmauri/swarmauri/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/swarmauri/plugin_manager.py -------------------------------------------------------------------------------- /pkgs/swarmauri/tests/test_assert_truth.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | assert True 3 | -------------------------------------------------------------------------------- /pkgs/swarmauri/tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri/tests/test_performance.py -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri_standard/LICENSE -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri_standard/README.md -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri_standard/pyproject.toml -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/evaluator_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/evaluator_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/inner_products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/logger_formatters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/logger_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/loggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/norms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/programs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/prompt_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/pseudometrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/rate_limits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/seminorms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/signing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/similarities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/stt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/tool_llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/swarmauri_standard/vlms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/swarmauri_standard/tests/README.md -------------------------------------------------------------------------------- /pkgs/swarmauri_standard/tests/static/test_tts.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/typing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/LICENSE -------------------------------------------------------------------------------- /pkgs/typing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/README.md -------------------------------------------------------------------------------- /pkgs/typing/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/pyproject.toml -------------------------------------------------------------------------------- /pkgs/typing/swarmauri_typing/Intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/swarmauri_typing/Intersection.py -------------------------------------------------------------------------------- /pkgs/typing/swarmauri_typing/UnionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/swarmauri_typing/UnionFactory.py -------------------------------------------------------------------------------- /pkgs/typing/swarmauri_typing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/swarmauri_typing/__init__.py -------------------------------------------------------------------------------- /pkgs/typing/tests/unit/test_Intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/tests/unit/test_Intersection.py -------------------------------------------------------------------------------- /pkgs/typing/tests/unit/test_MetadataRepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/tests/unit/test_MetadataRepr.py -------------------------------------------------------------------------------- /pkgs/typing/tests/unit/test_UnionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/pkgs/typing/tests/unit/test_UnionFactory.py -------------------------------------------------------------------------------- /scripts/add_missing_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/add_missing_badges.py -------------------------------------------------------------------------------- /scripts/add_perf_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/add_perf_marker.py -------------------------------------------------------------------------------- /scripts/bump_pyproject_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/bump_pyproject_version.py -------------------------------------------------------------------------------- /scripts/classify_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/classify_json_results.py -------------------------------------------------------------------------------- /scripts/classify_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/classify_results.py -------------------------------------------------------------------------------- /scripts/convert_to_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/convert_to_uv.py -------------------------------------------------------------------------------- /scripts/create_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/create_component.py -------------------------------------------------------------------------------- /scripts/create_json_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/create_json_schema.py -------------------------------------------------------------------------------- /scripts/extract_path_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/extract_path_dependencies.py -------------------------------------------------------------------------------- /scripts/flatten_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/flatten_files.py -------------------------------------------------------------------------------- /scripts/generate_extras_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/generate_extras_schemas.py -------------------------------------------------------------------------------- /scripts/license_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/license_scan.py -------------------------------------------------------------------------------- /scripts/list_site_package_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/list_site_package_sizes.py -------------------------------------------------------------------------------- /scripts/manage_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/manage_issues.py -------------------------------------------------------------------------------- /scripts/manage_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/manage_packages.py -------------------------------------------------------------------------------- /scripts/rag_issue_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/rag_issue_manager.py -------------------------------------------------------------------------------- /scripts/run_all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/run_all_tests.py -------------------------------------------------------------------------------- /scripts/total_site_packages_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/total_site_packages_size.py -------------------------------------------------------------------------------- /scripts/update_entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_entrypoints.py -------------------------------------------------------------------------------- /scripts/update_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_imports.py -------------------------------------------------------------------------------- /scripts/update_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_namespace.py -------------------------------------------------------------------------------- /scripts/update_pyproject_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_pyproject_version.py -------------------------------------------------------------------------------- /scripts/update_readme_hits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_readme_hits.py -------------------------------------------------------------------------------- /scripts/update_toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_toml.py -------------------------------------------------------------------------------- /scripts/update_toml_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/update_toml_branches.py -------------------------------------------------------------------------------- /scripts/verify_package_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/HEAD/scripts/verify_package_metadata.py --------------------------------------------------------------------------------