├── .env.example ├── .github └── workflows │ └── upstream-sync-check.yml ├── .gitignore ├── .streamlit └── config.toml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── assets ├── TauricResearch.png ├── analyst.png ├── cli │ ├── cli_init.png │ ├── cli_news.png │ ├── cli_technical.png │ └── cli_transaction.png ├── researcher.png ├── risk.png ├── schema.png ├── trader.png └── wechat.png ├── cli ├── __init__.py ├── main.py ├── models.py ├── static │ └── welcome.txt └── utils.py ├── docker-compose.yml ├── docs ├── CNAME ├── README.md ├── STRUCTURE.md ├── agents │ ├── advisors.md │ ├── analysts.md │ ├── managers.md │ ├── risk-management.md │ └── trader.md ├── architecture │ ├── agent-architecture.md │ ├── configuration-optimization.md │ ├── data-flow-architecture.md │ ├── database-architecture.md │ ├── graph-structure.md │ └── system-architecture.md ├── configuration │ ├── config-guide.md │ ├── dashscope-config.md │ ├── data-directory-configuration.md │ ├── google-ai-setup.md │ ├── llm-config.md │ └── token-tracking-guide.md ├── data │ ├── caching.md │ ├── data-processing.md │ └── data-sources.md ├── database_setup.md ├── development │ ├── branch-strategy.md │ ├── development-workflow.md │ └── project-structure.md ├── examples │ ├── advanced-examples.md │ └── basic-examples.md ├── faq │ └── faq.md ├── guides │ └── config-management-guide.md ├── overview │ ├── installation.md │ ├── project-overview.md │ └── quick-start.md ├── research-depth-guide.md ├── security │ └── api_keys_security.md ├── troubleshooting │ ├── finnhub-news-data-setup.md │ └── streamlit-file-watcher-fix.md └── usage │ ├── investment_analysis_guide.md │ └── web-interface-guide.md ├── examples ├── README.md ├── __init__.py ├── batch_analysis.py ├── cli_demo.py ├── config_management_demo.py ├── custom_analysis_demo.py ├── dashscope_examples │ ├── __init__.py │ ├── demo_dashscope.py │ ├── demo_dashscope_chinese.py │ ├── demo_dashscope_no_memory.py │ └── demo_dashscope_simple.py ├── data_dir_config_demo.py ├── my_stock_analysis.py ├── openai │ ├── __init__.py │ └── demo_openai.py ├── simple_analysis_demo.py ├── stock_list_example.py ├── stock_query_examples.py └── token_tracking_demo.py ├── main.py ├── manufacturingagents ├── agents │ ├── __init__.py │ ├── analysts │ │ ├── china_market_analyst.py │ │ ├── fundamentals_analyst.py │ │ ├── market_analyst.py │ │ ├── news_analyst.py │ │ └── social_media_analyst.py │ ├── managers │ │ ├── research_manager.py │ │ └── risk_manager.py │ ├── researchers │ │ ├── bear_researcher.py │ │ └── bull_researcher.py │ ├── risk_mgmt │ │ ├── aggresive_debator.py │ │ ├── conservative_debator.py │ │ └── neutral_debator.py │ ├── trader │ │ └── trader.py │ └── utils │ │ ├── agent_states.py │ │ ├── agent_utils.py │ │ └── memory.py ├── api │ └── stock_api.py ├── config │ ├── __init__.py │ ├── config_manager.py │ ├── database_config.py │ ├── database_manager.py │ └── mongodb_storage.py ├── dataflows │ ├── __init__.py │ ├── adaptive_cache.py │ ├── cache_manager.py │ ├── chinese_finance_utils.py │ ├── config.py │ ├── data_cache │ │ ├── china_fundamentals │ │ │ ├── 000002_fundamentals_49995e59b161.txt │ │ │ ├── 000858_fundamentals_ddcf810248de.txt │ │ │ ├── 601117_fundamentals_ab84bb106742.txt │ │ │ └── 601238_fundamentals_0e7bb7f4d09b.txt │ │ ├── china_stocks │ │ │ ├── 000001_stock_data_1dbcd45b4b3b.txt │ │ │ ├── 000001_stock_data_6990f440c63d.txt │ │ │ ├── 000001_stock_data_b3e72587cf68.txt │ │ │ ├── 000001_stock_data_f861dca9fcb3.txt │ │ │ ├── 000002_stock_data_43bb8767776a.txt │ │ │ ├── 000002_stock_data_64b23b1cc8a9.txt │ │ │ ├── 000858_stock_data_47b406e447da.txt │ │ │ ├── 300750_stock_data_6dc1c42f35be.txt │ │ │ ├── 600519_stock_data_4d6956e757b1.txt │ │ │ ├── 601117_stock_data_45d414b60545.txt │ │ │ ├── 601127_stock_data_681a997cb4d0.txt │ │ │ ├── 601127_stock_data_74df371d2be3.txt │ │ │ ├── 601127_stock_data_d0797dc91997.txt │ │ │ ├── 601127_stock_data_d6cfbaf434b0.txt │ │ │ ├── 601238_stock_data_42ed58bf2e02.txt │ │ │ └── 601238_stock_data_c9ee0f3c8a0d.txt │ │ └── us_stocks │ │ │ ├── BANK_PRODUCT_001_stock_data_1f187faec7f5.txt │ │ │ ├── PROD001_stock_data_2f50f9a1e670.txt │ │ │ ├── PROD001_stock_data_903a907e8e77.txt │ │ │ ├── PROD001_stock_data_e3fd43d87ccb.txt │ │ │ ├── STEEL_001_stock_data_d7eb2199d099.txt │ │ │ ├── TEST_ENV_stock_data_9573a5e1ae3b.txt │ │ │ ├── TEST_FINAL_stock_data_a42c38109a3a.txt │ │ │ └── TEST_OPTIMIZED_stock_data_e41e6d203669.txt │ ├── db_cache_manager.py │ ├── finnhub_utils.py │ ├── googlenews_utils.py │ ├── integrated_cache.py │ ├── interface.py │ ├── optimized_china_data.py │ ├── optimized_us_data.py │ ├── realtime_news_utils.py │ ├── reddit_utils.py │ ├── stock_api.py │ ├── stock_data_service.py │ ├── stockstats_utils.py │ ├── tdx_utils.py │ ├── utils.py │ └── yfin_utils.py ├── default_config.py ├── graph │ ├── __init__.py │ ├── conditional_logic.py │ ├── propagation.py │ ├── reflection.py │ ├── setup.py │ ├── signal_processing.py │ └── trading_graph.py ├── llm_adapters │ ├── __init__.py │ └── dashscope_adapter.py └── manufacturingagents │ ├── __init__.py │ ├── advisors │ ├── cautious_advisor.py │ └── optimistic_advisor.py │ ├── analysts │ ├── consumer_insight_analyst_react.py │ ├── industry_news_analyst_react.py │ ├── market_environment_analyst.py │ ├── market_environment_analyst_react.py │ ├── news_analyst.py │ ├── sentiment_insight_analyst.py │ ├── trend_prediction_analyst.py │ └── trend_prediction_analyst_react.py │ ├── coordinator │ └── decision_coordinator.py │ ├── dataflows │ ├── __init__.py │ ├── demand_forecast_data.py │ ├── inventory_data.py │ ├── manufacturing_data_adapter.py │ ├── market_price_data.py │ ├── production_data.py │ ├── supply_chain_data.py │ ├── test_data_flow.py │ └── test_manufacturing_adapter.py │ ├── graph │ ├── __init__.py │ └── manufacturing_graph_react.py │ ├── prompts │ ├── __init__.py │ ├── advisors │ │ ├── cautious_advisor.txt │ │ └── optimistic_advisor.txt │ ├── analysts │ │ ├── market_environment_analyst.txt │ │ ├── news_analyst.txt │ │ ├── sentiment_insight_analyst.txt │ │ └── trend_prediction_analyst.txt │ ├── coordinator │ │ └── decision_coordinator.txt │ ├── prompt_manager.py │ ├── risk_mgmt │ │ └── risk_assessment.txt │ └── utils │ │ ├── conclusion_extractor.txt │ │ └── preprocessing_assistant.txt │ ├── risk_mgmt │ ├── risk_assessment.py │ └── risk_assessment_backup.py │ └── utils │ ├── conclusion_extractor.py │ ├── data_validator.py │ ├── manufacturing_states.py │ ├── parameter_processor.py │ ├── preprocessing_assistant.py │ ├── prompt_utils.py │ ├── strict_data_policy.py │ └── tool_manager.py ├── pyproject.toml ├── requirements.txt ├── requirements_db.txt ├── scripts ├── README.md ├── deployment │ ├── README.md │ ├── create_github_release.py │ ├── release_v0.1.2.py │ └── release_v0.1.3.py ├── development │ ├── adaptive_cache_manager.py │ ├── download_finnhub_sample_data.py │ ├── fix_streamlit_watcher.py │ ├── organize_scripts.py │ └── prepare_upstream_contribution.py ├── docker │ ├── README.md │ ├── docker-compose-start.bat │ ├── mongo-init.js │ ├── start_docker_services.bat │ ├── start_docker_services.sh │ ├── start_services_alt_ports.bat │ ├── start_services_simple.bat │ ├── stop_docker_services.bat │ └── stop_docker_services.sh ├── git │ ├── README.md │ ├── setup_fork_environment.sh │ └── upstream_git_workflow.sh ├── maintenance │ ├── analyze_differences.ps1 │ ├── branch_manager.py │ ├── create_scripts_structure.ps1 │ ├── debug_integration.ps1 │ ├── finalize_script_organization.py │ ├── integrate_cache_improvements.ps1 │ ├── migrate_first_contribution.ps1 │ ├── organize_root_scripts.py │ ├── remove_contribution_from_git.ps1 │ ├── sync_upstream.py │ └── version_manager.py ├── setup │ ├── configure_pip_source.py │ ├── init_database.py │ ├── initialize_system.py │ ├── install_packages.bat │ ├── install_packages_venv.bat │ ├── manual_pip_config.py │ ├── migrate_env_to_config.py │ ├── pip_manager.bat │ ├── run_in_venv.bat │ ├── setup_databases.py │ ├── setup_fork_environment.ps1 │ ├── setup_pip_source.ps1 │ └── update_gitignore.bat ├── show_llm_output.py └── validation │ ├── README.md │ ├── check_dependencies.py │ ├── check_system_status.py │ ├── smart_config.py │ └── verify_gitignore.py ├── setup.py ├── tests ├── README.md ├── __init__.py ├── check_gemini_models.py ├── debug_imports.py ├── demo_fallback_system.py ├── diagnose_gemini_25.py ├── fast_tdx_test.py ├── final_601127_test.py ├── final_gemini_test.py ├── frontend │ └── test_frontend_terminology.py ├── integration │ ├── __init__.py │ └── test_dashscope_integration.py ├── manufacturing │ ├── test_end_to_end_manufacturing.py │ ├── test_four_analysts.py │ ├── test_manufacturing_agents.py │ ├── test_manufacturing_data_flow.py │ ├── test_manufacturing_data_layer.py │ ├── test_manufacturing_full_pipeline.py │ ├── test_manufacturing_graph.py │ ├── test_manufacturing_pipeline.py │ ├── test_manufacturing_react.py │ ├── test_real_manufacturing_flow.py │ ├── test_real_manufacturing_with_tools.py │ └── test_specialized_tools.py ├── quick_redis_test.py ├── quick_test.py ├── simple_env_test.py ├── test_601127_final.py ├── test_all_apis.py ├── test_analysis.py ├── test_analysis_with_apis.py ├── test_api_raw_data.py ├── test_api_scheduling.py ├── test_basic_tushare.py ├── test_cache_optimization.py ├── test_cache_system.py ├── test_chinese_output.py ├── test_cli_fix.py ├── test_complete_mongodb_migration.py ├── test_config_management.py ├── test_copper_daily.py ├── test_copper_futures.py ├── test_core_functionality.py ├── test_correct_apis.py ├── test_current_601127_status.py ├── test_dashscope_token_tracking.py ├── test_data_config_cli.py ├── test_data_validator.py ├── test_database_fix.py ├── test_documentation_consistency.py ├── test_dynamic_stock_names.py ├── test_embedding_models.py ├── test_end_to_end_data_flow.py ├── test_enhanced_mapping.py ├── test_env_compatibility.py ├── test_env_config.py ├── test_final_config.py ├── test_final_validation.py ├── test_finnhub_connection.py ├── test_finnhub_fundamentals.py ├── test_finnhub_news_fix.py ├── test_format_fix.py ├── test_fundamentals_cache.py ├── test_future_copper_contracts.py ├── test_gemini.py ├── test_gemini_25.py ├── test_gemini_25_pro.py ├── test_gemini_correct.py ├── test_gemini_final.py ├── test_gemini_simple.py ├── test_get_security_list.py ├── test_google_memory_fix.py ├── test_integrated_manufacturing_flow.py ├── test_integration_status.py ├── test_llm_real_generation.py ├── test_manufacturing_data.py ├── test_manufacturing_end_to_end.py ├── test_mongodb_stock_name.py ├── test_optimization_effect.py ├── test_parameter_processor.py ├── test_pmi_focused.py ├── test_preprocessing_assistant.py ├── test_preprocessing_assistant_validation.py ├── test_preprocessing_simple.py ├── test_preprocessing_simple_validation.py ├── test_progress.py ├── test_rag_knowledge_base.py ├── test_real_integration.py ├── test_real_llm_preprocessing.py ├── test_real_preprocessing_integration.py ├── test_redis_performance.py ├── test_risk_assessment.py ├── test_server_config.py ├── test_signal_processor_debug.py ├── test_signal_processor_fix.py ├── test_smart_system.py ├── test_stock_codes.py ├── test_stock_data_integration.py ├── test_stock_data_service.py ├── test_stock_name_601127.py ├── test_stock_name_fix.py ├── test_strict_data_policy.py ├── test_system_simple.py ├── test_target_price.py ├── test_tdx_integration.py ├── test_tool_manager.py ├── test_toolkit_tools.py ├── test_tushare_pmi.py ├── test_us_stock_analysis.py ├── test_web_config_page.py ├── test_web_fix.py ├── test_web_interface.py ├── verify_601127_fix.py ├── verify_config.py ├── verify_mongodb_data.py └── web │ ├── test_web_fix.py │ └── test_web_integration.py ├── utils ├── clear_688008_cache.py ├── clear_all_cache.py ├── debug_mapping.py ├── debug_quotes_fields.py ├── debug_security_list.py ├── enhance_stock_mapping.py ├── enhanced_stock_list_fetcher.py ├── fix_mongodb_duplicate_keys.py └── fix_summary.py └── web ├── README.md ├── app.py ├── components ├── __init__.py ├── analysis_form.py ├── header.py ├── results_display.py └── sidebar.py ├── i18n ├── __init__.py └── manufacturing_texts.py ├── pages ├── cache_management.py ├── config_management.py ├── database_management.py └── token_statistics.py ├── run_web.py └── utils ├── __init__.py ├── analysis_runner.py ├── api_checker.py ├── progress_tracker.py ├── simple_progress_tracker.py ├── text_manager.py └── ui_utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/upstream-sync-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/.github/workflows/upstream-sync-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.0.0 2 | -------------------------------------------------------------------------------- /assets/TauricResearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/TauricResearch.png -------------------------------------------------------------------------------- /assets/analyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/analyst.png -------------------------------------------------------------------------------- /assets/cli/cli_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/cli/cli_init.png -------------------------------------------------------------------------------- /assets/cli/cli_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/cli/cli_news.png -------------------------------------------------------------------------------- /assets/cli/cli_technical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/cli/cli_technical.png -------------------------------------------------------------------------------- /assets/cli/cli_transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/cli/cli_transaction.png -------------------------------------------------------------------------------- /assets/researcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/researcher.png -------------------------------------------------------------------------------- /assets/risk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/risk.png -------------------------------------------------------------------------------- /assets/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/schema.png -------------------------------------------------------------------------------- /assets/trader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/trader.png -------------------------------------------------------------------------------- /assets/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/assets/wechat.png -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/cli/main.py -------------------------------------------------------------------------------- /cli/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/cli/models.py -------------------------------------------------------------------------------- /cli/static/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/cli/static/welcome.txt -------------------------------------------------------------------------------- /cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/cli/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | www.tradingagents.cn -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/STRUCTURE.md -------------------------------------------------------------------------------- /docs/agents/advisors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/agents/advisors.md -------------------------------------------------------------------------------- /docs/agents/analysts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/agents/analysts.md -------------------------------------------------------------------------------- /docs/agents/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/agents/managers.md -------------------------------------------------------------------------------- /docs/agents/risk-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/agents/risk-management.md -------------------------------------------------------------------------------- /docs/agents/trader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/agents/trader.md -------------------------------------------------------------------------------- /docs/architecture/agent-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/agent-architecture.md -------------------------------------------------------------------------------- /docs/architecture/configuration-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/configuration-optimization.md -------------------------------------------------------------------------------- /docs/architecture/data-flow-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/data-flow-architecture.md -------------------------------------------------------------------------------- /docs/architecture/database-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/database-architecture.md -------------------------------------------------------------------------------- /docs/architecture/graph-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/graph-structure.md -------------------------------------------------------------------------------- /docs/architecture/system-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/architecture/system-architecture.md -------------------------------------------------------------------------------- /docs/configuration/config-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/config-guide.md -------------------------------------------------------------------------------- /docs/configuration/dashscope-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/dashscope-config.md -------------------------------------------------------------------------------- /docs/configuration/data-directory-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/data-directory-configuration.md -------------------------------------------------------------------------------- /docs/configuration/google-ai-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/google-ai-setup.md -------------------------------------------------------------------------------- /docs/configuration/llm-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/llm-config.md -------------------------------------------------------------------------------- /docs/configuration/token-tracking-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/configuration/token-tracking-guide.md -------------------------------------------------------------------------------- /docs/data/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/data/caching.md -------------------------------------------------------------------------------- /docs/data/data-processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/data/data-processing.md -------------------------------------------------------------------------------- /docs/data/data-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/data/data-sources.md -------------------------------------------------------------------------------- /docs/database_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/database_setup.md -------------------------------------------------------------------------------- /docs/development/branch-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/development/branch-strategy.md -------------------------------------------------------------------------------- /docs/development/development-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/development/development-workflow.md -------------------------------------------------------------------------------- /docs/development/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/development/project-structure.md -------------------------------------------------------------------------------- /docs/examples/advanced-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/examples/advanced-examples.md -------------------------------------------------------------------------------- /docs/examples/basic-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/examples/basic-examples.md -------------------------------------------------------------------------------- /docs/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/faq/faq.md -------------------------------------------------------------------------------- /docs/guides/config-management-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/guides/config-management-guide.md -------------------------------------------------------------------------------- /docs/overview/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/overview/installation.md -------------------------------------------------------------------------------- /docs/overview/project-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/overview/project-overview.md -------------------------------------------------------------------------------- /docs/overview/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/overview/quick-start.md -------------------------------------------------------------------------------- /docs/research-depth-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/research-depth-guide.md -------------------------------------------------------------------------------- /docs/security/api_keys_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/security/api_keys_security.md -------------------------------------------------------------------------------- /docs/troubleshooting/finnhub-news-data-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/troubleshooting/finnhub-news-data-setup.md -------------------------------------------------------------------------------- /docs/troubleshooting/streamlit-file-watcher-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/troubleshooting/streamlit-file-watcher-fix.md -------------------------------------------------------------------------------- /docs/usage/investment_analysis_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/usage/investment_analysis_guide.md -------------------------------------------------------------------------------- /docs/usage/web-interface-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/docs/usage/web-interface-guide.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | # TradingAgents Examples Package 2 | -------------------------------------------------------------------------------- /examples/batch_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/batch_analysis.py -------------------------------------------------------------------------------- /examples/cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/cli_demo.py -------------------------------------------------------------------------------- /examples/config_management_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/config_management_demo.py -------------------------------------------------------------------------------- /examples/custom_analysis_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/custom_analysis_demo.py -------------------------------------------------------------------------------- /examples/dashscope_examples/__init__.py: -------------------------------------------------------------------------------- 1 | # DashScope Examples Package 2 | -------------------------------------------------------------------------------- /examples/dashscope_examples/demo_dashscope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/dashscope_examples/demo_dashscope.py -------------------------------------------------------------------------------- /examples/dashscope_examples/demo_dashscope_chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/dashscope_examples/demo_dashscope_chinese.py -------------------------------------------------------------------------------- /examples/dashscope_examples/demo_dashscope_no_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/dashscope_examples/demo_dashscope_no_memory.py -------------------------------------------------------------------------------- /examples/dashscope_examples/demo_dashscope_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/dashscope_examples/demo_dashscope_simple.py -------------------------------------------------------------------------------- /examples/data_dir_config_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/data_dir_config_demo.py -------------------------------------------------------------------------------- /examples/my_stock_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/my_stock_analysis.py -------------------------------------------------------------------------------- /examples/openai/__init__.py: -------------------------------------------------------------------------------- 1 | # OpenAI Examples Package 2 | -------------------------------------------------------------------------------- /examples/openai/demo_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/openai/demo_openai.py -------------------------------------------------------------------------------- /examples/simple_analysis_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/simple_analysis_demo.py -------------------------------------------------------------------------------- /examples/stock_list_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/stock_list_example.py -------------------------------------------------------------------------------- /examples/stock_query_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/stock_query_examples.py -------------------------------------------------------------------------------- /examples/token_tracking_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/examples/token_tracking_demo.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/main.py -------------------------------------------------------------------------------- /manufacturingagents/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/agents/analysts/china_market_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/analysts/china_market_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/agents/analysts/fundamentals_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/analysts/fundamentals_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/agents/analysts/market_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/analysts/market_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/agents/analysts/news_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/analysts/news_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/agents/analysts/social_media_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/analysts/social_media_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/agents/managers/research_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/managers/research_manager.py -------------------------------------------------------------------------------- /manufacturingagents/agents/managers/risk_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/managers/risk_manager.py -------------------------------------------------------------------------------- /manufacturingagents/agents/researchers/bear_researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/researchers/bear_researcher.py -------------------------------------------------------------------------------- /manufacturingagents/agents/researchers/bull_researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/researchers/bull_researcher.py -------------------------------------------------------------------------------- /manufacturingagents/agents/risk_mgmt/aggresive_debator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/risk_mgmt/aggresive_debator.py -------------------------------------------------------------------------------- /manufacturingagents/agents/risk_mgmt/conservative_debator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/risk_mgmt/conservative_debator.py -------------------------------------------------------------------------------- /manufacturingagents/agents/risk_mgmt/neutral_debator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/risk_mgmt/neutral_debator.py -------------------------------------------------------------------------------- /manufacturingagents/agents/trader/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/trader/trader.py -------------------------------------------------------------------------------- /manufacturingagents/agents/utils/agent_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/utils/agent_states.py -------------------------------------------------------------------------------- /manufacturingagents/agents/utils/agent_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/utils/agent_utils.py -------------------------------------------------------------------------------- /manufacturingagents/agents/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/agents/utils/memory.py -------------------------------------------------------------------------------- /manufacturingagents/api/stock_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/api/stock_api.py -------------------------------------------------------------------------------- /manufacturingagents/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/config/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/config/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/config/config_manager.py -------------------------------------------------------------------------------- /manufacturingagents/config/database_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/config/database_config.py -------------------------------------------------------------------------------- /manufacturingagents/config/database_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/config/database_manager.py -------------------------------------------------------------------------------- /manufacturingagents/config/mongodb_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/config/mongodb_storage.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/adaptive_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/adaptive_cache.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/cache_manager.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/chinese_finance_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/chinese_finance_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/config.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_fundamentals/000002_fundamentals_49995e59b161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_fundamentals/000002_fundamentals_49995e59b161.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_fundamentals/000858_fundamentals_ddcf810248de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_fundamentals/000858_fundamentals_ddcf810248de.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_fundamentals/601117_fundamentals_ab84bb106742.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_fundamentals/601117_fundamentals_ab84bb106742.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_fundamentals/601238_fundamentals_0e7bb7f4d09b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_fundamentals/601238_fundamentals_0e7bb7f4d09b.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_1dbcd45b4b3b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_1dbcd45b4b3b.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_6990f440c63d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_6990f440c63d.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_b3e72587cf68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_b3e72587cf68.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_f861dca9fcb3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000001_stock_data_f861dca9fcb3.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000002_stock_data_43bb8767776a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000002_stock_data_43bb8767776a.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000002_stock_data_64b23b1cc8a9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000002_stock_data_64b23b1cc8a9.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/000858_stock_data_47b406e447da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/000858_stock_data_47b406e447da.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/300750_stock_data_6dc1c42f35be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/300750_stock_data_6dc1c42f35be.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/600519_stock_data_4d6956e757b1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/600519_stock_data_4d6956e757b1.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601117_stock_data_45d414b60545.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601117_stock_data_45d414b60545.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_681a997cb4d0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_681a997cb4d0.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_74df371d2be3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_74df371d2be3.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_d0797dc91997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_d0797dc91997.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_d6cfbaf434b0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601127_stock_data_d6cfbaf434b0.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601238_stock_data_42ed58bf2e02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601238_stock_data_42ed58bf2e02.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/china_stocks/601238_stock_data_c9ee0f3c8a0d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/china_stocks/601238_stock_data_c9ee0f3c8a0d.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/BANK_PRODUCT_001_stock_data_1f187faec7f5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/us_stocks/BANK_PRODUCT_001_stock_data_1f187faec7f5.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_2f50f9a1e670.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_2f50f9a1e670.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_903a907e8e77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_903a907e8e77.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_e3fd43d87ccb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/data_cache/us_stocks/PROD001_stock_data_e3fd43d87ccb.txt -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/STEEL_001_stock_data_d7eb2199d099.txt: -------------------------------------------------------------------------------- 1 | ❌ 无法获取股票600019的基础信息: 所有数据源都不可用 -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/TEST_ENV_stock_data_9573a5e1ae3b.txt: -------------------------------------------------------------------------------- 1 | 测试数据 - 使用.env配置 -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/TEST_FINAL_stock_data_a42c38109a3a.txt: -------------------------------------------------------------------------------- 1 | 测试数据 - 最终配置 -------------------------------------------------------------------------------- /manufacturingagents/dataflows/data_cache/us_stocks/TEST_OPTIMIZED_stock_data_e41e6d203669.txt: -------------------------------------------------------------------------------- 1 | 测试数据 - 优化后系统 -------------------------------------------------------------------------------- /manufacturingagents/dataflows/db_cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/db_cache_manager.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/finnhub_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/finnhub_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/googlenews_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/googlenews_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/integrated_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/integrated_cache.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/interface.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/optimized_china_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/optimized_china_data.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/optimized_us_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/optimized_us_data.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/realtime_news_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/realtime_news_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/reddit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/reddit_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/stock_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/stock_api.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/stock_data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/stock_data_service.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/stockstats_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/stockstats_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/tdx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/tdx_utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/utils.py -------------------------------------------------------------------------------- /manufacturingagents/dataflows/yfin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/dataflows/yfin_utils.py -------------------------------------------------------------------------------- /manufacturingagents/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/default_config.py -------------------------------------------------------------------------------- /manufacturingagents/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/graph/conditional_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/conditional_logic.py -------------------------------------------------------------------------------- /manufacturingagents/graph/propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/propagation.py -------------------------------------------------------------------------------- /manufacturingagents/graph/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/reflection.py -------------------------------------------------------------------------------- /manufacturingagents/graph/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/setup.py -------------------------------------------------------------------------------- /manufacturingagents/graph/signal_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/signal_processing.py -------------------------------------------------------------------------------- /manufacturingagents/graph/trading_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/graph/trading_graph.py -------------------------------------------------------------------------------- /manufacturingagents/llm_adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/llm_adapters/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/llm_adapters/dashscope_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/llm_adapters/dashscope_adapter.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/advisors/cautious_advisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/advisors/cautious_advisor.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/advisors/optimistic_advisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/advisors/optimistic_advisor.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/consumer_insight_analyst_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/consumer_insight_analyst_react.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/industry_news_analyst_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/industry_news_analyst_react.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/market_environment_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/market_environment_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/market_environment_analyst_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/market_environment_analyst_react.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/news_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/news_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/sentiment_insight_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/sentiment_insight_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/trend_prediction_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/trend_prediction_analyst.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/analysts/trend_prediction_analyst_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/analysts/trend_prediction_analyst_react.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/coordinator/decision_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/coordinator/decision_coordinator.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/demand_forecast_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/demand_forecast_data.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/inventory_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/inventory_data.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/manufacturing_data_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/manufacturing_data_adapter.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/market_price_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/market_price_data.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/production_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/production_data.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/supply_chain_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/supply_chain_data.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/test_data_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/test_data_flow.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/dataflows/test_manufacturing_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/dataflows/test_manufacturing_adapter.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/graph/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/graph/manufacturing_graph_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/graph/manufacturing_graph_react.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/__init__.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/advisors/cautious_advisor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/advisors/cautious_advisor.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/advisors/optimistic_advisor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/advisors/optimistic_advisor.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/analysts/market_environment_analyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/analysts/market_environment_analyst.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/analysts/news_analyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/analysts/news_analyst.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/analysts/sentiment_insight_analyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/analysts/sentiment_insight_analyst.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/analysts/trend_prediction_analyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/analysts/trend_prediction_analyst.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/coordinator/decision_coordinator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/coordinator/decision_coordinator.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/prompt_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/prompt_manager.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/risk_mgmt/risk_assessment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/risk_mgmt/risk_assessment.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/utils/conclusion_extractor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/utils/conclusion_extractor.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/prompts/utils/preprocessing_assistant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/prompts/utils/preprocessing_assistant.txt -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/risk_mgmt/risk_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/risk_mgmt/risk_assessment.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/risk_mgmt/risk_assessment_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/risk_mgmt/risk_assessment_backup.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/conclusion_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/conclusion_extractor.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/data_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/data_validator.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/manufacturing_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/manufacturing_states.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/parameter_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/parameter_processor.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/preprocessing_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/preprocessing_assistant.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/prompt_utils.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/strict_data_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/strict_data_policy.py -------------------------------------------------------------------------------- /manufacturingagents/manufacturingagents/utils/tool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/manufacturingagents/manufacturingagents/utils/tool_manager.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/requirements_db.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/deployment/README.md -------------------------------------------------------------------------------- /scripts/deployment/create_github_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/deployment/create_github_release.py -------------------------------------------------------------------------------- /scripts/deployment/release_v0.1.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/deployment/release_v0.1.2.py -------------------------------------------------------------------------------- /scripts/deployment/release_v0.1.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/deployment/release_v0.1.3.py -------------------------------------------------------------------------------- /scripts/development/adaptive_cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/development/adaptive_cache_manager.py -------------------------------------------------------------------------------- /scripts/development/download_finnhub_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/development/download_finnhub_sample_data.py -------------------------------------------------------------------------------- /scripts/development/fix_streamlit_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/development/fix_streamlit_watcher.py -------------------------------------------------------------------------------- /scripts/development/organize_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/development/organize_scripts.py -------------------------------------------------------------------------------- /scripts/development/prepare_upstream_contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/development/prepare_upstream_contribution.py -------------------------------------------------------------------------------- /scripts/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/README.md -------------------------------------------------------------------------------- /scripts/docker/docker-compose-start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/docker-compose-start.bat -------------------------------------------------------------------------------- /scripts/docker/mongo-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/mongo-init.js -------------------------------------------------------------------------------- /scripts/docker/start_docker_services.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/start_docker_services.bat -------------------------------------------------------------------------------- /scripts/docker/start_docker_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/start_docker_services.sh -------------------------------------------------------------------------------- /scripts/docker/start_services_alt_ports.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/start_services_alt_ports.bat -------------------------------------------------------------------------------- /scripts/docker/start_services_simple.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/start_services_simple.bat -------------------------------------------------------------------------------- /scripts/docker/stop_docker_services.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/stop_docker_services.bat -------------------------------------------------------------------------------- /scripts/docker/stop_docker_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/docker/stop_docker_services.sh -------------------------------------------------------------------------------- /scripts/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/git/README.md -------------------------------------------------------------------------------- /scripts/git/setup_fork_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/git/setup_fork_environment.sh -------------------------------------------------------------------------------- /scripts/git/upstream_git_workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/git/upstream_git_workflow.sh -------------------------------------------------------------------------------- /scripts/maintenance/analyze_differences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/analyze_differences.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/branch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/branch_manager.py -------------------------------------------------------------------------------- /scripts/maintenance/create_scripts_structure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/create_scripts_structure.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/debug_integration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/debug_integration.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/finalize_script_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/finalize_script_organization.py -------------------------------------------------------------------------------- /scripts/maintenance/integrate_cache_improvements.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/integrate_cache_improvements.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/migrate_first_contribution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/migrate_first_contribution.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/organize_root_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/organize_root_scripts.py -------------------------------------------------------------------------------- /scripts/maintenance/remove_contribution_from_git.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/remove_contribution_from_git.ps1 -------------------------------------------------------------------------------- /scripts/maintenance/sync_upstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/sync_upstream.py -------------------------------------------------------------------------------- /scripts/maintenance/version_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/maintenance/version_manager.py -------------------------------------------------------------------------------- /scripts/setup/configure_pip_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/configure_pip_source.py -------------------------------------------------------------------------------- /scripts/setup/init_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/init_database.py -------------------------------------------------------------------------------- /scripts/setup/initialize_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/initialize_system.py -------------------------------------------------------------------------------- /scripts/setup/install_packages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/install_packages.bat -------------------------------------------------------------------------------- /scripts/setup/install_packages_venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/install_packages_venv.bat -------------------------------------------------------------------------------- /scripts/setup/manual_pip_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/manual_pip_config.py -------------------------------------------------------------------------------- /scripts/setup/migrate_env_to_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/migrate_env_to_config.py -------------------------------------------------------------------------------- /scripts/setup/pip_manager.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/pip_manager.bat -------------------------------------------------------------------------------- /scripts/setup/run_in_venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/run_in_venv.bat -------------------------------------------------------------------------------- /scripts/setup/setup_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/setup_databases.py -------------------------------------------------------------------------------- /scripts/setup/setup_fork_environment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/setup_fork_environment.ps1 -------------------------------------------------------------------------------- /scripts/setup/setup_pip_source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/setup_pip_source.ps1 -------------------------------------------------------------------------------- /scripts/setup/update_gitignore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/setup/update_gitignore.bat -------------------------------------------------------------------------------- /scripts/show_llm_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/show_llm_output.py -------------------------------------------------------------------------------- /scripts/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/validation/README.md -------------------------------------------------------------------------------- /scripts/validation/check_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/validation/check_dependencies.py -------------------------------------------------------------------------------- /scripts/validation/check_system_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/validation/check_system_status.py -------------------------------------------------------------------------------- /scripts/validation/smart_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/validation/smart_config.py -------------------------------------------------------------------------------- /scripts/validation/verify_gitignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/scripts/validation/verify_gitignore.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # TradingAgents Tests Package 2 | -------------------------------------------------------------------------------- /tests/check_gemini_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/check_gemini_models.py -------------------------------------------------------------------------------- /tests/debug_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/debug_imports.py -------------------------------------------------------------------------------- /tests/demo_fallback_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/demo_fallback_system.py -------------------------------------------------------------------------------- /tests/diagnose_gemini_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/diagnose_gemini_25.py -------------------------------------------------------------------------------- /tests/fast_tdx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/fast_tdx_test.py -------------------------------------------------------------------------------- /tests/final_601127_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/final_601127_test.py -------------------------------------------------------------------------------- /tests/final_gemini_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/final_gemini_test.py -------------------------------------------------------------------------------- /tests/frontend/test_frontend_terminology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/frontend/test_frontend_terminology.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | # Integration Tests Package 2 | -------------------------------------------------------------------------------- /tests/integration/test_dashscope_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/integration/test_dashscope_integration.py -------------------------------------------------------------------------------- /tests/manufacturing/test_end_to_end_manufacturing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_end_to_end_manufacturing.py -------------------------------------------------------------------------------- /tests/manufacturing/test_four_analysts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_four_analysts.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_agents.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_data_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_data_flow.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_data_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_data_layer.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_full_pipeline.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_graph.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_pipeline.py -------------------------------------------------------------------------------- /tests/manufacturing/test_manufacturing_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_manufacturing_react.py -------------------------------------------------------------------------------- /tests/manufacturing/test_real_manufacturing_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_real_manufacturing_flow.py -------------------------------------------------------------------------------- /tests/manufacturing/test_real_manufacturing_with_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_real_manufacturing_with_tools.py -------------------------------------------------------------------------------- /tests/manufacturing/test_specialized_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/manufacturing/test_specialized_tools.py -------------------------------------------------------------------------------- /tests/quick_redis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/quick_redis_test.py -------------------------------------------------------------------------------- /tests/quick_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/quick_test.py -------------------------------------------------------------------------------- /tests/simple_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/simple_env_test.py -------------------------------------------------------------------------------- /tests/test_601127_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_601127_final.py -------------------------------------------------------------------------------- /tests/test_all_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_all_apis.py -------------------------------------------------------------------------------- /tests/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_analysis.py -------------------------------------------------------------------------------- /tests/test_analysis_with_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_analysis_with_apis.py -------------------------------------------------------------------------------- /tests/test_api_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_api_raw_data.py -------------------------------------------------------------------------------- /tests/test_api_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_api_scheduling.py -------------------------------------------------------------------------------- /tests/test_basic_tushare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_basic_tushare.py -------------------------------------------------------------------------------- /tests/test_cache_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_cache_optimization.py -------------------------------------------------------------------------------- /tests/test_cache_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_cache_system.py -------------------------------------------------------------------------------- /tests/test_chinese_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_chinese_output.py -------------------------------------------------------------------------------- /tests/test_cli_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_cli_fix.py -------------------------------------------------------------------------------- /tests/test_complete_mongodb_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_complete_mongodb_migration.py -------------------------------------------------------------------------------- /tests/test_config_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_config_management.py -------------------------------------------------------------------------------- /tests/test_copper_daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_copper_daily.py -------------------------------------------------------------------------------- /tests/test_copper_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_copper_futures.py -------------------------------------------------------------------------------- /tests/test_core_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_core_functionality.py -------------------------------------------------------------------------------- /tests/test_correct_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_correct_apis.py -------------------------------------------------------------------------------- /tests/test_current_601127_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_current_601127_status.py -------------------------------------------------------------------------------- /tests/test_dashscope_token_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_dashscope_token_tracking.py -------------------------------------------------------------------------------- /tests/test_data_config_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_data_config_cli.py -------------------------------------------------------------------------------- /tests/test_data_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_data_validator.py -------------------------------------------------------------------------------- /tests/test_database_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_database_fix.py -------------------------------------------------------------------------------- /tests/test_documentation_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_documentation_consistency.py -------------------------------------------------------------------------------- /tests/test_dynamic_stock_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_dynamic_stock_names.py -------------------------------------------------------------------------------- /tests/test_embedding_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_embedding_models.py -------------------------------------------------------------------------------- /tests/test_end_to_end_data_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_end_to_end_data_flow.py -------------------------------------------------------------------------------- /tests/test_enhanced_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_enhanced_mapping.py -------------------------------------------------------------------------------- /tests/test_env_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_env_compatibility.py -------------------------------------------------------------------------------- /tests/test_env_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_env_config.py -------------------------------------------------------------------------------- /tests/test_final_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_final_config.py -------------------------------------------------------------------------------- /tests/test_final_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_final_validation.py -------------------------------------------------------------------------------- /tests/test_finnhub_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_finnhub_connection.py -------------------------------------------------------------------------------- /tests/test_finnhub_fundamentals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_finnhub_fundamentals.py -------------------------------------------------------------------------------- /tests/test_finnhub_news_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_finnhub_news_fix.py -------------------------------------------------------------------------------- /tests/test_format_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_format_fix.py -------------------------------------------------------------------------------- /tests/test_fundamentals_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_fundamentals_cache.py -------------------------------------------------------------------------------- /tests/test_future_copper_contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_future_copper_contracts.py -------------------------------------------------------------------------------- /tests/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini.py -------------------------------------------------------------------------------- /tests/test_gemini_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini_25.py -------------------------------------------------------------------------------- /tests/test_gemini_25_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini_25_pro.py -------------------------------------------------------------------------------- /tests/test_gemini_correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini_correct.py -------------------------------------------------------------------------------- /tests/test_gemini_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini_final.py -------------------------------------------------------------------------------- /tests/test_gemini_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_gemini_simple.py -------------------------------------------------------------------------------- /tests/test_get_security_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_get_security_list.py -------------------------------------------------------------------------------- /tests/test_google_memory_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_google_memory_fix.py -------------------------------------------------------------------------------- /tests/test_integrated_manufacturing_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_integrated_manufacturing_flow.py -------------------------------------------------------------------------------- /tests/test_integration_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_integration_status.py -------------------------------------------------------------------------------- /tests/test_llm_real_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_llm_real_generation.py -------------------------------------------------------------------------------- /tests/test_manufacturing_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_manufacturing_data.py -------------------------------------------------------------------------------- /tests/test_manufacturing_end_to_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_manufacturing_end_to_end.py -------------------------------------------------------------------------------- /tests/test_mongodb_stock_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_mongodb_stock_name.py -------------------------------------------------------------------------------- /tests/test_optimization_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_optimization_effect.py -------------------------------------------------------------------------------- /tests/test_parameter_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_parameter_processor.py -------------------------------------------------------------------------------- /tests/test_pmi_focused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_pmi_focused.py -------------------------------------------------------------------------------- /tests/test_preprocessing_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_preprocessing_assistant.py -------------------------------------------------------------------------------- /tests/test_preprocessing_assistant_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_preprocessing_assistant_validation.py -------------------------------------------------------------------------------- /tests/test_preprocessing_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_preprocessing_simple.py -------------------------------------------------------------------------------- /tests/test_preprocessing_simple_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_preprocessing_simple_validation.py -------------------------------------------------------------------------------- /tests/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_progress.py -------------------------------------------------------------------------------- /tests/test_rag_knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_rag_knowledge_base.py -------------------------------------------------------------------------------- /tests/test_real_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_real_integration.py -------------------------------------------------------------------------------- /tests/test_real_llm_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_real_llm_preprocessing.py -------------------------------------------------------------------------------- /tests/test_real_preprocessing_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_real_preprocessing_integration.py -------------------------------------------------------------------------------- /tests/test_redis_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_redis_performance.py -------------------------------------------------------------------------------- /tests/test_risk_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_risk_assessment.py -------------------------------------------------------------------------------- /tests/test_server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_server_config.py -------------------------------------------------------------------------------- /tests/test_signal_processor_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_signal_processor_debug.py -------------------------------------------------------------------------------- /tests/test_signal_processor_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_signal_processor_fix.py -------------------------------------------------------------------------------- /tests/test_smart_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_smart_system.py -------------------------------------------------------------------------------- /tests/test_stock_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_stock_codes.py -------------------------------------------------------------------------------- /tests/test_stock_data_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_stock_data_integration.py -------------------------------------------------------------------------------- /tests/test_stock_data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_stock_data_service.py -------------------------------------------------------------------------------- /tests/test_stock_name_601127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_stock_name_601127.py -------------------------------------------------------------------------------- /tests/test_stock_name_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_stock_name_fix.py -------------------------------------------------------------------------------- /tests/test_strict_data_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_strict_data_policy.py -------------------------------------------------------------------------------- /tests/test_system_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_system_simple.py -------------------------------------------------------------------------------- /tests/test_target_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_target_price.py -------------------------------------------------------------------------------- /tests/test_tdx_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_tdx_integration.py -------------------------------------------------------------------------------- /tests/test_tool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_tool_manager.py -------------------------------------------------------------------------------- /tests/test_toolkit_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_toolkit_tools.py -------------------------------------------------------------------------------- /tests/test_tushare_pmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_tushare_pmi.py -------------------------------------------------------------------------------- /tests/test_us_stock_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_us_stock_analysis.py -------------------------------------------------------------------------------- /tests/test_web_config_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_web_config_page.py -------------------------------------------------------------------------------- /tests/test_web_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_web_fix.py -------------------------------------------------------------------------------- /tests/test_web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/test_web_interface.py -------------------------------------------------------------------------------- /tests/verify_601127_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/verify_601127_fix.py -------------------------------------------------------------------------------- /tests/verify_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/verify_config.py -------------------------------------------------------------------------------- /tests/verify_mongodb_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/verify_mongodb_data.py -------------------------------------------------------------------------------- /tests/web/test_web_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/web/test_web_fix.py -------------------------------------------------------------------------------- /tests/web/test_web_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/tests/web/test_web_integration.py -------------------------------------------------------------------------------- /utils/clear_688008_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/clear_688008_cache.py -------------------------------------------------------------------------------- /utils/clear_all_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/clear_all_cache.py -------------------------------------------------------------------------------- /utils/debug_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/debug_mapping.py -------------------------------------------------------------------------------- /utils/debug_quotes_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/debug_quotes_fields.py -------------------------------------------------------------------------------- /utils/debug_security_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/debug_security_list.py -------------------------------------------------------------------------------- /utils/enhance_stock_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/enhance_stock_mapping.py -------------------------------------------------------------------------------- /utils/enhanced_stock_list_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/enhanced_stock_list_fetcher.py -------------------------------------------------------------------------------- /utils/fix_mongodb_duplicate_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/fix_mongodb_duplicate_keys.py -------------------------------------------------------------------------------- /utils/fix_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/utils/fix_summary.py -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/README.md -------------------------------------------------------------------------------- /web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/app.py -------------------------------------------------------------------------------- /web/components/__init__.py: -------------------------------------------------------------------------------- 1 | # Web组件模块 2 | -------------------------------------------------------------------------------- /web/components/analysis_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/components/analysis_form.py -------------------------------------------------------------------------------- /web/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/components/header.py -------------------------------------------------------------------------------- /web/components/results_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/components/results_display.py -------------------------------------------------------------------------------- /web/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/components/sidebar.py -------------------------------------------------------------------------------- /web/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | # 国际化文案管理包 2 | # Internationalization package for manufacturing UI -------------------------------------------------------------------------------- /web/i18n/manufacturing_texts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/i18n/manufacturing_texts.py -------------------------------------------------------------------------------- /web/pages/cache_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/pages/cache_management.py -------------------------------------------------------------------------------- /web/pages/config_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/pages/config_management.py -------------------------------------------------------------------------------- /web/pages/database_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/pages/database_management.py -------------------------------------------------------------------------------- /web/pages/token_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/pages/token_statistics.py -------------------------------------------------------------------------------- /web/run_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/run_web.py -------------------------------------------------------------------------------- /web/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Web工具模块 2 | -------------------------------------------------------------------------------- /web/utils/analysis_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/analysis_runner.py -------------------------------------------------------------------------------- /web/utils/api_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/api_checker.py -------------------------------------------------------------------------------- /web/utils/progress_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/progress_tracker.py -------------------------------------------------------------------------------- /web/utils/simple_progress_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/simple_progress_tracker.py -------------------------------------------------------------------------------- /web/utils/text_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/text_manager.py -------------------------------------------------------------------------------- /web/utils/ui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YUHAO-corn/manufacturing-agents/HEAD/web/utils/ui_utils.py --------------------------------------------------------------------------------