atlas-chat 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atlas/__init__.py +40 -0
- atlas/application/__init__.py +7 -0
- atlas/application/chat/__init__.py +7 -0
- atlas/application/chat/agent/__init__.py +10 -0
- atlas/application/chat/agent/act_loop.py +179 -0
- atlas/application/chat/agent/factory.py +142 -0
- atlas/application/chat/agent/protocols.py +46 -0
- atlas/application/chat/agent/react_loop.py +338 -0
- atlas/application/chat/agent/think_act_loop.py +171 -0
- atlas/application/chat/approval_manager.py +151 -0
- atlas/application/chat/elicitation_manager.py +191 -0
- atlas/application/chat/events/__init__.py +1 -0
- atlas/application/chat/events/agent_event_relay.py +112 -0
- atlas/application/chat/modes/__init__.py +1 -0
- atlas/application/chat/modes/agent.py +125 -0
- atlas/application/chat/modes/plain.py +74 -0
- atlas/application/chat/modes/rag.py +81 -0
- atlas/application/chat/modes/tools.py +179 -0
- atlas/application/chat/orchestrator.py +213 -0
- atlas/application/chat/policies/__init__.py +1 -0
- atlas/application/chat/policies/tool_authorization.py +99 -0
- atlas/application/chat/preprocessors/__init__.py +1 -0
- atlas/application/chat/preprocessors/message_builder.py +92 -0
- atlas/application/chat/preprocessors/prompt_override_service.py +104 -0
- atlas/application/chat/service.py +454 -0
- atlas/application/chat/utilities/__init__.py +6 -0
- atlas/application/chat/utilities/error_handler.py +367 -0
- atlas/application/chat/utilities/event_notifier.py +546 -0
- atlas/application/chat/utilities/file_processor.py +613 -0
- atlas/application/chat/utilities/tool_executor.py +789 -0
- atlas/atlas_chat_cli.py +347 -0
- atlas/atlas_client.py +238 -0
- atlas/core/__init__.py +0 -0
- atlas/core/auth.py +205 -0
- atlas/core/authorization_manager.py +27 -0
- atlas/core/capabilities.py +123 -0
- atlas/core/compliance.py +215 -0
- atlas/core/domain_whitelist.py +147 -0
- atlas/core/domain_whitelist_middleware.py +82 -0
- atlas/core/http_client.py +28 -0
- atlas/core/log_sanitizer.py +102 -0
- atlas/core/metrics_logger.py +59 -0
- atlas/core/middleware.py +131 -0
- atlas/core/otel_config.py +242 -0
- atlas/core/prompt_risk.py +200 -0
- atlas/core/rate_limit.py +0 -0
- atlas/core/rate_limit_middleware.py +64 -0
- atlas/core/security_headers_middleware.py +51 -0
- atlas/domain/__init__.py +37 -0
- atlas/domain/chat/__init__.py +1 -0
- atlas/domain/chat/dtos.py +85 -0
- atlas/domain/errors.py +96 -0
- atlas/domain/messages/__init__.py +12 -0
- atlas/domain/messages/models.py +160 -0
- atlas/domain/rag_mcp_service.py +664 -0
- atlas/domain/sessions/__init__.py +7 -0
- atlas/domain/sessions/models.py +36 -0
- atlas/domain/unified_rag_service.py +371 -0
- atlas/infrastructure/__init__.py +10 -0
- atlas/infrastructure/app_factory.py +135 -0
- atlas/infrastructure/events/__init__.py +1 -0
- atlas/infrastructure/events/cli_event_publisher.py +140 -0
- atlas/infrastructure/events/websocket_publisher.py +140 -0
- atlas/infrastructure/sessions/in_memory_repository.py +56 -0
- atlas/infrastructure/transport/__init__.py +7 -0
- atlas/infrastructure/transport/websocket_connection_adapter.py +33 -0
- atlas/init_cli.py +226 -0
- atlas/interfaces/__init__.py +15 -0
- atlas/interfaces/events.py +134 -0
- atlas/interfaces/llm.py +54 -0
- atlas/interfaces/rag.py +40 -0
- atlas/interfaces/sessions.py +75 -0
- atlas/interfaces/tools.py +57 -0
- atlas/interfaces/transport.py +24 -0
- atlas/main.py +564 -0
- atlas/mcp/api_key_demo/README.md +76 -0
- atlas/mcp/api_key_demo/main.py +172 -0
- atlas/mcp/api_key_demo/run.sh +56 -0
- atlas/mcp/basictable/main.py +147 -0
- atlas/mcp/calculator/main.py +149 -0
- atlas/mcp/code-executor/execution_engine.py +98 -0
- atlas/mcp/code-executor/execution_environment.py +95 -0
- atlas/mcp/code-executor/main.py +528 -0
- atlas/mcp/code-executor/result_processing.py +276 -0
- atlas/mcp/code-executor/script_generation.py +195 -0
- atlas/mcp/code-executor/security_checker.py +140 -0
- atlas/mcp/corporate_cars/main.py +437 -0
- atlas/mcp/csv_reporter/main.py +545 -0
- atlas/mcp/duckduckgo/main.py +182 -0
- atlas/mcp/elicitation_demo/README.md +171 -0
- atlas/mcp/elicitation_demo/main.py +262 -0
- atlas/mcp/env-demo/README.md +158 -0
- atlas/mcp/env-demo/main.py +199 -0
- atlas/mcp/file_size_test/main.py +284 -0
- atlas/mcp/filesystem/main.py +348 -0
- atlas/mcp/image_demo/main.py +113 -0
- atlas/mcp/image_demo/requirements.txt +4 -0
- atlas/mcp/logging_demo/README.md +72 -0
- atlas/mcp/logging_demo/main.py +103 -0
- atlas/mcp/many_tools_demo/main.py +50 -0
- atlas/mcp/order_database/__init__.py +0 -0
- atlas/mcp/order_database/main.py +369 -0
- atlas/mcp/order_database/signal_data.csv +1001 -0
- atlas/mcp/pdfbasic/main.py +394 -0
- atlas/mcp/pptx_generator/main.py +760 -0
- atlas/mcp/pptx_generator/requirements.txt +13 -0
- atlas/mcp/pptx_generator/run_test.sh +1 -0
- atlas/mcp/pptx_generator/test_pptx_generator_security.py +169 -0
- atlas/mcp/progress_demo/main.py +167 -0
- atlas/mcp/progress_updates_demo/QUICKSTART.md +273 -0
- atlas/mcp/progress_updates_demo/README.md +120 -0
- atlas/mcp/progress_updates_demo/main.py +497 -0
- atlas/mcp/prompts/main.py +222 -0
- atlas/mcp/public_demo/main.py +189 -0
- atlas/mcp/sampling_demo/README.md +169 -0
- atlas/mcp/sampling_demo/main.py +234 -0
- atlas/mcp/thinking/main.py +77 -0
- atlas/mcp/tool_planner/main.py +240 -0
- atlas/mcp/ui-demo/badmesh.png +0 -0
- atlas/mcp/ui-demo/main.py +383 -0
- atlas/mcp/ui-demo/templates/button_demo.html +32 -0
- atlas/mcp/ui-demo/templates/data_visualization.html +32 -0
- atlas/mcp/ui-demo/templates/form_demo.html +28 -0
- atlas/mcp/username-override-demo/README.md +320 -0
- atlas/mcp/username-override-demo/main.py +308 -0
- atlas/modules/__init__.py +0 -0
- atlas/modules/config/__init__.py +34 -0
- atlas/modules/config/cli.py +231 -0
- atlas/modules/config/config_manager.py +1096 -0
- atlas/modules/file_storage/__init__.py +22 -0
- atlas/modules/file_storage/cli.py +330 -0
- atlas/modules/file_storage/content_extractor.py +290 -0
- atlas/modules/file_storage/manager.py +295 -0
- atlas/modules/file_storage/mock_s3_client.py +402 -0
- atlas/modules/file_storage/s3_client.py +417 -0
- atlas/modules/llm/__init__.py +19 -0
- atlas/modules/llm/caller.py +287 -0
- atlas/modules/llm/litellm_caller.py +675 -0
- atlas/modules/llm/models.py +19 -0
- atlas/modules/mcp_tools/__init__.py +17 -0
- atlas/modules/mcp_tools/client.py +2123 -0
- atlas/modules/mcp_tools/token_storage.py +556 -0
- atlas/modules/prompts/prompt_provider.py +130 -0
- atlas/modules/rag/__init__.py +24 -0
- atlas/modules/rag/atlas_rag_client.py +336 -0
- atlas/modules/rag/client.py +129 -0
- atlas/routes/admin_routes.py +865 -0
- atlas/routes/config_routes.py +484 -0
- atlas/routes/feedback_routes.py +361 -0
- atlas/routes/files_routes.py +274 -0
- atlas/routes/health_routes.py +40 -0
- atlas/routes/mcp_auth_routes.py +223 -0
- atlas/server_cli.py +164 -0
- atlas/tests/conftest.py +20 -0
- atlas/tests/integration/test_mcp_auth_integration.py +152 -0
- atlas/tests/manual_test_sampling.py +87 -0
- atlas/tests/modules/mcp_tools/test_client_auth.py +226 -0
- atlas/tests/modules/mcp_tools/test_client_env.py +191 -0
- atlas/tests/test_admin_mcp_server_management_routes.py +141 -0
- atlas/tests/test_agent_roa.py +135 -0
- atlas/tests/test_app_factory_smoke.py +47 -0
- atlas/tests/test_approval_manager.py +439 -0
- atlas/tests/test_atlas_client.py +188 -0
- atlas/tests/test_atlas_rag_client.py +447 -0
- atlas/tests/test_atlas_rag_integration.py +224 -0
- atlas/tests/test_attach_file_flow.py +287 -0
- atlas/tests/test_auth_utils.py +165 -0
- atlas/tests/test_backend_public_url.py +185 -0
- atlas/tests/test_banner_logging.py +287 -0
- atlas/tests/test_capability_tokens_and_injection.py +203 -0
- atlas/tests/test_compliance_level.py +54 -0
- atlas/tests/test_compliance_manager.py +253 -0
- atlas/tests/test_config_manager.py +617 -0
- atlas/tests/test_config_manager_paths.py +12 -0
- atlas/tests/test_core_auth.py +18 -0
- atlas/tests/test_core_utils.py +190 -0
- atlas/tests/test_docker_env_sync.py +202 -0
- atlas/tests/test_domain_errors.py +329 -0
- atlas/tests/test_domain_whitelist.py +359 -0
- atlas/tests/test_elicitation_manager.py +408 -0
- atlas/tests/test_elicitation_routing.py +296 -0
- atlas/tests/test_env_demo_server.py +88 -0
- atlas/tests/test_error_classification.py +113 -0
- atlas/tests/test_error_flow_integration.py +116 -0
- atlas/tests/test_feedback_routes.py +333 -0
- atlas/tests/test_file_content_extraction.py +1134 -0
- atlas/tests/test_file_extraction_routes.py +158 -0
- atlas/tests/test_file_library.py +107 -0
- atlas/tests/test_file_manager_unit.py +18 -0
- atlas/tests/test_health_route.py +49 -0
- atlas/tests/test_http_client_stub.py +8 -0
- atlas/tests/test_imports_smoke.py +30 -0
- atlas/tests/test_interfaces_llm_response.py +9 -0
- atlas/tests/test_issue_access_denied_fix.py +136 -0
- atlas/tests/test_llm_env_expansion.py +836 -0
- atlas/tests/test_log_level_sensitive_data.py +285 -0
- atlas/tests/test_mcp_auth_routes.py +341 -0
- atlas/tests/test_mcp_client_auth.py +331 -0
- atlas/tests/test_mcp_data_injection.py +270 -0
- atlas/tests/test_mcp_get_authorized_servers.py +95 -0
- atlas/tests/test_mcp_hot_reload.py +512 -0
- atlas/tests/test_mcp_image_content.py +424 -0
- atlas/tests/test_mcp_logging.py +172 -0
- atlas/tests/test_mcp_progress_updates.py +313 -0
- atlas/tests/test_mcp_prompt_override_system_prompt.py +102 -0
- atlas/tests/test_mcp_prompts_server.py +39 -0
- atlas/tests/test_mcp_tool_result_parsing.py +296 -0
- atlas/tests/test_metrics_logger.py +56 -0
- atlas/tests/test_middleware_auth.py +379 -0
- atlas/tests/test_prompt_risk_and_acl.py +141 -0
- atlas/tests/test_rag_mcp_aggregator.py +204 -0
- atlas/tests/test_rag_mcp_service.py +224 -0
- atlas/tests/test_rate_limit_middleware.py +45 -0
- atlas/tests/test_routes_config_smoke.py +60 -0
- atlas/tests/test_routes_files_download_token.py +41 -0
- atlas/tests/test_routes_files_health.py +18 -0
- atlas/tests/test_runtime_imports.py +53 -0
- atlas/tests/test_sampling_integration.py +482 -0
- atlas/tests/test_security_admin_routes.py +61 -0
- atlas/tests/test_security_capability_tokens.py +65 -0
- atlas/tests/test_security_file_stats_scope.py +21 -0
- atlas/tests/test_security_header_injection.py +191 -0
- atlas/tests/test_security_headers_and_filename.py +63 -0
- atlas/tests/test_shared_session_repository.py +101 -0
- atlas/tests/test_system_prompt_loading.py +181 -0
- atlas/tests/test_token_storage.py +505 -0
- atlas/tests/test_tool_approval_config.py +93 -0
- atlas/tests/test_tool_approval_utils.py +356 -0
- atlas/tests/test_tool_authorization_group_filtering.py +223 -0
- atlas/tests/test_tool_details_in_config.py +108 -0
- atlas/tests/test_tool_planner.py +300 -0
- atlas/tests/test_unified_rag_service.py +398 -0
- atlas/tests/test_username_override_in_approval.py +258 -0
- atlas/tests/test_websocket_auth_header.py +168 -0
- atlas/version.py +6 -0
- atlas_chat-0.1.0.data/data/.env.example +253 -0
- atlas_chat-0.1.0.data/data/config/defaults/compliance-levels.json +44 -0
- atlas_chat-0.1.0.data/data/config/defaults/domain-whitelist.json +123 -0
- atlas_chat-0.1.0.data/data/config/defaults/file-extractors.json +74 -0
- atlas_chat-0.1.0.data/data/config/defaults/help-config.json +198 -0
- atlas_chat-0.1.0.data/data/config/defaults/llmconfig-buggy.yml +11 -0
- atlas_chat-0.1.0.data/data/config/defaults/llmconfig.yml +19 -0
- atlas_chat-0.1.0.data/data/config/defaults/mcp.json +138 -0
- atlas_chat-0.1.0.data/data/config/defaults/rag-sources.json +17 -0
- atlas_chat-0.1.0.data/data/config/defaults/splash-config.json +16 -0
- atlas_chat-0.1.0.dist-info/METADATA +236 -0
- atlas_chat-0.1.0.dist-info/RECORD +250 -0
- atlas_chat-0.1.0.dist-info/WHEEL +5 -0
- atlas_chat-0.1.0.dist-info/entry_points.txt +4 -0
- atlas_chat-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
atlas/__init__.py,sha256=vjzuGbMNMQ1vbDlHr8m8csFhBkvQ1cJxQ-QtveKPshE,1188
|
|
2
|
+
atlas/atlas_chat_cli.py,sha256=W-1J-LNtFCnJKvcw4K3jCylVvhDyFCYE9745qiuEt4s,13303
|
|
3
|
+
atlas/atlas_client.py,sha256=d7kV_pC0cRuRLfeOGEwssMT9VteV65AAFelz7xgjIKQ,8970
|
|
4
|
+
atlas/init_cli.py,sha256=02m9ugqjbfdh4chkt4RC2_ApZ84wO7_BofR45HlhO-c,7583
|
|
5
|
+
atlas/main.py,sha256=DqUu5oDJqyjaT_oV_TXSECzJmFmk-S-fbh0-jomAJHI,24453
|
|
6
|
+
atlas/server_cli.py,sha256=UqA093tw1gq9bPtNGM_G_gb96ejB1Wraujj5ibdsBGc,5008
|
|
7
|
+
atlas/version.py,sha256=mg_VjLjr6llAebBVrNSJjzkijV5iyP2D7uD7ww9AvEk,122
|
|
8
|
+
atlas/application/__init__.py,sha256=qNjHomgYx_9esgNFcz8yS2SMuV1jY-sqPflXBZaWDWo,129
|
|
9
|
+
atlas/application/chat/__init__.py,sha256=Xegfn22RDsR2Bc1S6U_lwC2rdXKQbfm4zYY16nj_4Zs,100
|
|
10
|
+
atlas/application/chat/approval_manager.py,sha256=6xiqA5sIvf4pUBaosC5mKPwEeBH-KP6qbKuv84CPJ6I,5372
|
|
11
|
+
atlas/application/chat/elicitation_manager.py,sha256=NSLNy0fveiaLqpwCvQGXpPQZqSyxxoRwc9cmEscMdNE,6130
|
|
12
|
+
atlas/application/chat/orchestrator.py,sha256=DtSLqTlmeXJZfPOygACoEfxLRh73gKZBts3BLwg9kOM,8088
|
|
13
|
+
atlas/application/chat/service.py,sha256=upq1ROYi3kr0QvMVAckCVhd1DwnHalBHGezRfKHu7yA,17966
|
|
14
|
+
atlas/application/chat/agent/__init__.py,sha256=UoEgfOfeOEgWCUyR4kCz7sNNfp7zi7E0_ZKTyRBZHiQ,486
|
|
15
|
+
atlas/application/chat/agent/act_loop.py,sha256=ijbtTSQNkPZoXKj8wm8eJJRVPDdyaRV0RM5tyTsa8I8,7421
|
|
16
|
+
atlas/application/chat/agent/factory.py,sha256=a6AW2oIUJVsRgURFzt_uqRQiEbO0Z6GJgN2eYlBi8TA,5024
|
|
17
|
+
atlas/application/chat/agent/protocols.py,sha256=1-AjrZD4PIPEbdrHPF_G-fSmThkMU-H3f5NDYvkQP3I,986
|
|
18
|
+
atlas/application/chat/agent/react_loop.py,sha256=pZ1hYEscxbTfd2XBmleOFnSK7tDxVFQcrakqmKTh3a0,15650
|
|
19
|
+
atlas/application/chat/agent/think_act_loop.py,sha256=xzpEK2En_j-ohL8x6iUQDF0F_qX2CXn2pE7pseUrRW4,7845
|
|
20
|
+
atlas/application/chat/events/__init__.py,sha256=NXVUYwjhrYPb0Xy7GMfy38uaKYHik11Km8eoRF4mO4E,42
|
|
21
|
+
atlas/application/chat/events/agent_event_relay.py,sha256=sXwbCkf-3zbotU1EU2nEEQYZC849Z7KrRSboZdmLY_A,3548
|
|
22
|
+
atlas/application/chat/modes/__init__.py,sha256=x1FZD5CINy-8YxqI2uliq6-bcUIOCH5s2nn91KgIXMU,62
|
|
23
|
+
atlas/application/chat/modes/agent.py,sha256=LCXG8pdmnAHvXt0KObiNE-eMtSExkkIg_lY_orTz3Do,4294
|
|
24
|
+
atlas/application/chat/modes/plain.py,sha256=mXChTv1CqAW7AxBSvGKDk3Rwt5r3n-yr_0eTlC2MD2Y,2012
|
|
25
|
+
atlas/application/chat/modes/rag.py,sha256=ZjJXt9f5BdMLVajUyQkeT2ahkgI3S_jnOjPDYFCcZro,2275
|
|
26
|
+
atlas/application/chat/modes/tools.py,sha256=eRIs4jQGG_9tbFSDCwIna-AjM9-TOtxB06SPGBHqgus,7122
|
|
27
|
+
atlas/application/chat/policies/__init__.py,sha256=vDECGgVEtF29OG0tqdms_HwkzfNVLoquY7TQtY_64kw,43
|
|
28
|
+
atlas/application/chat/policies/tool_authorization.py,sha256=TOSO7riMEJCS4FgeU8o1x958TeGCZ8EOvEfyjTvWKug,3449
|
|
29
|
+
atlas/application/chat/preprocessors/__init__.py,sha256=ZZ690tTvA6JEYlOGzQyJA7StaqmbxrebdqlK2rzQegs,49
|
|
30
|
+
atlas/application/chat/preprocessors/message_builder.py,sha256=gLLYOXG2TGEZHM7gwYMaGem-MRix2UBYXtw-mcKKBmA,3037
|
|
31
|
+
atlas/application/chat/preprocessors/prompt_override_service.py,sha256=tf98UIcRPR68Rr3CnjDYppzUauRFmqiquFzFn-paOKI,3545
|
|
32
|
+
atlas/application/chat/utilities/__init__.py,sha256=BFIcdmgzGshIle7zMxLCXXje-tslGdcWBIGhlwHs4ik,207
|
|
33
|
+
atlas/application/chat/utilities/error_handler.py,sha256=8RN9b6Hps86-KJXCcIFydAq7jPlkdon_gYncxD8BdJc,11830
|
|
34
|
+
atlas/application/chat/utilities/event_notifier.py,sha256=uNUykOZY2dL62pZhLWg5HGxh3m2tmfSX8D4BSzQR1II,16890
|
|
35
|
+
atlas/application/chat/utilities/file_processor.py,sha256=OFRqMdIRRNAb9HimxxZkW_QklaY7WGBtM8oICvtYyAY,22938
|
|
36
|
+
atlas/application/chat/utilities/tool_executor.py,sha256=FGQveVi3fdcQe2WipuaESEZGhuPx7EgQviJf3pUVXyc,31115
|
|
37
|
+
atlas/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
atlas/core/auth.py,sha256=XmYQ75sCxPWav9bMz-BjIvZnuyvFXRFZcfztvbeBl9E,8200
|
|
39
|
+
atlas/core/authorization_manager.py,sha256=Xf8Lfk4yfYbPmfXrk-wQcD-Qj2hhpg1jY-sylnfNtUA,938
|
|
40
|
+
atlas/core/capabilities.py,sha256=nDG6oZ3aSJwxbwPaH1KRPIjOftNL0hRPxy-ysUbUQaI,4475
|
|
41
|
+
atlas/core/compliance.py,sha256=A2kBfrhZwqrvmQlN6KvnPENugYJjnULeeHzwHDh6PVQ,7593
|
|
42
|
+
atlas/core/domain_whitelist.py,sha256=wSc8oLlTHtjomy8XhD9abiNjzvx1zlG5edKIewotrpQ,5112
|
|
43
|
+
atlas/core/domain_whitelist_middleware.py,sha256=MoqwG3qm7uInZbr12LhTIApJPr6oQSAEZQ6ixNvJf_k,3166
|
|
44
|
+
atlas/core/http_client.py,sha256=Qvxmary9V_jNQLM2MdNlMScxdyDir8t3xlWlaE_qFL0,734
|
|
45
|
+
atlas/core/log_sanitizer.py,sha256=qoC0_BJ9S1PhkMCl61UgW_m59qF4v0FGYF35s1RJmPo,3571
|
|
46
|
+
atlas/core/metrics_logger.py,sha256=5LhPbMx2T5lE4tzpA1ADOfx-SNn2ajENKpibeBmPxdg,1959
|
|
47
|
+
atlas/core/middleware.py,sha256=ys9McrMe4DyY1w8wbT_2CHcQuCNVvThQmw6keUHSFkQ,6484
|
|
48
|
+
atlas/core/otel_config.py,sha256=itGJn3rUfEsPpB0vMacPrNBjxu3MSQT0Tu-P800CtDQ,9597
|
|
49
|
+
atlas/core/prompt_risk.py,sha256=M3-wmPGrrSsT19EXcz8D_T047_H1YZC_dT1VyKIXStk,6633
|
|
50
|
+
atlas/core/rate_limit.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
+
atlas/core/rate_limit_middleware.py,sha256=tYwNm_WrbHo-Kzqj7NZMgae7XEM2U5UbWp7b_3LbLRY,2498
|
|
52
|
+
atlas/core/security_headers_middleware.py,sha256=-vwr1fBf5Wg3xqYaazawqS4LLvPFue2Z5syln1nBmRA,2018
|
|
53
|
+
atlas/domain/__init__.py,sha256=xTM4C35e_qb0ob20D10DAh-BG52ATe5LgdXIpaqkTWU,778
|
|
54
|
+
atlas/domain/errors.py,sha256=fTQeBI_RBe-w5FmT8yEwpfPhed5ofsWMg-9J0fL3mjo,1901
|
|
55
|
+
atlas/domain/rag_mcp_service.py,sha256=CbuoyE1DQZuMSSDjpunnyuTT64U42gw6taeXZ1_WeGA,31950
|
|
56
|
+
atlas/domain/unified_rag_service.py,sha256=RXSgiJqgB9B6-vr6UTuYBFwxp8-djq2-L01lrIZOmYE,14905
|
|
57
|
+
atlas/domain/chat/__init__.py,sha256=4RW5JLMgfSk10ev6AcgQNyzUIKqzQ7t4pBm2-MqWSDE,41
|
|
58
|
+
atlas/domain/chat/dtos.py,sha256=0jxyFkXZhDEc47ki_gCl7IJircWqFetrgPsmg0fbDw4,2450
|
|
59
|
+
atlas/domain/messages/__init__.py,sha256=8lBnTc3s9ISRauP9SXNQuKfl7sov7VjObHXwb5IlorU,261
|
|
60
|
+
atlas/domain/messages/models.py,sha256=Hk6NkFrHtartV4OSaV2i-VmXJ2fOGiCka53kZ-BP22c,4746
|
|
61
|
+
atlas/domain/sessions/__init__.py,sha256=g24Z-wfhytP0wdbKmS3SWAn-vxX_yAk_L1rWrRRov-4,93
|
|
62
|
+
atlas/domain/sessions/models.py,sha256=6UEnMl3JqPJ7kghWEsYTDT3hJwVRxcIWaODwb1OmjQg,1270
|
|
63
|
+
atlas/infrastructure/__init__.py,sha256=ETZXJjVLcr4HtXkl1Q8Gu5eLusuOkYdhkRXlky5IdII,274
|
|
64
|
+
atlas/infrastructure/app_factory.py,sha256=RUyIybYQwMg3VG-vE7nLv2FqbXayJRxBbbjUCSz1pl4,5363
|
|
65
|
+
atlas/infrastructure/events/__init__.py,sha256=btH9MVSb7_T1f7huSqhrC9GYATEzK5uTfNthVD1abV0,44
|
|
66
|
+
atlas/infrastructure/events/cli_event_publisher.py,sha256=4RLJsWlmoOj776o6unGlaT7RcrmvnxhiOPAdRc64DTQ,4813
|
|
67
|
+
atlas/infrastructure/events/websocket_publisher.py,sha256=hmQxqSw2P8IgfeYXkwqZPtpZ83HPUVd4S4bmw4G-Sgg,4212
|
|
68
|
+
atlas/infrastructure/sessions/in_memory_repository.py,sha256=BD9jUU-twDJeZE8UIE6pApCKVO3RPR2ltmy-vBIQSdU,1885
|
|
69
|
+
atlas/infrastructure/transport/__init__.py,sha256=4p97DcN3F7ILxTWOJWDDQFSG1n560LY9UalS3OgB5gg,145
|
|
70
|
+
atlas/infrastructure/transport/websocket_connection_adapter.py,sha256=t4XtVgobDTYLAG0nBkN2IyZ48hsoL59VitKIJi9Vn_k,1089
|
|
71
|
+
atlas/interfaces/__init__.py,sha256=KKnpvvrDEbNCD2EP7lsOiqIZvjrx39QARMSNt2i6R6E,382
|
|
72
|
+
atlas/interfaces/events.py,sha256=yBC7cRZlEQourJ13MzSwjAIAQibi6ecSoPWQTffE768,3541
|
|
73
|
+
atlas/interfaces/llm.py,sha256=_yZ8rADzA7WOVyL_LO4VT37tbsQPPDtL5vnXA7upGoQ,1388
|
|
74
|
+
atlas/interfaces/rag.py,sha256=Gc5_bJrKR3GZCb6LUVgv3k4NDATG-62I4IS_zMLcCjM,1182
|
|
75
|
+
atlas/interfaces/sessions.py,sha256=ru9on0HZh-IPGLcAuzlA6B62BfSFvLrYjEn17WVjxdo,1617
|
|
76
|
+
atlas/interfaces/tools.py,sha256=7gSdMT2R-kzdoUhrdd0lJUZzX6DFeCZu98VjZjeAhWM,1418
|
|
77
|
+
atlas/interfaces/transport.py,sha256=LEFWmiqa_qXIf591WzpPJIdb0E_2DJCgZgw0Fz5U3ZQ,624
|
|
78
|
+
atlas/mcp/api_key_demo/README.md,sha256=lL5epk7FBDi-0J644EmoNYN8Oa9nZZjjiUeJ2eaX110,2100
|
|
79
|
+
atlas/mcp/api_key_demo/main.py,sha256=dOvyVOVKIxwLAOMIH43zQKat5U92A6HWti6Zawq4v50,5567
|
|
80
|
+
atlas/mcp/api_key_demo/run.sh,sha256=8eGP4t48Yqi2TQ1rxMdoGwKz8TXROT-xVN2G6CJsk38,1442
|
|
81
|
+
atlas/mcp/basictable/main.py,sha256=N5_i9Z2uJQ5vQlOTrdFEU2IfdMUeSALy1uPS5cT7Bd8,5587
|
|
82
|
+
atlas/mcp/calculator/main.py,sha256=5dkNAWaX0r7pZXOICfuVA0n9Q5rrpGwZmguJvg5WBlQ,5430
|
|
83
|
+
atlas/mcp/code-executor/execution_engine.py,sha256=aSX6iMEobYSevFigYZ12v6vVbDokeGyaHD3UgCbEyp0,3381
|
|
84
|
+
atlas/mcp/code-executor/execution_environment.py,sha256=f2IDiwBiQK0vKQcMU1agr2hezAZQurUWYF1aWIsG_ok,2992
|
|
85
|
+
atlas/mcp/code-executor/main.py,sha256=mWuPzGs_ygiKD81F8SSo1pwFQqUyjMgbcLTcXp-b-cE,23049
|
|
86
|
+
atlas/mcp/code-executor/result_processing.py,sha256=oaNVHGnRsugQ_PPKZTrUKUop1Ca3mSZBQ6HrwIqKraw,10113
|
|
87
|
+
atlas/mcp/code-executor/script_generation.py,sha256=YHdo5-rvHxQQzDaHqP6kadZYjyvybrhCWi0EB4ue36U,6255
|
|
88
|
+
atlas/mcp/code-executor/security_checker.py,sha256=vtGpjwYhF4xZHglqEVt1isWGaG0a5DDhzOFOPHJsbIk,5217
|
|
89
|
+
atlas/mcp/corporate_cars/main.py,sha256=vzub2EjxAb1YvMNil1bF6oNOmhYt4fkVInjrda_IECk,13471
|
|
90
|
+
atlas/mcp/csv_reporter/main.py,sha256=BWfvefZanPh4Ez1VFqlYDqnuLFx6bw1RJJxvmQZO7sk,20638
|
|
91
|
+
atlas/mcp/duckduckgo/main.py,sha256=dHKA0Ob6RbnSG6Kz129CqgRxD_GwHe1f3LndZ4AFXBQ,6892
|
|
92
|
+
atlas/mcp/elicitation_demo/README.md,sha256=vczOFgryQxRpnwz7FuTJ4gs1qpeBAa_qCTmqhUgYPGo,5082
|
|
93
|
+
atlas/mcp/elicitation_demo/main.py,sha256=NWX2BOQ2cQHduf5cxGshqZnDVxR55rMxlvfCNtewuRQ,7603
|
|
94
|
+
atlas/mcp/env-demo/README.md,sha256=706Kdjyc3nhQlXfAIVaLt-gtTczSTdja9idrBRibo7Y,3814
|
|
95
|
+
atlas/mcp/env-demo/main.py,sha256=1WTBzlrX6Dj0H0UXoqdmHyOPJxlVaqL4z7Mr1fASO7s,5542
|
|
96
|
+
atlas/mcp/file_size_test/main.py,sha256=COJEc0gHi9N7G0T8oTHp-uQgqQe3q8ATd5aVtk2ikPQ,10538
|
|
97
|
+
atlas/mcp/filesystem/main.py,sha256=BzuyetfdI1pmEba2lfF5CnaQhw5eEue3XQ0Fg76GXkk,11902
|
|
98
|
+
atlas/mcp/image_demo/main.py,sha256=KKc0StYpLpv8z8DYLg5VfaWKBS4tAR4Kz8hO0wlc7_o,4040
|
|
99
|
+
atlas/mcp/image_demo/requirements.txt,sha256=Td_CiFEe_lVwH1ZVjo3l-SFRPI2Pwg0hhlZYpC30PNw,124
|
|
100
|
+
atlas/mcp/logging_demo/README.md,sha256=Hn_UfImSNizlSoi50G7-kU3kFxVhkXU6Yiuqi--JyiA,1896
|
|
101
|
+
atlas/mcp/logging_demo/main.py,sha256=ga4miCZiVqwDNgybvnvoydHxQ_2K_XqrSGes_GlRfKM,3587
|
|
102
|
+
atlas/mcp/many_tools_demo/main.py,sha256=jW0XkCl87JE6Bbtipt-DBMKilUt_xSlQLK7b-cPYJn0,1480
|
|
103
|
+
atlas/mcp/order_database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
atlas/mcp/order_database/main.py,sha256=UPxoTR1bc3UJQgAQhGxUvNPcmj87IaeHuTkEL0CNUCg,12334
|
|
105
|
+
atlas/mcp/order_database/signal_data.csv,sha256=29IioQAQ70z_ArbR-26I7ezKT9R7GITJexWHuOy-A5I,62013
|
|
106
|
+
atlas/mcp/pdfbasic/main.py,sha256=4-gCMWubohT2FpnxQVBtqFjqJUaUeTeO4FliBAyJgqs,15112
|
|
107
|
+
atlas/mcp/pptx_generator/main.py,sha256=fTQ0aLN5kSzY5Gzhk4cdMDmJFWuZAwjz2qjV3gfGxrg,28919
|
|
108
|
+
atlas/mcp/pptx_generator/requirements.txt,sha256=LQ3Yi1vMZtR32FkogEahevCcQmVOgAS-L3k6Xqdkg9c,264
|
|
109
|
+
atlas/mcp/pptx_generator/run_test.sh,sha256=0bCYnp7acHBxhwEGCVVzCJn5jdS4Lf3Fu6gsL4QoFNk,40
|
|
110
|
+
atlas/mcp/pptx_generator/test_pptx_generator_security.py,sha256=Frt3078_E6EuhivddXqVlIBT0NCq1Rtfn22dXPp66GQ,7283
|
|
111
|
+
atlas/mcp/progress_demo/main.py,sha256=d-0-MCI_hFc6tt7BK0myd_lM1YGjxLrdbBIGO3ofW24,5481
|
|
112
|
+
atlas/mcp/progress_updates_demo/QUICKSTART.md,sha256=QTHIXIy0D8-_6rm9ka81T7ljuV8QClEEedwkQGk2tdw,6908
|
|
113
|
+
atlas/mcp/progress_updates_demo/README.md,sha256=4go9A2x7mdjwSKJpQrQV8i55N2g7b92gBPciUIPbUTQ,3446
|
|
114
|
+
atlas/mcp/progress_updates_demo/main.py,sha256=73Vka2DGswdpu9yBxeung14bog073ZOif773wJV7yGg,15102
|
|
115
|
+
atlas/mcp/prompts/main.py,sha256=itI7JuDgbmFM4uRrk2FKXUfhfOkCtwNv_1fcpyeH0eY,13916
|
|
116
|
+
atlas/mcp/public_demo/main.py,sha256=hye7AWQ_FQVzqA73hSH8tcfLTotn4hQKzI6TsNPYxXE,4996
|
|
117
|
+
atlas/mcp/sampling_demo/README.md,sha256=RtzUYhk8gzJdCWLad6qLm4ie3RVQ0BiL68vfW37A01Q,5667
|
|
118
|
+
atlas/mcp/sampling_demo/main.py,sha256=t5n2XYahdGVKcI9uZgsoA1QpWkNkWP4SLEvw03K4R8c,7434
|
|
119
|
+
atlas/mcp/thinking/main.py,sha256=kBw2Opc5DSrvZOUfSHim1jQAp7NPkFSer8FrSIs00vQ,2447
|
|
120
|
+
atlas/mcp/tool_planner/main.py,sha256=ImfyMrGJhdvlADHgnYWo0VWM5ktnC4tKBbRL52SdaWU,8527
|
|
121
|
+
atlas/mcp/ui-demo/badmesh.png,sha256=g9tdCZAlE3Do8qiZKYdMLrResdpzaXZ4f2O8ItA82WM,88080
|
|
122
|
+
atlas/mcp/ui-demo/main.py,sha256=Y2iWYA9ll_A80NIVuDi_0f7SRnaWa3BSYPm-V5aCMi4,12559
|
|
123
|
+
atlas/mcp/ui-demo/templates/button_demo.html,sha256=MSWH6m0Efa6ZRsxz6yIj2TJfUvd99-pEvAzNeEoQm3A,1531
|
|
124
|
+
atlas/mcp/ui-demo/templates/data_visualization.html,sha256=v6f0QO4A5lAc5fABo2eI83KtwLJzmSakAXtTDn9_Yfg,2110
|
|
125
|
+
atlas/mcp/ui-demo/templates/form_demo.html,sha256=8Au6ihN06xrq3aPB3-yu3lmh7CfScAURBY7qIiyTJp4,2420
|
|
126
|
+
atlas/mcp/username-override-demo/README.md,sha256=zBpNBi0MG__X3ajeO-KTkLo4G3QbOcVxUtZhS_IOfmI,11425
|
|
127
|
+
atlas/mcp/username-override-demo/main.py,sha256=deRy2b4EBHt0sZog-e-EMyDajzZl4Pdo4bI4VL8kb8c,10163
|
|
128
|
+
atlas/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
atlas/modules/config/__init__.py,sha256=W4zqFN3poOxo27EpS7V-QRfkm-rES7Zb5q_Z5icx6SY,688
|
|
130
|
+
atlas/modules/config/cli.py,sha256=tRcmrVJPdhYlWzoEoKaQwKtoIySys49volvMwY-Z7Fo,7916
|
|
131
|
+
atlas/modules/config/config_manager.py,sha256=d_jyzDjuhvpsOHzax7dkXErYBYjmYAp6d5aP0yP5I8Y,48627
|
|
132
|
+
atlas/modules/file_storage/__init__.py,sha256=I9GA5K9tjx3wTlvQ15lfLF-VK4K_51P_kROlaoxMJiY,479
|
|
133
|
+
atlas/modules/file_storage/cli.py,sha256=3zweuVvFMyL8FQ6IHMDUSpDbngbUQkSqdKMQzGrc5KA,12035
|
|
134
|
+
atlas/modules/file_storage/content_extractor.py,sha256=-ydZut80BHeiIDr2pTc7b88hyz0uG2vZyFqwf75iTos,10453
|
|
135
|
+
atlas/modules/file_storage/manager.py,sha256=LDkVH3LR9SsZLupH3WC8-G1gHooXK4QLkj5yN2IeUG0,12282
|
|
136
|
+
atlas/modules/file_storage/mock_s3_client.py,sha256=FXX97kUV5yggCruCpU9eqlkCyVyOLgcBBHLIol1z4bs,15417
|
|
137
|
+
atlas/modules/file_storage/s3_client.py,sha256=VVHb9rx6ONwv-MSpZKQc-ZiYvBNMLh_DMb6y8XNJle0,15392
|
|
138
|
+
atlas/modules/llm/__init__.py,sha256=uW1phnTGW3wiL-qbIdUU9szip1quFGSVBkCzKC-OGoY,400
|
|
139
|
+
atlas/modules/llm/caller.py,sha256=OdW8j7FY2lYFj9khIwOVOlMtYLq8w9z0Ti0UpCSBfQs,12096
|
|
140
|
+
atlas/modules/llm/litellm_caller.py,sha256=IteqSqVDZVUPfaIgad1UyrDbmNlL5KGqIPAc4C4GWss,29123
|
|
141
|
+
atlas/modules/llm/models.py,sha256=RzPqlfTkyBT-KDGNxINkTwiv30SBGJQA_XuhikdiebI,511
|
|
142
|
+
atlas/modules/mcp_tools/__init__.py,sha256=f9ejAAI0NFLidSQopFg-S5v9Z2wln5uKpdFLSq8bRDw,348
|
|
143
|
+
atlas/modules/mcp_tools/client.py,sha256=sIHZjJLMoixAKEccKh6yFNVb0QRWcLWNiBjfzHBlzWE,101084
|
|
144
|
+
atlas/modules/mcp_tools/token_storage.py,sha256=SrndjGx3cu2XPFKbYdT3r5kdDmSbhKUo75La5ESAwqk,19648
|
|
145
|
+
atlas/modules/prompts/prompt_provider.py,sha256=AuiTAWpOO7mhPaG3gryS5Cl8zgkwHsNjxRahx6JI_yM,5022
|
|
146
|
+
atlas/modules/rag/__init__.py,sha256=HqENGwSUI2EQN58sydgMdA_sR-Eil5soqGmiw5RNAE0,601
|
|
147
|
+
atlas/modules/rag/atlas_rag_client.py,sha256=1lpSQ8jrFoLdJ8roG-szKjaW0jglvUZJuB71EJbWfRg,11943
|
|
148
|
+
atlas/modules/rag/client.py,sha256=JVa2isLwt0wJSavGilybCZYs7QOjPfqkf_f7jhmJhXA,4970
|
|
149
|
+
atlas/routes/admin_routes.py,sha256=X8BYygZwDWcPUwx3NJgOH_GtfYHzx4oPNtJ0feLGq6Y,33819
|
|
150
|
+
atlas/routes/config_routes.py,sha256=L_D6ZSa0LsoH1mCbo96OLcOflxtwXT61ZN5zqJF63aA,21038
|
|
151
|
+
atlas/routes/feedback_routes.py,sha256=_nm3CVxclC0bISBgeDEkZfLKxgwMEesAGJtsttmI2sk,12917
|
|
152
|
+
atlas/routes/files_routes.py,sha256=t8k1AIkZzIqeNK2o078MviXou3ALrl-RtkNgscK_S6w,9891
|
|
153
|
+
atlas/routes/health_routes.py,sha256=Ivnpl3h-nWDeANYGKhJunVmw9l7iZASF9AKXFhqA9Gg,1204
|
|
154
|
+
atlas/routes/mcp_auth_routes.py,sha256=4ll3DWeUVwLD-sjhKIBriR53i6bZPxYzX4gCWZwTco4,7936
|
|
155
|
+
atlas/tests/conftest.py,sha256=QvX1GopNyQ4nO1g26HTW3dUSciTz87430r9VFo2hA38,959
|
|
156
|
+
atlas/tests/manual_test_sampling.py,sha256=OEsreI789oeBm-VCdAZ_XDpBa8lhJp90baq998Zh8z4,2931
|
|
157
|
+
atlas/tests/test_admin_mcp_server_management_routes.py,sha256=4OWJhdb10fBGzprcSJbgHwFtU9u9z6016EG-RIVmrxU,4630
|
|
158
|
+
atlas/tests/test_agent_roa.py,sha256=3an5cPAhOlSK1QB23EL3bqRIaxr1jJcVETsrNQugc-Y,5589
|
|
159
|
+
atlas/tests/test_app_factory_smoke.py,sha256=9TM9HnIzaEdVaIyeIVYjlTKMfm_w6Mze3ro04ccCdYM,1612
|
|
160
|
+
atlas/tests/test_approval_manager.py,sha256=xCeTYXbK9KAyt3AiNX3WzPMSjaxVk7TeUfKNbkKuaUA,14783
|
|
161
|
+
atlas/tests/test_atlas_client.py,sha256=XoJiNXqUYoB6_ZEk1ZrilvUPY3WJXNEMxPHNMbUBNIk,6716
|
|
162
|
+
atlas/tests/test_atlas_rag_client.py,sha256=UuOLrJ8CCFw8GLLk34iS0jnffYxfDoLKqEAavnPAXP4,17540
|
|
163
|
+
atlas/tests/test_atlas_rag_integration.py,sha256=Cbp2Gxue7HVJiIX7UCdDis3fUbHQJ_ev9hNnSTpGYtU,7997
|
|
164
|
+
atlas/tests/test_attach_file_flow.py,sha256=7sg0Mw_TNHJplquKDzsOG0yBBEaG9hIldIbHrqDWaMg,9624
|
|
165
|
+
atlas/tests/test_auth_utils.py,sha256=JiPSZ9yKwsmNh1Vlp0HADgovd3XisKrEU_BfHOKALpE,6109
|
|
166
|
+
atlas/tests/test_backend_public_url.py,sha256=REO98ia7QwCvXnis5_euRxiYtjglIxkY6mAA2jtFLsw,7728
|
|
167
|
+
atlas/tests/test_banner_logging.py,sha256=_ryTGVv1YM6WP56-Drg9tc9aXZyqOs8TmtQnKpmhlIM,9412
|
|
168
|
+
atlas/tests/test_capability_tokens_and_injection.py,sha256=9oUBv_goVEXLBc4imWmiPkrdbu5stbu5uFdtIogM1N4,7126
|
|
169
|
+
atlas/tests/test_compliance_level.py,sha256=n8RZogfB9rnRqdTBembkgCvEOheX7EBVALIRVgFsnnE,1833
|
|
170
|
+
atlas/tests/test_compliance_manager.py,sha256=NUQA83DdSXVPgmPelOqbFgZNvLI94U-KWPjlfVnOZHo,10042
|
|
171
|
+
atlas/tests/test_config_manager.py,sha256=Wgoq6uAW0FTcM4nap_xhkl6oATF329QaMY4pfSbWfrg,24014
|
|
172
|
+
atlas/tests/test_config_manager_paths.py,sha256=UpUY-imWorD4Z_ai6em6USIQkaQHkmhwyH6-ObvKnz0,483
|
|
173
|
+
atlas/tests/test_core_auth.py,sha256=Mdpc0qS_rNroQJwEjtE2UKIqYXxsNUPaGJ1N500oymQ,582
|
|
174
|
+
atlas/tests/test_core_utils.py,sha256=MLM1-UHFntErCXVTdHlZtZrhoGb0LNFfnRhMcy-Mzg0,9202
|
|
175
|
+
atlas/tests/test_docker_env_sync.py,sha256=qSy7sAbywMzw0-67BbR3tmn0XrHYaiDOdBK69j5CgpE,8281
|
|
176
|
+
atlas/tests/test_domain_errors.py,sha256=P2DBEepZu9IEb6dfnZ5dpjRhMl-13bliwztueynICFA,11106
|
|
177
|
+
atlas/tests/test_domain_whitelist.py,sha256=ZIvyzIpHCzvD1nifZO9pDIPtvnxKa4159jF7XQaWG3s,12463
|
|
178
|
+
atlas/tests/test_elicitation_manager.py,sha256=6MwHuinWkeQOqK8rPEDjZa6iY8E1AY5LCNhpSgM3wH0,13319
|
|
179
|
+
atlas/tests/test_elicitation_routing.py,sha256=fbaj22_shMr1Tp-WSRYM3X_2d9ba3d2ptacuBKzCMzc,11817
|
|
180
|
+
atlas/tests/test_env_demo_server.py,sha256=L2KrEZiXmCE_rthhHmWKr_lnmnbKPq0QZduJd_M84NQ,2720
|
|
181
|
+
atlas/tests/test_error_classification.py,sha256=NZPySwFFEqcnvgRPNAtrNgma8QQPQqHusk9hnXJ2zfk,4843
|
|
182
|
+
atlas/tests/test_error_flow_integration.py,sha256=x9ZYBAWsF_KuNFN_BGOvUBTxA7JhspV6mPNJkykyQR8,4712
|
|
183
|
+
atlas/tests/test_feedback_routes.py,sha256=6CUXpKBmPPdhpxuQHv2hwQvZZRViWrIqY2MrHBjEqxQ,12855
|
|
184
|
+
atlas/tests/test_file_content_extraction.py,sha256=peLi9iqsu1Ej4VNoBsa8Nt9j8Qg3km6ysOHmrbZWWz8,45608
|
|
185
|
+
atlas/tests/test_file_extraction_routes.py,sha256=iZoi8lqt8V8FhKWw18wOaPCeJ_Mlo5OjM-fvY0Jkqxk,6753
|
|
186
|
+
atlas/tests/test_file_library.py,sha256=o_NDfnEFYLHVMoFH7SDWgRUC1zY5otSpVuJx-M4M8eI,3310
|
|
187
|
+
atlas/tests/test_file_manager_unit.py,sha256=e2iFB1F9G9-7UbJ9osYvMl93q59A82wvurAlp1nrnvg,738
|
|
188
|
+
atlas/tests/test_health_route.py,sha256=Cv0SJmGFLW0mgiMobl_PLMJuNKnZlJTtTRUveRZ0kH0,1519
|
|
189
|
+
atlas/tests/test_http_client_stub.py,sha256=JZoLcyoIc-SumAQJPm08mByeYNMke2-94NEw8ci1ddw,259
|
|
190
|
+
atlas/tests/test_imports_smoke.py,sha256=yWtmEQtAn2t0KohIW-aGISYTTvF-dlAqXY3tWniR7FQ,987
|
|
191
|
+
atlas/tests/test_interfaces_llm_response.py,sha256=OMIwVv24luiYkAT1PzlCWe4CK7jrTy9_VaUVYC96LPE,319
|
|
192
|
+
atlas/tests/test_issue_access_denied_fix.py,sha256=DNQDJpPh72OmFNv0GjM2x1oRt5JwDKS8pxbX2aRJWmU,5233
|
|
193
|
+
atlas/tests/test_llm_env_expansion.py,sha256=QaKtU7rXx2BNPzuYEMhIxItpEk8kGsJipLvTbS9papU,34108
|
|
194
|
+
atlas/tests/test_log_level_sensitive_data.py,sha256=KukK4_fHN-viXDFLOmSVHeQMjG1bGtLCOivJwxOvyso,11969
|
|
195
|
+
atlas/tests/test_mcp_auth_routes.py,sha256=6VLOoHGXBWKOrTqWuy0DBVcTgk_YN1GZ-vjehq3qF7k,12764
|
|
196
|
+
atlas/tests/test_mcp_client_auth.py,sha256=gUj8ldKF6me7T7tiLgjrZrbXDCShxLfQVhqvXcY74bo,14317
|
|
197
|
+
atlas/tests/test_mcp_data_injection.py,sha256=IVNt2ZIUjBKHWx9rdVOWPm6mMOIHZmWceANgrX15az8,9309
|
|
198
|
+
atlas/tests/test_mcp_get_authorized_servers.py,sha256=PxBuOPzFs7hgdSgbLutxGz9PIxSmniOY-thwG359pz8,2944
|
|
199
|
+
atlas/tests/test_mcp_hot_reload.py,sha256=Jda3_kCNyBRFtmu18MHH5qWvdc-PSKRRQBVItolKMoA,21008
|
|
200
|
+
atlas/tests/test_mcp_image_content.py,sha256=5moa0mldZA20slrZOzpKm-WYT9RReB_8XbCy0dQCOq0,14454
|
|
201
|
+
atlas/tests/test_mcp_logging.py,sha256=6OHF1ieUy9p1OsBKk9FcADTmI0zoqYhSVdAHYdpdcAQ,6490
|
|
202
|
+
atlas/tests/test_mcp_progress_updates.py,sha256=X1y7Wk-32NCKUfH0OuFT2gmZ38CPYGPARH79vdE5QjI,9482
|
|
203
|
+
atlas/tests/test_mcp_prompt_override_system_prompt.py,sha256=Q7MyeOS6sKLvLWEoOjU2P6eJx7EJDFXIIERSKuDHr7c,3881
|
|
204
|
+
atlas/tests/test_mcp_prompts_server.py,sha256=IJTphuQZer4UjUsbj9P0FjISvQE5Agij8MsVjs3MISs,1486
|
|
205
|
+
atlas/tests/test_mcp_tool_result_parsing.py,sha256=poudLbekI6m9s0fEZ9ATXHTeUm9zIynxaui-S3-KRUA,12438
|
|
206
|
+
atlas/tests/test_metrics_logger.py,sha256=FUoGukPUt4AN7ivtetYMOcXmPwrVqy5IwBm9fkw02ZQ,2243
|
|
207
|
+
atlas/tests/test_middleware_auth.py,sha256=Lv6o1C70eJKwce8snX96E-CmxvGvmRLReEoelMaupgg,10632
|
|
208
|
+
atlas/tests/test_prompt_risk_and_acl.py,sha256=MgYYB1SaEQQXWZD7pnwGq5u82SzgiHddckvS5I4pr0A,5550
|
|
209
|
+
atlas/tests/test_rag_mcp_aggregator.py,sha256=CYy8wwQjzvTI6kdgs_tPj8H5Rr5GLnHfDMNl04YRr4s,9008
|
|
210
|
+
atlas/tests/test_rag_mcp_service.py,sha256=AhX_dYNKvq9a3pFVG6Av9AnvyVbWebauu7mFkwShfwY,9181
|
|
211
|
+
atlas/tests/test_rate_limit_middleware.py,sha256=mZI2X8dv0AznUnOgBknVZ6ZSTAdnEuE38Gtd1zbl6Jc,1438
|
|
212
|
+
atlas/tests/test_routes_config_smoke.py,sha256=JfE9tVuASWDXrmHRUj0j-9qzXi8Awrs2W5eiTx49Rqk,2682
|
|
213
|
+
atlas/tests/test_routes_files_download_token.py,sha256=GwdG21ZsmlX0yN0rBPRdRIwRb0yDY4oyPSphnJb1b-w,1242
|
|
214
|
+
atlas/tests/test_routes_files_health.py,sha256=w719e94D_SJ5ut3epNSjiIw202aoHGHeIWTGEJ7zjzo,685
|
|
215
|
+
atlas/tests/test_runtime_imports.py,sha256=9LmvYbzOPqXt6vifsjNWa4r2QpNTJggjonf2UYWok84,1854
|
|
216
|
+
atlas/tests/test_sampling_integration.py,sha256=mDkqFzyuqZ1vcc5LDru-d5rWdW1Il_sSo1dX5PbcZwA,18572
|
|
217
|
+
atlas/tests/test_security_admin_routes.py,sha256=r9GBvM_H4StU1L4HoXWB-0y6Yo2ZYsZeY_hBuEOio2I,2149
|
|
218
|
+
atlas/tests/test_security_capability_tokens.py,sha256=GLCaGyzqqqSQu00vX3GTExalSMKySPbDd9N75eDO7aU,2052
|
|
219
|
+
atlas/tests/test_security_file_stats_scope.py,sha256=LFPCBDneWIZiqlrTIj16Mrvq-L-9UvCMNHlKD1HuCyc,700
|
|
220
|
+
atlas/tests/test_security_header_injection.py,sha256=5rXiWjFtlxZmv5yjIzgi_S2QZD0XGYg2IWce6R0Ej_0,7356
|
|
221
|
+
atlas/tests/test_security_headers_and_filename.py,sha256=kaWyC9eqYU7mnBwJ6SRGJpDbOAgvoa1KKniLYR0aZIo,2235
|
|
222
|
+
atlas/tests/test_shared_session_repository.py,sha256=OaAGbML2MbKJZf45NG4P3DFwcl7yahimA_jnm_8Z-BQ,4108
|
|
223
|
+
atlas/tests/test_system_prompt_loading.py,sha256=D89xWyHZDxwnj_VqWtsMEujIpI2ynrv_r-aQgHnSREw,7055
|
|
224
|
+
atlas/tests/test_token_storage.py,sha256=3UfL41MQy5ds6gEcXshGLyfpAbCW8i6mVcFePY4OMOI,17958
|
|
225
|
+
atlas/tests/test_tool_approval_config.py,sha256=vDLtNOs4X_ZDHDi06xch6k4cc6gq7AJNYHyd8_zStPQ,3943
|
|
226
|
+
atlas/tests/test_tool_approval_utils.py,sha256=h35PlHbw51F1afQaHtoUqrd5EqO-KpTHXWCTDW_uNww,12950
|
|
227
|
+
atlas/tests/test_tool_authorization_group_filtering.py,sha256=eG6Id4VbZpouQiY8Fyx71lA_wo-9n_coAVXB1Iit4B0,8126
|
|
228
|
+
atlas/tests/test_tool_details_in_config.py,sha256=uF_1FoSFmaEO-lWk1EoTvFdTqtJdBFdT9Nbfr7Sse_I,4053
|
|
229
|
+
atlas/tests/test_tool_planner.py,sha256=uC5454XxdbWiKE28p4Y1jN_w1zsKZYsA5JdiDn1EKgg,11777
|
|
230
|
+
atlas/tests/test_unified_rag_service.py,sha256=0KkWMD1UOGrWv8i0TRc1zwWlhgJsRD4GktGh-PrbAiE,15698
|
|
231
|
+
atlas/tests/test_username_override_in_approval.py,sha256=jotXMAhWd1ThkZKVwPd_M1CRUPCvd4Qk98Vl0-NguNs,8699
|
|
232
|
+
atlas/tests/test_websocket_auth_header.py,sha256=SCJW5Nx2aeXg-3DPBu3hmPlL6K_rXfn_EKve3-GdLhY,7153
|
|
233
|
+
atlas/tests/integration/test_mcp_auth_integration.py,sha256=Bh9Q19iBYgK4UlR8_Dpcp94WFKY_V3vbtn0uhXCr6R0,7047
|
|
234
|
+
atlas/tests/modules/mcp_tools/test_client_auth.py,sha256=Po4849ALEzO3aEDOat2-OS7jp1mdiV70sf-5wd6sNsc,9363
|
|
235
|
+
atlas/tests/modules/mcp_tools/test_client_env.py,sha256=ByyNKTC68XOSVHF77Uf8Y71UexIHcyj6zmuFWpp6vb8,7941
|
|
236
|
+
atlas_chat-0.1.0.data/data/.env.example,sha256=vEC7rt06kLdh_--zVHrKsDN-N6V5Pw5PuQZpZ4q8fMs,10549
|
|
237
|
+
atlas_chat-0.1.0.data/data/config/defaults/compliance-levels.json,sha256=cRYr6kFAmr3mooEN70jkO-vctjCG3XrWwTV_ftJQcQg,1421
|
|
238
|
+
atlas_chat-0.1.0.data/data/config/defaults/domain-whitelist.json,sha256=GqHZACPKPjF70NrW1BwcvQixSRyQD8wT05MVxtMhntk,3650
|
|
239
|
+
atlas_chat-0.1.0.data/data/config/defaults/file-extractors.json,sha256=qZ13Omdu28mMcVyICyOGxc_d4Yd56syIZcwCegULLEE,1920
|
|
240
|
+
atlas_chat-0.1.0.data/data/config/defaults/help-config.json,sha256=oDXxMJefuDGOBL7zPj48TyrAC4CFBQpM5OGDFi61DMA,8106
|
|
241
|
+
atlas_chat-0.1.0.data/data/config/defaults/llmconfig-buggy.yml,sha256=-PpvFsKPfIokHzdzMY4OXI-S3E7hCp3LmTFqNy6q3Ac,405
|
|
242
|
+
atlas_chat-0.1.0.data/data/config/defaults/llmconfig.yml,sha256=ck_TRyRSYtdf4cm1LqOZskNY2SBVsRSrC5OI7Osf1P4,643
|
|
243
|
+
atlas_chat-0.1.0.data/data/config/defaults/mcp.json,sha256=KBNNNDNa5fMpA3xVKrTE7WfhdFdna7coMh8QJbnLUUA,3973
|
|
244
|
+
atlas_chat-0.1.0.data/data/config/defaults/rag-sources.json,sha256=HD3Wco_II0uB4012Yz-yLVb3Q85FUKU-UorCCI0tkX0,401
|
|
245
|
+
atlas_chat-0.1.0.data/data/config/defaults/splash-config.json,sha256=PeE_gKE03r03SWSyJkZkIQdkmPRL7yMG_31RYnE3_ec,368
|
|
246
|
+
atlas_chat-0.1.0.dist-info/METADATA,sha256=xrIRc_XUVt1mtQY_JG9hH4nWGponqBZ0sXB6Q4GB_J0,8533
|
|
247
|
+
atlas_chat-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
248
|
+
atlas_chat-0.1.0.dist-info/entry_points.txt,sha256=mfa6-m0BR3pJQWu6GDwcveP-CM5IY6gLJVxryViDf84,127
|
|
249
|
+
atlas_chat-0.1.0.dist-info/top_level.txt,sha256=53ZN7cZuQ3hzKg-W7531I13UDIwjSNwHrLkgCFZMN2E,6
|
|
250
|
+
atlas_chat-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
atlas
|