LICENSE
README.md
pyproject.toml
flowllm/__init__.py
flowllm/app.py
flowllm/app_ui.py
flowllm.egg-info/PKG-INFO
flowllm.egg-info/SOURCES.txt
flowllm.egg-info/dependency_links.txt
flowllm.egg-info/entry_points.txt
flowllm.egg-info/requires.txt
flowllm.egg-info/top_level.txt
flowllm/client/__init__.py
flowllm/client/async_http_client.py
flowllm/client/fastmcp_client.py
flowllm/client/http_client.py
flowllm/client/mcp_client.py
flowllm/config/__init__.py
flowllm/config/deep_search.yaml
flowllm/config/default.yaml
flowllm/config/fin_basic.yaml
flowllm/config/fin_mcp.yaml
flowllm/config/fin_research.yaml
flowllm/config/fin_search.yaml
flowllm/config/fin_supply.yaml
flowllm/config/fin_ths.yaml
flowllm/config/mock.yaml
flowllm/config/pydantic_config_parser.py
flowllm/context/__init__.py
flowllm/context/base_context.py
flowllm/context/flow_context.py
flowllm/context/prompt_handler.py
flowllm/context/registry.py
flowllm/context/service_context.py
flowllm/embedding_model/__init__.py
flowllm/embedding_model/base_embedding_model.py
flowllm/embedding_model/openai_compatible_embedding_model.py
flowllm/enumeration/__init__.py
flowllm/enumeration/chunk_enum.py
flowllm/enumeration/http_enum.py
flowllm/enumeration/registry_enum.py
flowllm/enumeration/role.py
flowllm/flow/__init__.py
flowllm/flow/base_flow.py
flowllm/flow/base_tool_flow.py
flowllm/flow/cmd_flow.py
flowllm/flow/expression_parser.py
flowllm/flow/expression_tool_flow.py
flowllm/flow/mock_tool_flow.py
flowllm/llm/__init__.py
flowllm/llm/base_llm.py
flowllm/llm/litellm_llm.py
flowllm/llm/openai_compatible_llm.py
flowllm/op/__init__.py
flowllm/op/base_async_op.py
flowllm/op/base_async_tool_op.py
flowllm/op/base_mcp_op.py
flowllm/op/base_op.py
flowllm/op/base_ray_op.py
flowllm/op/parallel_op.py
flowllm/op/sequential_op.py
flowllm/op/crawl/__init__.py
flowllm/op/crawl/crawl4ai_op.py
flowllm/op/crawl/extract_long_text_op.py
flowllm/op/crawl/extract_long_text_prompt.yaml
flowllm/op/deep_research/__init__.py
flowllm/op/deep_research/conduct_research_op.py
flowllm/op/deep_research/conduct_research_prompt.yaml
flowllm/op/deep_research/dashscope_deep_research_op.py
flowllm/op/deep_research/langchain_deep_research_op.py
flowllm/op/deep_research/langchain_deep_research_prompt.yaml
flowllm/op/fin_ah/__init__.py
flowllm/op/fin_ah/ah_backtest_op.py
flowllm/op/fin_ah/ah_download_op.py
flowllm/op/fin_ah/ah_feature_op.py
flowllm/op/fin_ah/ah_fix_op.py
flowllm/op/fin_ah/ah_op_old.py
flowllm/op/fin_research_v2/__init__.py
flowllm/op/fin_research_v2/analyse_company_op.py
flowllm/op/fin_research_v2/analyse_company_prompt.yaml
flowllm/op/fin_search/__init__.py
flowllm/op/fin_search/company_factor_op.py
flowllm/op/fin_search/company_factor_prompt.yaml
flowllm/op/fin_search/company_operation_op.py
flowllm/op/fin_search/company_operation_prompt.yaml
flowllm/op/fin_search/company_segment_factor_op.py
flowllm/op/fin_search/company_segment_factor_prompt.yaml
flowllm/op/fin_search/extract_query_op.py
flowllm/op/fin_search/extract_query_prompt.yaml
flowllm/op/fin_supply/__init__.py
flowllm/op/fin_supply/akshare_op.py
flowllm/op/fin_supply/akshare_prompt.yaml
flowllm/op/fin_supply/extract_entities_code_op.py
flowllm/op/fin_supply/extract_entities_code_prompt.yaml
flowllm/op/fin_supply/ths_url_op.py
flowllm/op/gallery/__init__.py
flowllm/op/gallery/execute_code_op.py
flowllm/op/gallery/mock_exception_op.py
flowllm/op/gallery/mock_op.py
flowllm/op/gallery/react_llm_op.py
flowllm/op/gallery/react_llm_prompt.yaml
flowllm/op/gallery/research_complete_op.py
flowllm/op/gallery/simple_llm_op.py
flowllm/op/gallery/stream_llm_op.py
flowllm/op/gallery/task_react_op.py
flowllm/op/gallery/terminate_op.py
flowllm/op/gallery/think_op.py
flowllm/op/gallery/translate_code_op.py
flowllm/op/gallery/translate_code_prompt.yaml
flowllm/op/search/__init__.py
flowllm/op/search/dashscope_search_op.py
flowllm/op/search/dashscope_search_prompt.yaml
flowllm/op/search/llm_mock_search_op.py
flowllm/op/search/llm_mock_search_prompt.yaml
flowllm/op/search/mcp_search_op.py
flowllm/op/search/tavily_search_op.py
flowllm/schema/__init__.py
flowllm/schema/flow_request.py
flowllm/schema/flow_response.py
flowllm/schema/flow_stream_chunk.py
flowllm/schema/message.py
flowllm/schema/service_config.py
flowllm/schema/tool_call.py
flowllm/schema/vector_node.py
flowllm/service/__init__.py
flowllm/service/base_service.py
flowllm/service/cmd_service.py
flowllm/service/http_service.py
flowllm/service/mcp_service.py
flowllm/storage/__init__.py
flowllm/storage/cache_handler/__init__.py
flowllm/storage/cache_handler/cache_data_handler.py
flowllm/storage/cache_handler/data_cache.py
flowllm/storage/vector_store/__init__.py
flowllm/storage/vector_store/base_vector_store.py
flowllm/storage/vector_store/chroma_vector_store.py
flowllm/storage/vector_store/es_vector_store.py
flowllm/storage/vector_store/local_vector_store.py
flowllm/storage/vector_store/memory_vector_store.py
flowllm/utils/__init__.py
flowllm/utils/common_utils.py
flowllm/utils/eastmoney_utils.py
flowllm/utils/llm_utils.py
flowllm/utils/logger_utils.py
flowllm/utils/logo_utils.py
flowllm/utils/plot_utils.py
flowllm/utils/pydantic_utils.py
flowllm/utils/ridge_v2.py
flowllm/utils/singleton.py
flowllm/utils/timer.py
flowllm/utils/token_utils.py
flowllm/utils/tushare_client.py
flowllm/utils/web_utils.py
test/test_cache.py
test/test_config.py
test/test_craw4ai.py
test/test_dashscope_llm.py
test/test_dataframe_cache.py
test/test_ifund.py
test/test_playwright.py
test/test_simple_flow.py
test/test_streaming.py
test/test_streaming_example.py
test/test_vl.py
test/test_vllm.py