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.
Files changed (351) hide show
  1. aria_code-4.1.3/LICENSE +121 -0
  2. aria_code-4.1.3/PKG-INFO +952 -0
  3. aria_code-4.1.3/README.md +825 -0
  4. aria_code-4.1.3/agents/__init__.py +32 -0
  5. aria_code-4.1.3/agents/base.py +190 -0
  6. aria_code-4.1.3/agents/deep/__init__.py +37 -0
  7. aria_code-4.1.3/agents/deep/calibration_loop.py +144 -0
  8. aria_code-4.1.3/agents/deep/critic.py +125 -0
  9. aria_code-4.1.3/agents/deep/deepen.py +193 -0
  10. aria_code-4.1.3/agents/deep/models.py +149 -0
  11. aria_code-4.1.3/agents/deep/pipeline.py +164 -0
  12. aria_code-4.1.3/agents/deep/quant_fusion.py +192 -0
  13. aria_code-4.1.3/agents/deep/themes.py +95 -0
  14. aria_code-4.1.3/agents/deep/tiers.py +106 -0
  15. aria_code-4.1.3/agents/financial/__init__.py +10 -0
  16. aria_code-4.1.3/agents/financial/catalyst.py +279 -0
  17. aria_code-4.1.3/agents/financial/debate.py +145 -0
  18. aria_code-4.1.3/agents/financial/earnings.py +303 -0
  19. aria_code-4.1.3/agents/financial/fundamental.py +159 -0
  20. aria_code-4.1.3/agents/financial/macro.py +99 -0
  21. aria_code-4.1.3/agents/financial/news.py +207 -0
  22. aria_code-4.1.3/agents/financial/risk.py +132 -0
  23. aria_code-4.1.3/agents/financial/sector.py +279 -0
  24. aria_code-4.1.3/agents/financial/synthesis.py +274 -0
  25. aria_code-4.1.3/agents/financial/technical.py +258 -0
  26. aria_code-4.1.3/agents/portfolio_agent.py +333 -0
  27. aria_code-4.1.3/agents/realty/__init__.py +62 -0
  28. aria_code-4.1.3/agents/realty/asset_diagnosis.py +150 -0
  29. aria_code-4.1.3/agents/realty/business_match.py +165 -0
  30. aria_code-4.1.3/agents/realty/cashflow_verify.py +208 -0
  31. aria_code-4.1.3/agents/realty/contract_rules.py +209 -0
  32. aria_code-4.1.3/agents/realty/energy_anomaly.py +188 -0
  33. aria_code-4.1.3/agents/realty/exit_settlement.py +207 -0
  34. aria_code-4.1.3/agents/realty/fulfillment_risk.py +205 -0
  35. aria_code-4.1.3/agents/realty/ops_optimize.py +159 -0
  36. aria_code-4.1.3/agents/realty/revenue_share.py +214 -0
  37. aria_code-4.1.3/agents/registry.py +144 -0
  38. aria_code-4.1.3/agents/sports/__init__.py +0 -0
  39. aria_code-4.1.3/agents/sports/football_agent.py +169 -0
  40. aria_code-4.1.3/agents/team.py +289 -0
  41. aria_code-4.1.3/aliyun_data_client.py +660 -0
  42. aria_code-4.1.3/apps/README.md +12 -0
  43. aria_code-4.1.3/apps/__init__.py +2 -0
  44. aria_code-4.1.3/apps/channels/README.md +15 -0
  45. aria_code-4.1.3/apps/cli/README.md +13 -0
  46. aria_code-4.1.3/apps/cli/__init__.py +2 -0
  47. aria_code-4.1.3/apps/cli/bootstrap.py +99 -0
  48. aria_code-4.1.3/apps/cli/codegen_paths.py +29 -0
  49. aria_code-4.1.3/apps/cli/commands/__init__.py +16 -0
  50. aria_code-4.1.3/apps/cli/commands/analysis_cmds.py +288 -0
  51. aria_code-4.1.3/apps/cli/commands/backtest_cmds.py +1887 -0
  52. aria_code-4.1.3/apps/cli/commands/broker_cmds.py +1154 -0
  53. aria_code-4.1.3/apps/cli/commands/business_workflow_cmds.py +289 -0
  54. aria_code-4.1.3/apps/cli/commands/catalog.py +84 -0
  55. aria_code-4.1.3/apps/cli/commands/data_cmds.py +405 -0
  56. aria_code-4.1.3/apps/cli/commands/diagnostic_cmds.py +179 -0
  57. aria_code-4.1.3/apps/cli/commands/diagnostic_ops_cmds.py +696 -0
  58. aria_code-4.1.3/apps/cli/commands/finance_render.py +12 -0
  59. aria_code-4.1.3/apps/cli/commands/market.py +399 -0
  60. aria_code-4.1.3/apps/cli/commands/market_cmds.py +1276 -0
  61. aria_code-4.1.3/apps/cli/commands/market_context.py +425 -0
  62. aria_code-4.1.3/apps/cli/commands/market_render.py +7 -0
  63. aria_code-4.1.3/apps/cli/commands/model_cmds.py +1579 -0
  64. aria_code-4.1.3/apps/cli/commands/ops_cmds.py +668 -0
  65. aria_code-4.1.3/apps/cli/commands/portfolio_cmds.py +962 -0
  66. aria_code-4.1.3/apps/cli/commands/report.py +377 -0
  67. aria_code-4.1.3/apps/cli/commands/scaffold_templates.py +617 -0
  68. aria_code-4.1.3/apps/cli/commands/session_cmds.py +179 -0
  69. aria_code-4.1.3/apps/cli/commands/session_ux_cmds.py +280 -0
  70. aria_code-4.1.3/apps/cli/commands/team.py +588 -0
  71. aria_code-4.1.3/apps/cli/commands/team_render.py +8 -0
  72. aria_code-4.1.3/apps/cli/commands/ui_cmds.py +358 -0
  73. aria_code-4.1.3/apps/cli/commands/workflow_cmds.py +279 -0
  74. aria_code-4.1.3/apps/cli/commands/workspace_cmds.py +1414 -0
  75. aria_code-4.1.3/apps/cli/config_paths.py +70 -0
  76. aria_code-4.1.3/apps/cli/config_store.py +61 -0
  77. aria_code-4.1.3/apps/cli/deterministic.py +122 -0
  78. aria_code-4.1.3/apps/cli/direct.py +48 -0
  79. aria_code-4.1.3/apps/cli/github_app_auth.py +135 -0
  80. aria_code-4.1.3/apps/cli/handlers/__init__.py +11 -0
  81. aria_code-4.1.3/apps/cli/handlers/broker_handlers.py +122 -0
  82. aria_code-4.1.3/apps/cli/handlers/chart_handlers.py +1309 -0
  83. aria_code-4.1.3/apps/cli/handlers/market_handlers.py +2509 -0
  84. aria_code-4.1.3/apps/cli/handlers/realty_handlers.py +114 -0
  85. aria_code-4.1.3/apps/cli/handlers/strategy_advice.py +82 -0
  86. aria_code-4.1.3/apps/cli/hooks.py +180 -0
  87. aria_code-4.1.3/apps/cli/i18n.py +284 -0
  88. aria_code-4.1.3/apps/cli/intent.py +136 -0
  89. aria_code-4.1.3/apps/cli/intent_router.py +217 -0
  90. aria_code-4.1.3/apps/cli/lifecycle_hooks.py +48 -0
  91. aria_code-4.1.3/apps/cli/main.py +29 -0
  92. aria_code-4.1.3/apps/cli/market_metadata.py +135 -0
  93. aria_code-4.1.3/apps/cli/market_universe.py +265 -0
  94. aria_code-4.1.3/apps/cli/message_processing.py +257 -0
  95. aria_code-4.1.3/apps/cli/plan_mode.py +139 -0
  96. aria_code-4.1.3/apps/cli/plotly_html.py +15 -0
  97. aria_code-4.1.3/apps/cli/prediction_feedback.py +202 -0
  98. aria_code-4.1.3/apps/cli/preflight.py +497 -0
  99. aria_code-4.1.3/apps/cli/project_aria.py +60 -0
  100. aria_code-4.1.3/apps/cli/prompts/__init__.py +0 -0
  101. aria_code-4.1.3/apps/cli/prompts/coding.py +658 -0
  102. aria_code-4.1.3/apps/cli/prompts/system_prompts.py +531 -0
  103. aria_code-4.1.3/apps/cli/prompts/ui.py +434 -0
  104. aria_code-4.1.3/apps/cli/providers/__init__.py +1 -0
  105. aria_code-4.1.3/apps/cli/providers/base.py +271 -0
  106. aria_code-4.1.3/apps/cli/providers/chat_routing.py +80 -0
  107. aria_code-4.1.3/apps/cli/providers/llm/__init__.py +1 -0
  108. aria_code-4.1.3/apps/cli/providers/llm/ollama_stream.py +1170 -0
  109. aria_code-4.1.3/apps/cli/providers/llm/sse_stream.py +216 -0
  110. aria_code-4.1.3/apps/cli/providers/runtime_bridge.py +185 -0
  111. aria_code-4.1.3/apps/cli/runtime_consumer.py +489 -0
  112. aria_code-4.1.3/apps/cli/session_export.py +87 -0
  113. aria_code-4.1.3/apps/cli/session_jsonl.py +207 -0
  114. aria_code-4.1.3/apps/cli/session_store.py +112 -0
  115. aria_code-4.1.3/apps/cli/todo_tracker.py +190 -0
  116. aria_code-4.1.3/apps/cli/tools/__init__.py +40 -0
  117. aria_code-4.1.3/apps/cli/tools/context.py +46 -0
  118. aria_code-4.1.3/apps/cli/tools/file_tools.py +112 -0
  119. aria_code-4.1.3/apps/cli/tools/market_tools.py +549 -0
  120. aria_code-4.1.3/apps/cli/tools/notebook_tools.py +111 -0
  121. aria_code-4.1.3/apps/cli/tools/system_tools.py +669 -0
  122. aria_code-4.1.3/apps/cli/tools/write_tools.py +715 -0
  123. aria_code-4.1.3/apps/cli/tradingview_bridge.py +434 -0
  124. aria_code-4.1.3/apps/cli/update_check.py +152 -0
  125. aria_code-4.1.3/apps/cli/utils/__init__.py +0 -0
  126. aria_code-4.1.3/apps/cli/utils/market_detect.py +1578 -0
  127. aria_code-4.1.3/apps/daemon/README.md +14 -0
  128. aria_code-4.1.3/apps/vscode/README.md +115 -0
  129. aria_code-4.1.3/apps/vscode/package.json +70 -0
  130. aria_code-4.1.3/aria_cli.py +11636 -0
  131. aria_code-4.1.3/aria_code.egg-info/PKG-INFO +952 -0
  132. aria_code-4.1.3/aria_code.egg-info/SOURCES.txt +349 -0
  133. aria_code-4.1.3/aria_code.egg-info/dependency_links.txt +1 -0
  134. aria_code-4.1.3/aria_code.egg-info/entry_points.txt +2 -0
  135. aria_code-4.1.3/aria_code.egg-info/requires.txt +123 -0
  136. aria_code-4.1.3/aria_code.egg-info/top_level.txt +50 -0
  137. aria_code-4.1.3/aria_daemon.py +1295 -0
  138. aria_code-4.1.3/aria_feishu_bot.py +1359 -0
  139. aria_code-4.1.3/aria_relay_client.py +182 -0
  140. aria_code-4.1.3/aria_relay_server.py +405 -0
  141. aria_code-4.1.3/aria_telegram_bot.py +202 -0
  142. aria_code-4.1.3/ariarc.py +328 -0
  143. aria_code-4.1.3/artifacts.py +491 -0
  144. aria_code-4.1.3/backtest_report.py +472 -0
  145. aria_code-4.1.3/brokers/__init__.py +72 -0
  146. aria_code-4.1.3/brokers/base.py +207 -0
  147. aria_code-4.1.3/brokers/capabilities.py +264 -0
  148. aria_code-4.1.3/brokers/cn/__init__.py +10 -0
  149. aria_code-4.1.3/brokers/cn/easytrader_broker.py +193 -0
  150. aria_code-4.1.3/brokers/cn/futu_broker.py +194 -0
  151. aria_code-4.1.3/brokers/cn/longbridge_broker.py +190 -0
  152. aria_code-4.1.3/brokers/cn/tiger_broker.py +196 -0
  153. aria_code-4.1.3/brokers/cn/xtquant_broker.py +175 -0
  154. aria_code-4.1.3/brokers/config.py +364 -0
  155. aria_code-4.1.3/brokers/intl/__init__.py +5 -0
  156. aria_code-4.1.3/brokers/intl/alpaca_broker.py +183 -0
  157. aria_code-4.1.3/brokers/intl/ibkr_broker.py +215 -0
  158. aria_code-4.1.3/brokers/intl/webull_broker.py +156 -0
  159. aria_code-4.1.3/brokers/paper_broker.py +259 -0
  160. aria_code-4.1.3/brokers/planning.py +296 -0
  161. aria_code-4.1.3/brokers/registry.py +181 -0
  162. aria_code-4.1.3/brokers/trading.py +237 -0
  163. aria_code-4.1.3/change_store.py +127 -0
  164. aria_code-4.1.3/command_safety.py +19 -0
  165. aria_code-4.1.3/computer_use_tools.py +504 -0
  166. aria_code-4.1.3/dashboard_generator.py +578 -0
  167. aria_code-4.1.3/data_analysis_tools.py +808 -0
  168. aria_code-4.1.3/data_cleaner.py +483 -0
  169. aria_code-4.1.3/data_service.py +481 -0
  170. aria_code-4.1.3/datasources/__init__.py +23 -0
  171. aria_code-4.1.3/datasources/base.py +166 -0
  172. aria_code-4.1.3/datasources/router.py +221 -0
  173. aria_code-4.1.3/datasources/sources/__init__.py +15 -0
  174. aria_code-4.1.3/datasources/sources/akshare_source.py +269 -0
  175. aria_code-4.1.3/datasources/sources/alpha_vantage_source.py +202 -0
  176. aria_code-4.1.3/datasources/sources/edgar_source.py +218 -0
  177. aria_code-4.1.3/datasources/sources/finnhub_source.py +197 -0
  178. aria_code-4.1.3/datasources/sources/fred_source.py +219 -0
  179. aria_code-4.1.3/datasources/sources/tushare_source.py +141 -0
  180. aria_code-4.1.3/datasources/sources/web_scraper_source.py +278 -0
  181. aria_code-4.1.3/datasources/sources/world_bank_source.py +205 -0
  182. aria_code-4.1.3/datasources/sources/yfinance_source.py +152 -0
  183. aria_code-4.1.3/demo_player.py +204 -0
  184. aria_code-4.1.3/doctor.py +508 -0
  185. aria_code-4.1.3/file_analysis_tools.py +734 -0
  186. aria_code-4.1.3/finance_formulas.py +389 -0
  187. aria_code-4.1.3/football_data_client.py +1670 -0
  188. aria_code-4.1.3/intent_classifier.py +358 -0
  189. aria_code-4.1.3/local_finance_tools.py +3221 -0
  190. aria_code-4.1.3/local_llm_provider.py +552 -0
  191. aria_code-4.1.3/macro_tools.py +368 -0
  192. aria_code-4.1.3/market_data_client.py +1899 -0
  193. aria_code-4.1.3/mcp_client.py +506 -0
  194. aria_code-4.1.3/memory_manager.py +245 -0
  195. aria_code-4.1.3/model_capability.py +416 -0
  196. aria_code-4.1.3/notification_tools.py +248 -0
  197. aria_code-4.1.3/packages/__init__.py +23 -0
  198. aria_code-4.1.3/packages/aria_agents/__init__.py +5 -0
  199. aria_code-4.1.3/packages/aria_agents/manifest.py +69 -0
  200. aria_code-4.1.3/packages/aria_core/__init__.py +34 -0
  201. aria_code-4.1.3/packages/aria_core/architecture.py +192 -0
  202. aria_code-4.1.3/packages/aria_core/export.py +124 -0
  203. aria_code-4.1.3/packages/aria_core/manifest.py +65 -0
  204. aria_code-4.1.3/packages/aria_infra/__init__.py +15 -0
  205. aria_code-4.1.3/packages/aria_infra/arthera.py +52 -0
  206. aria_code-4.1.3/packages/aria_infra/doctor.py +246 -0
  207. aria_code-4.1.3/packages/aria_infra/product.py +37 -0
  208. aria_code-4.1.3/packages/aria_mcp/__init__.py +25 -0
  209. aria_code-4.1.3/packages/aria_mcp/bridge.py +38 -0
  210. aria_code-4.1.3/packages/aria_mcp/config.py +97 -0
  211. aria_code-4.1.3/packages/aria_mcp/tools.py +61 -0
  212. aria_code-4.1.3/packages/aria_sdk/__init__.py +19 -0
  213. aria_code-4.1.3/packages/aria_sdk/client.py +396 -0
  214. aria_code-4.1.3/packages/aria_sdk/providers.py +70 -0
  215. aria_code-4.1.3/packages/aria_sdk/streaming.py +73 -0
  216. aria_code-4.1.3/packages/aria_sdk/types.py +86 -0
  217. aria_code-4.1.3/packages/aria_services/__init__.py +55 -0
  218. aria_code-4.1.3/packages/aria_services/context.py +258 -0
  219. aria_code-4.1.3/packages/aria_services/data.py +11 -0
  220. aria_code-4.1.3/packages/aria_services/provider_health.py +189 -0
  221. aria_code-4.1.3/packages/aria_services/registry.py +213 -0
  222. aria_code-4.1.3/packages/aria_services/usage.py +138 -0
  223. aria_code-4.1.3/packages/aria_skills/__init__.py +5 -0
  224. aria_code-4.1.3/packages/aria_skills/registry.py +59 -0
  225. aria_code-4.1.3/packages/aria_tools/__init__.py +5 -0
  226. aria_code-4.1.3/packages/aria_tools/registry.py +128 -0
  227. aria_code-4.1.3/packages/quant_engine/__init__.py +6 -0
  228. aria_code-4.1.3/packages/quant_engine/sports/__init__.py +72 -0
  229. aria_code-4.1.3/packages/quant_engine/sports/calibrator.py +353 -0
  230. aria_code-4.1.3/packages/quant_engine/sports/dixon_coles.py +234 -0
  231. aria_code-4.1.3/packages/quant_engine/sports/elo.py +299 -0
  232. aria_code-4.1.3/packages/quant_engine/sports/form.py +188 -0
  233. aria_code-4.1.3/packages/quant_engine/sports/h2h.py +195 -0
  234. aria_code-4.1.3/packages/quant_engine/sports/ml_model.py +354 -0
  235. aria_code-4.1.3/packages/quant_engine/sports/predictor.py +311 -0
  236. aria_code-4.1.3/packages/quant_engine/sports/tracker.py +664 -0
  237. aria_code-4.1.3/packages/quant_engine/stochastic/__init__.py +27 -0
  238. aria_code-4.1.3/packages/quant_engine/stochastic/gbm_enhanced.py +195 -0
  239. aria_code-4.1.3/packages/quant_engine/stochastic/ito_calculus.py +477 -0
  240. aria_code-4.1.3/packages/quant_engine/stochastic/kelly_criterion.py +181 -0
  241. aria_code-4.1.3/packages/quant_engine/stochastic/monte_carlo_advanced.py +95 -0
  242. aria_code-4.1.3/packages/quant_engine/stochastic/options_pricing.py +573 -0
  243. aria_code-4.1.3/packages/quant_engine/stochastic/stochastic_processes.py +90 -0
  244. aria_code-4.1.3/plan_utils.py +194 -0
  245. aria_code-4.1.3/plugin_loader.py +328 -0
  246. aria_code-4.1.3/portfolio_ledger.py +262 -0
  247. aria_code-4.1.3/privacy/__init__.py +5 -0
  248. aria_code-4.1.3/privacy/feedback.py +123 -0
  249. aria_code-4.1.3/project_tools.py +525 -0
  250. aria_code-4.1.3/providers/__init__.py +30 -0
  251. aria_code-4.1.3/providers/llm/__init__.py +19 -0
  252. aria_code-4.1.3/providers/llm/anthropic.py +184 -0
  253. aria_code-4.1.3/providers/llm/base.py +139 -0
  254. aria_code-4.1.3/providers/llm/ollama.py +128 -0
  255. aria_code-4.1.3/providers/llm/openai_compat.py +282 -0
  256. aria_code-4.1.3/providers/llm/registry.py +358 -0
  257. aria_code-4.1.3/pyproject.toml +267 -0
  258. aria_code-4.1.3/realty_data_tools.py +659 -0
  259. aria_code-4.1.3/report_generator.py +1314 -0
  260. aria_code-4.1.3/runtime/__init__.py +103 -0
  261. aria_code-4.1.3/runtime/agent_loop.py +1183 -0
  262. aria_code-4.1.3/runtime/approval.py +51 -0
  263. aria_code-4.1.3/runtime/events.py +102 -0
  264. aria_code-4.1.3/runtime/gateway.py +128 -0
  265. aria_code-4.1.3/runtime/lsp.py +346 -0
  266. aria_code-4.1.3/runtime/subagent.py +258 -0
  267. aria_code-4.1.3/runtime/tool_executor.py +104 -0
  268. aria_code-4.1.3/runtime/tool_policy.py +106 -0
  269. aria_code-4.1.3/safety/__init__.py +21 -0
  270. aria_code-4.1.3/safety/permissions.py +275 -0
  271. aria_code-4.1.3/setup.cfg +4 -0
  272. aria_code-4.1.3/setup_wizard.py +653 -0
  273. aria_code-4.1.3/strategy_vault.py +420 -0
  274. aria_code-4.1.3/tests/test_architecture_report.py +34 -0
  275. aria_code-4.1.3/tests/test_aria_cli_core.py +658 -0
  276. aria_code-4.1.3/tests/test_aria_sdk.py +284 -0
  277. aria_code-4.1.3/tests/test_artifacts_and_reports.py +405 -0
  278. aria_code-4.1.3/tests/test_backtest_cmds.py +96 -0
  279. aria_code-4.1.3/tests/test_backtest_report.py +112 -0
  280. aria_code-4.1.3/tests/test_broker_planning.py +89 -0
  281. aria_code-4.1.3/tests/test_business_workflow_cmds.py +53 -0
  282. aria_code-4.1.3/tests/test_chart_handlers.py +176 -0
  283. aria_code-4.1.3/tests/test_chat_routing.py +55 -0
  284. aria_code-4.1.3/tests/test_cli_app_split.py +941 -0
  285. aria_code-4.1.3/tests/test_cli_bootstrap.py +42 -0
  286. aria_code-4.1.3/tests/test_cli_config_store.py +34 -0
  287. aria_code-4.1.3/tests/test_cli_lifecycle_hooks.py +30 -0
  288. aria_code-4.1.3/tests/test_cli_runtime_consumer.py +116 -0
  289. aria_code-4.1.3/tests/test_codegen_output.py +48 -0
  290. aria_code-4.1.3/tests/test_command_safety.py +33 -0
  291. aria_code-4.1.3/tests/test_completions_builder.py +75 -0
  292. aria_code-4.1.3/tests/test_config_paths.py +35 -0
  293. aria_code-4.1.3/tests/test_context_service.py +98 -0
  294. aria_code-4.1.3/tests/test_dashboard_generator.py +79 -0
  295. aria_code-4.1.3/tests/test_data_service.py +180 -0
  296. aria_code-4.1.3/tests/test_deep_analysis.py +337 -0
  297. aria_code-4.1.3/tests/test_doctor.py +166 -0
  298. aria_code-4.1.3/tests/test_football_prediction_output.py +129 -0
  299. aria_code-4.1.3/tests/test_image_inputs.py +62 -0
  300. aria_code-4.1.3/tests/test_intent_router.py +34 -0
  301. aria_code-4.1.3/tests/test_lsp.py +152 -0
  302. aria_code-4.1.3/tests/test_market_data_client.py +419 -0
  303. aria_code-4.1.3/tests/test_market_history_tool.py +109 -0
  304. aria_code-4.1.3/tests/test_market_universe.py +44 -0
  305. aria_code-4.1.3/tests/test_new_modules.py +705 -0
  306. aria_code-4.1.3/tests/test_output_rendering.py +610 -0
  307. aria_code-4.1.3/tests/test_packages_facade.py +404 -0
  308. aria_code-4.1.3/tests/test_plan_mode.py +80 -0
  309. aria_code-4.1.3/tests/test_plotly_html_output.py +91 -0
  310. aria_code-4.1.3/tests/test_preflight.py +150 -0
  311. aria_code-4.1.3/tests/test_privacy_feedback.py +68 -0
  312. aria_code-4.1.3/tests/test_project_aria.py +19 -0
  313. aria_code-4.1.3/tests/test_provider_integration.py +373 -0
  314. aria_code-4.1.3/tests/test_provider_registry.py +256 -0
  315. aria_code-4.1.3/tests/test_runtime_agent_loop.py +683 -0
  316. aria_code-4.1.3/tests/test_runtime_approval.py +44 -0
  317. aria_code-4.1.3/tests/test_runtime_bridge.py +83 -0
  318. aria_code-4.1.3/tests/test_runtime_bridge_fallback.py +139 -0
  319. aria_code-4.1.3/tests/test_runtime_gateway.py +59 -0
  320. aria_code-4.1.3/tests/test_runtime_tool_executor.py +63 -0
  321. aria_code-4.1.3/tests/test_safety_permissions.py +38 -0
  322. aria_code-4.1.3/tests/test_session_search.py +110 -0
  323. aria_code-4.1.3/tests/test_streaming_pipeline.py +249 -0
  324. aria_code-4.1.3/tests/test_subagent.py +120 -0
  325. aria_code-4.1.3/tests/test_system_prompts.py +35 -0
  326. aria_code-4.1.3/tests/test_system_tools_output.py +76 -0
  327. aria_code-4.1.3/tests/test_team_synthesis.py +74 -0
  328. aria_code-4.1.3/tests/test_tool_policy.py +81 -0
  329. aria_code-4.1.3/tests/test_trading_service.py +141 -0
  330. aria_code-4.1.3/tests/test_tradingview_bridge.py +136 -0
  331. aria_code-4.1.3/tests/test_ui_console_theme.py +34 -0
  332. aria_code-4.1.3/tests/test_ui_input_box.py +172 -0
  333. aria_code-4.1.3/tests/test_ui_robot_banner.py +92 -0
  334. aria_code-4.1.3/tests/test_workspace_files.py +47 -0
  335. aria_code-4.1.3/tests/test_workspace_verify.py +38 -0
  336. aria_code-4.1.3/ui/__init__.py +100 -0
  337. aria_code-4.1.3/ui/banner.py +310 -0
  338. aria_code-4.1.3/ui/completer.py +391 -0
  339. aria_code-4.1.3/ui/console.py +271 -0
  340. aria_code-4.1.3/ui/image_render.py +243 -0
  341. aria_code-4.1.3/ui/input_box.py +376 -0
  342. aria_code-4.1.3/ui/picker.py +195 -0
  343. aria_code-4.1.3/ui/render/__init__.py +11 -0
  344. aria_code-4.1.3/ui/render/finance.py +1480 -0
  345. aria_code-4.1.3/ui/render/market.py +225 -0
  346. aria_code-4.1.3/ui/render/output.py +681 -0
  347. aria_code-4.1.3/ui/render/team.py +346 -0
  348. aria_code-4.1.3/ui/robot.py +235 -0
  349. aria_code-4.1.3/workspace/__init__.py +6 -0
  350. aria_code-4.1.3/workspace/files.py +170 -0
  351. aria_code-4.1.3/workspace/verify.py +113 -0
@@ -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.