aria-code 4.1.3__tar.gz
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.
- aria_code-4.1.3/LICENSE +121 -0
- aria_code-4.1.3/PKG-INFO +952 -0
- aria_code-4.1.3/README.md +825 -0
- aria_code-4.1.3/agents/__init__.py +32 -0
- aria_code-4.1.3/agents/base.py +190 -0
- aria_code-4.1.3/agents/deep/__init__.py +37 -0
- aria_code-4.1.3/agents/deep/calibration_loop.py +144 -0
- aria_code-4.1.3/agents/deep/critic.py +125 -0
- aria_code-4.1.3/agents/deep/deepen.py +193 -0
- aria_code-4.1.3/agents/deep/models.py +149 -0
- aria_code-4.1.3/agents/deep/pipeline.py +164 -0
- aria_code-4.1.3/agents/deep/quant_fusion.py +192 -0
- aria_code-4.1.3/agents/deep/themes.py +95 -0
- aria_code-4.1.3/agents/deep/tiers.py +106 -0
- aria_code-4.1.3/agents/financial/__init__.py +10 -0
- aria_code-4.1.3/agents/financial/catalyst.py +279 -0
- aria_code-4.1.3/agents/financial/debate.py +145 -0
- aria_code-4.1.3/agents/financial/earnings.py +303 -0
- aria_code-4.1.3/agents/financial/fundamental.py +159 -0
- aria_code-4.1.3/agents/financial/macro.py +99 -0
- aria_code-4.1.3/agents/financial/news.py +207 -0
- aria_code-4.1.3/agents/financial/risk.py +132 -0
- aria_code-4.1.3/agents/financial/sector.py +279 -0
- aria_code-4.1.3/agents/financial/synthesis.py +274 -0
- aria_code-4.1.3/agents/financial/technical.py +258 -0
- aria_code-4.1.3/agents/portfolio_agent.py +333 -0
- aria_code-4.1.3/agents/realty/__init__.py +62 -0
- aria_code-4.1.3/agents/realty/asset_diagnosis.py +150 -0
- aria_code-4.1.3/agents/realty/business_match.py +165 -0
- aria_code-4.1.3/agents/realty/cashflow_verify.py +208 -0
- aria_code-4.1.3/agents/realty/contract_rules.py +209 -0
- aria_code-4.1.3/agents/realty/energy_anomaly.py +188 -0
- aria_code-4.1.3/agents/realty/exit_settlement.py +207 -0
- aria_code-4.1.3/agents/realty/fulfillment_risk.py +205 -0
- aria_code-4.1.3/agents/realty/ops_optimize.py +159 -0
- aria_code-4.1.3/agents/realty/revenue_share.py +214 -0
- aria_code-4.1.3/agents/registry.py +144 -0
- aria_code-4.1.3/agents/sports/__init__.py +0 -0
- aria_code-4.1.3/agents/sports/football_agent.py +169 -0
- aria_code-4.1.3/agents/team.py +289 -0
- aria_code-4.1.3/aliyun_data_client.py +660 -0
- aria_code-4.1.3/apps/README.md +12 -0
- aria_code-4.1.3/apps/__init__.py +2 -0
- aria_code-4.1.3/apps/channels/README.md +15 -0
- aria_code-4.1.3/apps/cli/README.md +13 -0
- aria_code-4.1.3/apps/cli/__init__.py +2 -0
- aria_code-4.1.3/apps/cli/bootstrap.py +99 -0
- aria_code-4.1.3/apps/cli/codegen_paths.py +29 -0
- aria_code-4.1.3/apps/cli/commands/__init__.py +16 -0
- aria_code-4.1.3/apps/cli/commands/analysis_cmds.py +288 -0
- aria_code-4.1.3/apps/cli/commands/backtest_cmds.py +1887 -0
- aria_code-4.1.3/apps/cli/commands/broker_cmds.py +1154 -0
- aria_code-4.1.3/apps/cli/commands/business_workflow_cmds.py +289 -0
- aria_code-4.1.3/apps/cli/commands/catalog.py +84 -0
- aria_code-4.1.3/apps/cli/commands/data_cmds.py +405 -0
- aria_code-4.1.3/apps/cli/commands/diagnostic_cmds.py +179 -0
- aria_code-4.1.3/apps/cli/commands/diagnostic_ops_cmds.py +696 -0
- aria_code-4.1.3/apps/cli/commands/finance_render.py +12 -0
- aria_code-4.1.3/apps/cli/commands/market.py +399 -0
- aria_code-4.1.3/apps/cli/commands/market_cmds.py +1276 -0
- aria_code-4.1.3/apps/cli/commands/market_context.py +425 -0
- aria_code-4.1.3/apps/cli/commands/market_render.py +7 -0
- aria_code-4.1.3/apps/cli/commands/model_cmds.py +1579 -0
- aria_code-4.1.3/apps/cli/commands/ops_cmds.py +668 -0
- aria_code-4.1.3/apps/cli/commands/portfolio_cmds.py +962 -0
- aria_code-4.1.3/apps/cli/commands/report.py +377 -0
- aria_code-4.1.3/apps/cli/commands/scaffold_templates.py +617 -0
- aria_code-4.1.3/apps/cli/commands/session_cmds.py +179 -0
- aria_code-4.1.3/apps/cli/commands/session_ux_cmds.py +280 -0
- aria_code-4.1.3/apps/cli/commands/team.py +588 -0
- aria_code-4.1.3/apps/cli/commands/team_render.py +8 -0
- aria_code-4.1.3/apps/cli/commands/ui_cmds.py +358 -0
- aria_code-4.1.3/apps/cli/commands/workflow_cmds.py +279 -0
- aria_code-4.1.3/apps/cli/commands/workspace_cmds.py +1414 -0
- aria_code-4.1.3/apps/cli/config_paths.py +70 -0
- aria_code-4.1.3/apps/cli/config_store.py +61 -0
- aria_code-4.1.3/apps/cli/deterministic.py +122 -0
- aria_code-4.1.3/apps/cli/direct.py +48 -0
- aria_code-4.1.3/apps/cli/github_app_auth.py +135 -0
- aria_code-4.1.3/apps/cli/handlers/__init__.py +11 -0
- aria_code-4.1.3/apps/cli/handlers/broker_handlers.py +122 -0
- aria_code-4.1.3/apps/cli/handlers/chart_handlers.py +1309 -0
- aria_code-4.1.3/apps/cli/handlers/market_handlers.py +2509 -0
- aria_code-4.1.3/apps/cli/handlers/realty_handlers.py +114 -0
- aria_code-4.1.3/apps/cli/handlers/strategy_advice.py +82 -0
- aria_code-4.1.3/apps/cli/hooks.py +180 -0
- aria_code-4.1.3/apps/cli/i18n.py +284 -0
- aria_code-4.1.3/apps/cli/intent.py +136 -0
- aria_code-4.1.3/apps/cli/intent_router.py +217 -0
- aria_code-4.1.3/apps/cli/lifecycle_hooks.py +48 -0
- aria_code-4.1.3/apps/cli/main.py +29 -0
- aria_code-4.1.3/apps/cli/market_metadata.py +135 -0
- aria_code-4.1.3/apps/cli/market_universe.py +265 -0
- aria_code-4.1.3/apps/cli/message_processing.py +257 -0
- aria_code-4.1.3/apps/cli/plan_mode.py +139 -0
- aria_code-4.1.3/apps/cli/plotly_html.py +15 -0
- aria_code-4.1.3/apps/cli/prediction_feedback.py +202 -0
- aria_code-4.1.3/apps/cli/preflight.py +497 -0
- aria_code-4.1.3/apps/cli/project_aria.py +60 -0
- aria_code-4.1.3/apps/cli/prompts/__init__.py +0 -0
- aria_code-4.1.3/apps/cli/prompts/coding.py +658 -0
- aria_code-4.1.3/apps/cli/prompts/system_prompts.py +531 -0
- aria_code-4.1.3/apps/cli/prompts/ui.py +434 -0
- aria_code-4.1.3/apps/cli/providers/__init__.py +1 -0
- aria_code-4.1.3/apps/cli/providers/base.py +271 -0
- aria_code-4.1.3/apps/cli/providers/chat_routing.py +80 -0
- aria_code-4.1.3/apps/cli/providers/llm/__init__.py +1 -0
- aria_code-4.1.3/apps/cli/providers/llm/ollama_stream.py +1170 -0
- aria_code-4.1.3/apps/cli/providers/llm/sse_stream.py +216 -0
- aria_code-4.1.3/apps/cli/providers/runtime_bridge.py +185 -0
- aria_code-4.1.3/apps/cli/runtime_consumer.py +489 -0
- aria_code-4.1.3/apps/cli/session_export.py +87 -0
- aria_code-4.1.3/apps/cli/session_jsonl.py +207 -0
- aria_code-4.1.3/apps/cli/session_store.py +112 -0
- aria_code-4.1.3/apps/cli/todo_tracker.py +190 -0
- aria_code-4.1.3/apps/cli/tools/__init__.py +40 -0
- aria_code-4.1.3/apps/cli/tools/context.py +46 -0
- aria_code-4.1.3/apps/cli/tools/file_tools.py +112 -0
- aria_code-4.1.3/apps/cli/tools/market_tools.py +549 -0
- aria_code-4.1.3/apps/cli/tools/notebook_tools.py +111 -0
- aria_code-4.1.3/apps/cli/tools/system_tools.py +669 -0
- aria_code-4.1.3/apps/cli/tools/write_tools.py +715 -0
- aria_code-4.1.3/apps/cli/tradingview_bridge.py +434 -0
- aria_code-4.1.3/apps/cli/update_check.py +152 -0
- aria_code-4.1.3/apps/cli/utils/__init__.py +0 -0
- aria_code-4.1.3/apps/cli/utils/market_detect.py +1578 -0
- aria_code-4.1.3/apps/daemon/README.md +14 -0
- aria_code-4.1.3/apps/vscode/README.md +115 -0
- aria_code-4.1.3/apps/vscode/package.json +70 -0
- aria_code-4.1.3/aria_cli.py +11636 -0
- aria_code-4.1.3/aria_code.egg-info/PKG-INFO +952 -0
- aria_code-4.1.3/aria_code.egg-info/SOURCES.txt +349 -0
- aria_code-4.1.3/aria_code.egg-info/dependency_links.txt +1 -0
- aria_code-4.1.3/aria_code.egg-info/entry_points.txt +2 -0
- aria_code-4.1.3/aria_code.egg-info/requires.txt +123 -0
- aria_code-4.1.3/aria_code.egg-info/top_level.txt +50 -0
- aria_code-4.1.3/aria_daemon.py +1295 -0
- aria_code-4.1.3/aria_feishu_bot.py +1359 -0
- aria_code-4.1.3/aria_relay_client.py +182 -0
- aria_code-4.1.3/aria_relay_server.py +405 -0
- aria_code-4.1.3/aria_telegram_bot.py +202 -0
- aria_code-4.1.3/ariarc.py +328 -0
- aria_code-4.1.3/artifacts.py +491 -0
- aria_code-4.1.3/backtest_report.py +472 -0
- aria_code-4.1.3/brokers/__init__.py +72 -0
- aria_code-4.1.3/brokers/base.py +207 -0
- aria_code-4.1.3/brokers/capabilities.py +264 -0
- aria_code-4.1.3/brokers/cn/__init__.py +10 -0
- aria_code-4.1.3/brokers/cn/easytrader_broker.py +193 -0
- aria_code-4.1.3/brokers/cn/futu_broker.py +194 -0
- aria_code-4.1.3/brokers/cn/longbridge_broker.py +190 -0
- aria_code-4.1.3/brokers/cn/tiger_broker.py +196 -0
- aria_code-4.1.3/brokers/cn/xtquant_broker.py +175 -0
- aria_code-4.1.3/brokers/config.py +364 -0
- aria_code-4.1.3/brokers/intl/__init__.py +5 -0
- aria_code-4.1.3/brokers/intl/alpaca_broker.py +183 -0
- aria_code-4.1.3/brokers/intl/ibkr_broker.py +215 -0
- aria_code-4.1.3/brokers/intl/webull_broker.py +156 -0
- aria_code-4.1.3/brokers/paper_broker.py +259 -0
- aria_code-4.1.3/brokers/planning.py +296 -0
- aria_code-4.1.3/brokers/registry.py +181 -0
- aria_code-4.1.3/brokers/trading.py +237 -0
- aria_code-4.1.3/change_store.py +127 -0
- aria_code-4.1.3/command_safety.py +19 -0
- aria_code-4.1.3/computer_use_tools.py +504 -0
- aria_code-4.1.3/dashboard_generator.py +578 -0
- aria_code-4.1.3/data_analysis_tools.py +808 -0
- aria_code-4.1.3/data_cleaner.py +483 -0
- aria_code-4.1.3/data_service.py +481 -0
- aria_code-4.1.3/datasources/__init__.py +23 -0
- aria_code-4.1.3/datasources/base.py +166 -0
- aria_code-4.1.3/datasources/router.py +221 -0
- aria_code-4.1.3/datasources/sources/__init__.py +15 -0
- aria_code-4.1.3/datasources/sources/akshare_source.py +269 -0
- aria_code-4.1.3/datasources/sources/alpha_vantage_source.py +202 -0
- aria_code-4.1.3/datasources/sources/edgar_source.py +218 -0
- aria_code-4.1.3/datasources/sources/finnhub_source.py +197 -0
- aria_code-4.1.3/datasources/sources/fred_source.py +219 -0
- aria_code-4.1.3/datasources/sources/tushare_source.py +141 -0
- aria_code-4.1.3/datasources/sources/web_scraper_source.py +278 -0
- aria_code-4.1.3/datasources/sources/world_bank_source.py +205 -0
- aria_code-4.1.3/datasources/sources/yfinance_source.py +152 -0
- aria_code-4.1.3/demo_player.py +204 -0
- aria_code-4.1.3/doctor.py +508 -0
- aria_code-4.1.3/file_analysis_tools.py +734 -0
- aria_code-4.1.3/finance_formulas.py +389 -0
- aria_code-4.1.3/football_data_client.py +1670 -0
- aria_code-4.1.3/intent_classifier.py +358 -0
- aria_code-4.1.3/local_finance_tools.py +3221 -0
- aria_code-4.1.3/local_llm_provider.py +552 -0
- aria_code-4.1.3/macro_tools.py +368 -0
- aria_code-4.1.3/market_data_client.py +1899 -0
- aria_code-4.1.3/mcp_client.py +506 -0
- aria_code-4.1.3/memory_manager.py +245 -0
- aria_code-4.1.3/model_capability.py +416 -0
- aria_code-4.1.3/notification_tools.py +248 -0
- aria_code-4.1.3/packages/__init__.py +23 -0
- aria_code-4.1.3/packages/aria_agents/__init__.py +5 -0
- aria_code-4.1.3/packages/aria_agents/manifest.py +69 -0
- aria_code-4.1.3/packages/aria_core/__init__.py +34 -0
- aria_code-4.1.3/packages/aria_core/architecture.py +192 -0
- aria_code-4.1.3/packages/aria_core/export.py +124 -0
- aria_code-4.1.3/packages/aria_core/manifest.py +65 -0
- aria_code-4.1.3/packages/aria_infra/__init__.py +15 -0
- aria_code-4.1.3/packages/aria_infra/arthera.py +52 -0
- aria_code-4.1.3/packages/aria_infra/doctor.py +246 -0
- aria_code-4.1.3/packages/aria_infra/product.py +37 -0
- aria_code-4.1.3/packages/aria_mcp/__init__.py +25 -0
- aria_code-4.1.3/packages/aria_mcp/bridge.py +38 -0
- aria_code-4.1.3/packages/aria_mcp/config.py +97 -0
- aria_code-4.1.3/packages/aria_mcp/tools.py +61 -0
- aria_code-4.1.3/packages/aria_sdk/__init__.py +19 -0
- aria_code-4.1.3/packages/aria_sdk/client.py +396 -0
- aria_code-4.1.3/packages/aria_sdk/providers.py +70 -0
- aria_code-4.1.3/packages/aria_sdk/streaming.py +73 -0
- aria_code-4.1.3/packages/aria_sdk/types.py +86 -0
- aria_code-4.1.3/packages/aria_services/__init__.py +55 -0
- aria_code-4.1.3/packages/aria_services/context.py +258 -0
- aria_code-4.1.3/packages/aria_services/data.py +11 -0
- aria_code-4.1.3/packages/aria_services/provider_health.py +189 -0
- aria_code-4.1.3/packages/aria_services/registry.py +213 -0
- aria_code-4.1.3/packages/aria_services/usage.py +138 -0
- aria_code-4.1.3/packages/aria_skills/__init__.py +5 -0
- aria_code-4.1.3/packages/aria_skills/registry.py +59 -0
- aria_code-4.1.3/packages/aria_tools/__init__.py +5 -0
- aria_code-4.1.3/packages/aria_tools/registry.py +128 -0
- aria_code-4.1.3/packages/quant_engine/__init__.py +6 -0
- aria_code-4.1.3/packages/quant_engine/sports/__init__.py +72 -0
- aria_code-4.1.3/packages/quant_engine/sports/calibrator.py +353 -0
- aria_code-4.1.3/packages/quant_engine/sports/dixon_coles.py +234 -0
- aria_code-4.1.3/packages/quant_engine/sports/elo.py +299 -0
- aria_code-4.1.3/packages/quant_engine/sports/form.py +188 -0
- aria_code-4.1.3/packages/quant_engine/sports/h2h.py +195 -0
- aria_code-4.1.3/packages/quant_engine/sports/ml_model.py +354 -0
- aria_code-4.1.3/packages/quant_engine/sports/predictor.py +311 -0
- aria_code-4.1.3/packages/quant_engine/sports/tracker.py +664 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/__init__.py +27 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/gbm_enhanced.py +195 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/ito_calculus.py +477 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/kelly_criterion.py +181 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/monte_carlo_advanced.py +95 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/options_pricing.py +573 -0
- aria_code-4.1.3/packages/quant_engine/stochastic/stochastic_processes.py +90 -0
- aria_code-4.1.3/plan_utils.py +194 -0
- aria_code-4.1.3/plugin_loader.py +328 -0
- aria_code-4.1.3/portfolio_ledger.py +262 -0
- aria_code-4.1.3/privacy/__init__.py +5 -0
- aria_code-4.1.3/privacy/feedback.py +123 -0
- aria_code-4.1.3/project_tools.py +525 -0
- aria_code-4.1.3/providers/__init__.py +30 -0
- aria_code-4.1.3/providers/llm/__init__.py +19 -0
- aria_code-4.1.3/providers/llm/anthropic.py +184 -0
- aria_code-4.1.3/providers/llm/base.py +139 -0
- aria_code-4.1.3/providers/llm/ollama.py +128 -0
- aria_code-4.1.3/providers/llm/openai_compat.py +282 -0
- aria_code-4.1.3/providers/llm/registry.py +358 -0
- aria_code-4.1.3/pyproject.toml +267 -0
- aria_code-4.1.3/realty_data_tools.py +659 -0
- aria_code-4.1.3/report_generator.py +1314 -0
- aria_code-4.1.3/runtime/__init__.py +103 -0
- aria_code-4.1.3/runtime/agent_loop.py +1183 -0
- aria_code-4.1.3/runtime/approval.py +51 -0
- aria_code-4.1.3/runtime/events.py +102 -0
- aria_code-4.1.3/runtime/gateway.py +128 -0
- aria_code-4.1.3/runtime/lsp.py +346 -0
- aria_code-4.1.3/runtime/subagent.py +258 -0
- aria_code-4.1.3/runtime/tool_executor.py +104 -0
- aria_code-4.1.3/runtime/tool_policy.py +106 -0
- aria_code-4.1.3/safety/__init__.py +21 -0
- aria_code-4.1.3/safety/permissions.py +275 -0
- aria_code-4.1.3/setup.cfg +4 -0
- aria_code-4.1.3/setup_wizard.py +653 -0
- aria_code-4.1.3/strategy_vault.py +420 -0
- aria_code-4.1.3/tests/test_architecture_report.py +34 -0
- aria_code-4.1.3/tests/test_aria_cli_core.py +658 -0
- aria_code-4.1.3/tests/test_aria_sdk.py +284 -0
- aria_code-4.1.3/tests/test_artifacts_and_reports.py +405 -0
- aria_code-4.1.3/tests/test_backtest_cmds.py +96 -0
- aria_code-4.1.3/tests/test_backtest_report.py +112 -0
- aria_code-4.1.3/tests/test_broker_planning.py +89 -0
- aria_code-4.1.3/tests/test_business_workflow_cmds.py +53 -0
- aria_code-4.1.3/tests/test_chart_handlers.py +176 -0
- aria_code-4.1.3/tests/test_chat_routing.py +55 -0
- aria_code-4.1.3/tests/test_cli_app_split.py +941 -0
- aria_code-4.1.3/tests/test_cli_bootstrap.py +42 -0
- aria_code-4.1.3/tests/test_cli_config_store.py +34 -0
- aria_code-4.1.3/tests/test_cli_lifecycle_hooks.py +30 -0
- aria_code-4.1.3/tests/test_cli_runtime_consumer.py +116 -0
- aria_code-4.1.3/tests/test_codegen_output.py +48 -0
- aria_code-4.1.3/tests/test_command_safety.py +33 -0
- aria_code-4.1.3/tests/test_completions_builder.py +75 -0
- aria_code-4.1.3/tests/test_config_paths.py +35 -0
- aria_code-4.1.3/tests/test_context_service.py +98 -0
- aria_code-4.1.3/tests/test_dashboard_generator.py +79 -0
- aria_code-4.1.3/tests/test_data_service.py +180 -0
- aria_code-4.1.3/tests/test_deep_analysis.py +337 -0
- aria_code-4.1.3/tests/test_doctor.py +166 -0
- aria_code-4.1.3/tests/test_football_prediction_output.py +129 -0
- aria_code-4.1.3/tests/test_image_inputs.py +62 -0
- aria_code-4.1.3/tests/test_intent_router.py +34 -0
- aria_code-4.1.3/tests/test_lsp.py +152 -0
- aria_code-4.1.3/tests/test_market_data_client.py +419 -0
- aria_code-4.1.3/tests/test_market_history_tool.py +109 -0
- aria_code-4.1.3/tests/test_market_universe.py +44 -0
- aria_code-4.1.3/tests/test_new_modules.py +705 -0
- aria_code-4.1.3/tests/test_output_rendering.py +610 -0
- aria_code-4.1.3/tests/test_packages_facade.py +404 -0
- aria_code-4.1.3/tests/test_plan_mode.py +80 -0
- aria_code-4.1.3/tests/test_plotly_html_output.py +91 -0
- aria_code-4.1.3/tests/test_preflight.py +150 -0
- aria_code-4.1.3/tests/test_privacy_feedback.py +68 -0
- aria_code-4.1.3/tests/test_project_aria.py +19 -0
- aria_code-4.1.3/tests/test_provider_integration.py +373 -0
- aria_code-4.1.3/tests/test_provider_registry.py +256 -0
- aria_code-4.1.3/tests/test_runtime_agent_loop.py +683 -0
- aria_code-4.1.3/tests/test_runtime_approval.py +44 -0
- aria_code-4.1.3/tests/test_runtime_bridge.py +83 -0
- aria_code-4.1.3/tests/test_runtime_bridge_fallback.py +139 -0
- aria_code-4.1.3/tests/test_runtime_gateway.py +59 -0
- aria_code-4.1.3/tests/test_runtime_tool_executor.py +63 -0
- aria_code-4.1.3/tests/test_safety_permissions.py +38 -0
- aria_code-4.1.3/tests/test_session_search.py +110 -0
- aria_code-4.1.3/tests/test_streaming_pipeline.py +249 -0
- aria_code-4.1.3/tests/test_subagent.py +120 -0
- aria_code-4.1.3/tests/test_system_prompts.py +35 -0
- aria_code-4.1.3/tests/test_system_tools_output.py +76 -0
- aria_code-4.1.3/tests/test_team_synthesis.py +74 -0
- aria_code-4.1.3/tests/test_tool_policy.py +81 -0
- aria_code-4.1.3/tests/test_trading_service.py +141 -0
- aria_code-4.1.3/tests/test_tradingview_bridge.py +136 -0
- aria_code-4.1.3/tests/test_ui_console_theme.py +34 -0
- aria_code-4.1.3/tests/test_ui_input_box.py +172 -0
- aria_code-4.1.3/tests/test_ui_robot_banner.py +92 -0
- aria_code-4.1.3/tests/test_workspace_files.py +47 -0
- aria_code-4.1.3/tests/test_workspace_verify.py +38 -0
- aria_code-4.1.3/ui/__init__.py +100 -0
- aria_code-4.1.3/ui/banner.py +310 -0
- aria_code-4.1.3/ui/completer.py +391 -0
- aria_code-4.1.3/ui/console.py +271 -0
- aria_code-4.1.3/ui/image_render.py +243 -0
- aria_code-4.1.3/ui/input_box.py +376 -0
- aria_code-4.1.3/ui/picker.py +195 -0
- aria_code-4.1.3/ui/render/__init__.py +11 -0
- aria_code-4.1.3/ui/render/finance.py +1480 -0
- aria_code-4.1.3/ui/render/market.py +225 -0
- aria_code-4.1.3/ui/render/output.py +681 -0
- aria_code-4.1.3/ui/render/team.py +346 -0
- aria_code-4.1.3/ui/robot.py +235 -0
- aria_code-4.1.3/workspace/__init__.py +6 -0
- aria_code-4.1.3/workspace/files.py +170 -0
- aria_code-4.1.3/workspace/verify.py +113 -0
aria_code-4.1.3/LICENSE
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
|
|
4
|
+
"Business Source License" is a trademark of MariaDB Corporation Ab.
|
|
5
|
+
|
|
6
|
+
-----------------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
Parameters
|
|
9
|
+
|
|
10
|
+
Licensor: Arthera
|
|
11
|
+
|
|
12
|
+
Licensed Work: Aria Code 4.x
|
|
13
|
+
The Licensed Work is (c) 2025–2026 Arthera.
|
|
14
|
+
|
|
15
|
+
Additional Use Grant: You may use, run, modify, and self-host the Licensed
|
|
16
|
+
Work for your own personal, internal, educational, or
|
|
17
|
+
research purposes — including making investment or
|
|
18
|
+
trading decisions for your own account or for the
|
|
19
|
+
account of the organization you work for — free of
|
|
20
|
+
charge.
|
|
21
|
+
|
|
22
|
+
You may NOT, without a separate commercial license from
|
|
23
|
+
the Licensor:
|
|
24
|
+
(a) offer the Licensed Work, or any modified version
|
|
25
|
+
of it, to third parties as a hosted, managed, or
|
|
26
|
+
software-as-a-service product; or
|
|
27
|
+
(b) distribute or sell a product or service whose
|
|
28
|
+
primary value derives from the functionality of
|
|
29
|
+
the Licensed Work.
|
|
30
|
+
|
|
31
|
+
Change Date: 2030-06-23
|
|
32
|
+
|
|
33
|
+
Change License: Apache License, Version 2.0
|
|
34
|
+
|
|
35
|
+
For information about alternative licensing arrangements for the Licensed
|
|
36
|
+
Work, please contact dev@arthera.finance.
|
|
37
|
+
|
|
38
|
+
-----------------------------------------------------------------------------
|
|
39
|
+
|
|
40
|
+
Terms
|
|
41
|
+
|
|
42
|
+
The Business Source License (this document, or the "License") is not an Open
|
|
43
|
+
Source license. However, the Licensed Work will eventually be made available
|
|
44
|
+
under an Open Source License, as stated in this License.
|
|
45
|
+
|
|
46
|
+
License grant. The Licensor hereby grants you the right to copy, modify,
|
|
47
|
+
create derivative works, redistribute, and make non-production use of the
|
|
48
|
+
Licensed Work. The Licensor may make an Additional Use Grant, above,
|
|
49
|
+
permitting limited production use.
|
|
50
|
+
|
|
51
|
+
Change License. On the Change Date, or the fourth anniversary of the first
|
|
52
|
+
publicly available distribution of a specific version of the Licensed Work
|
|
53
|
+
under this License, whichever comes first, the Licensor hereby grants you
|
|
54
|
+
rights under the terms of the Change License, and the rights granted in the
|
|
55
|
+
paragraph above terminate.
|
|
56
|
+
|
|
57
|
+
If your use of the Licensed Work does not comply with the requirements
|
|
58
|
+
currently in effect as described in this License, you must purchase a
|
|
59
|
+
commercial license from the Licensor, its affiliated entities, or authorized
|
|
60
|
+
resellers, or you must refrain from using the Licensed Work.
|
|
61
|
+
|
|
62
|
+
All copies of the original and modified Licensed Work, and derivative works of
|
|
63
|
+
the Licensed Work, are subject to this License. This License applies
|
|
64
|
+
separately for each version of the Licensed Work and the Change Date may vary
|
|
65
|
+
for each version of the Licensed Work released by Licensor.
|
|
66
|
+
|
|
67
|
+
You must conspicuously display this License on each original or modified copy
|
|
68
|
+
of the Licensed Work. If you receive the Licensed Work in original or modified
|
|
69
|
+
form from a third party, the terms and conditions set forth in this License
|
|
70
|
+
apply to your use of that work.
|
|
71
|
+
|
|
72
|
+
Any use of the Licensed Work in violation of this License will automatically
|
|
73
|
+
terminate your rights under this License for the current and all other
|
|
74
|
+
versions of the Licensed Work.
|
|
75
|
+
|
|
76
|
+
This License does not grant you any right in any trademark or logo of Licensor
|
|
77
|
+
or its affiliates (provided that you may use a trademark or logo of Licensor
|
|
78
|
+
as expressly required by this License).
|
|
79
|
+
|
|
80
|
+
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN
|
|
81
|
+
"AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS
|
|
82
|
+
OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY,
|
|
83
|
+
FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.
|
|
84
|
+
|
|
85
|
+
MariaDB hereby grants you permission to use this License's text to license
|
|
86
|
+
your works, and to refer to it using the trademark "Business Source License",
|
|
87
|
+
as long as you comply with the Covenants of Licensor below.
|
|
88
|
+
|
|
89
|
+
Covenants of Licensor
|
|
90
|
+
|
|
91
|
+
In consideration of the right to use this License's text and the "Business
|
|
92
|
+
Source License" name and trademark, Licensor covenants to MariaDB, and to all
|
|
93
|
+
other recipients of the licensed work to be provided by Licensor:
|
|
94
|
+
|
|
95
|
+
1. To specify as the Change License the GPL Version 2.0 or any later version,
|
|
96
|
+
or a license that is compatible with GPL Version 2.0 or a later version,
|
|
97
|
+
where "compatible" means that software provided under the Change License can
|
|
98
|
+
be included in a program with software provided under GPL Version 2.0 or a
|
|
99
|
+
later version. Licensor may specify additional Change Licenses without
|
|
100
|
+
limitation.
|
|
101
|
+
|
|
102
|
+
2. To either: (a) specify an additional grant of rights to use that does not
|
|
103
|
+
impose any additional restriction on the right granted in this License, as
|
|
104
|
+
the Additional Use Grant; or (b) insert the text "None".
|
|
105
|
+
|
|
106
|
+
3. To specify a Change Date.
|
|
107
|
+
|
|
108
|
+
4. Not to modify this License in any other way.
|
|
109
|
+
|
|
110
|
+
Notice
|
|
111
|
+
|
|
112
|
+
The Business Source License (this document) is not an Open Source license.
|
|
113
|
+
However, the Licensed Work will eventually be made available under an Open
|
|
114
|
+
Source License, as stated in this License.
|
|
115
|
+
|
|
116
|
+
-----------------------------------------------------------------------------
|
|
117
|
+
|
|
118
|
+
Note for prior versions: Aria Code versions released before this License was
|
|
119
|
+
adopted (up to and including 4.1.2) were published under the MIT License and
|
|
120
|
+
remain available under those terms. This License governs the current version
|
|
121
|
+
and all later versions.
|