├── .gitignore ├── .isort.cfg ├── LICENSE ├── Makefile ├── README.md ├── agents ├── README.md └── summarizer-agent-example │ ├── MANIFEST.in │ ├── README.md │ ├── dbgpts.toml │ ├── pyproject.toml │ ├── summarizer_agent_example │ ├── __init__.py │ └── action.py │ └── tests │ └── __init__.py ├── apps └── README.md ├── assets ├── img │ ├── awel_flow_simple_streaming_chat.jpg │ ├── awel_web_search_flow.jpg │ ├── rag_save_url_to_vstore.png │ ├── rag_url_knowledge_example.png │ ├── resources │ │ ├── jina-web-reader-1.png │ │ └── jina-web-reader-2.png │ └── workflow │ │ ├── all_in_one_entrance_dag.png │ │ ├── all_in_one_entrance_gif.gif │ │ ├── andrewyng_translation_agent.png │ │ └── andrewyng_translation_agent_chat.png └── pdf │ └── financial-reports │ ├── 2020-04-14__贵州航天电器股份有限公司__002025__航天电器__2019年__年度报告.pdf │ └── 2020-04-15__广州惠威电声科技股份有限公司__002888__惠威科技__2019年__年度报告.pdf ├── operators ├── README.md └── awel-simple-operator │ ├── MANIFEST.in │ ├── README.md │ ├── awel_simple_operator │ └── __init__.py │ ├── dbgpts.toml │ ├── pyproject.toml │ └── tests │ └── __init__.py ├── pyproject.toml ├── requirements └── lint-requirements.txt ├── resources ├── README.md ├── jina-web-reader │ ├── MANIFEST.in │ ├── README.md │ ├── dbgpts.toml │ ├── jina_web_reader │ │ └── __init__.py │ └── pyproject.toml └── simple-calculator-example │ ├── MANIFEST.in │ ├── README.md │ ├── dbgpts.toml │ ├── pyproject.toml │ └── simple_calculator_example │ └── __init__.py └── workflow ├── README.md ├── all-in-one-entrance ├── MANIFEST.in ├── README.md ├── all_in_one_entrance │ ├── __init__.py │ ├── chat_database.py │ └── chat_knowledge.py ├── dbgpts.toml └── pyproject.toml ├── andrewyng-translation-agent ├── MANIFEST.in ├── README.md ├── andrewyng_translation_agent │ └── __init__.py ├── dbgpts.toml └── pyproject.toml ├── awel-flow-example-chat ├── MANIFEST.in ├── README.md ├── awel_flow_example_chat │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml └── pyproject.toml ├── awel-flow-rag-chat-example ├── MANIFEST.in ├── README.md ├── awel_flow_rag_chat_example │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml ├── pyproject.toml └── tests │ └── __init__.py ├── awel-flow-rag-summary-example ├── MANIFEST.in ├── README.md ├── awel_flow_rag_summary_example │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml ├── pyproject.toml └── tests │ └── __init__.py ├── awel-flow-simple-streaming-chat ├── MANIFEST.in ├── README.md ├── awel_flow_simple_streaming_chat │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml ├── pyproject.toml └── tests │ └── __init__.py ├── awel-flow-web-info-search ├── MANIFEST.in ├── README.md ├── awel_flow_web_info_search │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml ├── pyproject.toml └── tests │ └── __init__.py ├── db-expert-assisant ├── MANIFEST.in ├── README.md ├── db_expert_assisant │ ├── __init__.py │ └── definition │ │ └── flow_definition.json ├── dbgpts.toml ├── pyproject.toml └── tests │ └── __init__.py ├── financial-report-knowledge-factory ├── MANIFEST.in ├── README.md ├── dbgpts.toml ├── financial_report_knowledge_factory │ ├── __init__.py │ ├── extract.py │ └── fin_knowledge.py └── pyproject.toml ├── financial-robot-app ├── MANIFEST.in ├── README.md ├── dbgpts.toml ├── financial_robot_app │ ├── __init__.py │ ├── chat_database.py │ ├── chat_indicator.py │ ├── chat_knowledge.py │ ├── chat_normal.py │ ├── classifier.py │ ├── common.py │ ├── intent.py │ ├── model.py │ └── models │ │ └── dbgpt-hub-nlu-v0.1 │ │ ├── config.json │ │ ├── pytorch_model.bin │ │ └── tokenizer_config.json ├── main.py └── pyproject.toml ├── rag-save-url-to-vstore ├── MANIFEST.in ├── README.md ├── dbgpts.toml ├── pyproject.toml ├── rag_save_url_to_vstore │ ├── __init__.py │ └── definition │ │ └── flow_definition.json └── tests │ └── __init__.py └── rag-url-knowledge-example ├── MANIFEST.in ├── README.md ├── dbgpts.toml ├── pyproject.toml ├── rag_url_knowledge_example ├── __init__.py └── definition │ └── flow_definition.json └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/.isort.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/README.md -------------------------------------------------------------------------------- /agents/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/summarizer-agent-example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/agents/summarizer-agent-example/MANIFEST.in -------------------------------------------------------------------------------- /agents/summarizer-agent-example/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/summarizer-agent-example/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/agents/summarizer-agent-example/dbgpts.toml -------------------------------------------------------------------------------- /agents/summarizer-agent-example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/agents/summarizer-agent-example/pyproject.toml -------------------------------------------------------------------------------- /agents/summarizer-agent-example/summarizer_agent_example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/agents/summarizer-agent-example/summarizer_agent_example/__init__.py -------------------------------------------------------------------------------- /agents/summarizer-agent-example/summarizer_agent_example/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/agents/summarizer-agent-example/summarizer_agent_example/action.py -------------------------------------------------------------------------------- /agents/summarizer-agent-example/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/awel_flow_simple_streaming_chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/awel_flow_simple_streaming_chat.jpg -------------------------------------------------------------------------------- /assets/img/awel_web_search_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/awel_web_search_flow.jpg -------------------------------------------------------------------------------- /assets/img/rag_save_url_to_vstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/rag_save_url_to_vstore.png -------------------------------------------------------------------------------- /assets/img/rag_url_knowledge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/rag_url_knowledge_example.png -------------------------------------------------------------------------------- /assets/img/resources/jina-web-reader-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/resources/jina-web-reader-1.png -------------------------------------------------------------------------------- /assets/img/resources/jina-web-reader-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/resources/jina-web-reader-2.png -------------------------------------------------------------------------------- /assets/img/workflow/all_in_one_entrance_dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/workflow/all_in_one_entrance_dag.png -------------------------------------------------------------------------------- /assets/img/workflow/all_in_one_entrance_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/workflow/all_in_one_entrance_gif.gif -------------------------------------------------------------------------------- /assets/img/workflow/andrewyng_translation_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/workflow/andrewyng_translation_agent.png -------------------------------------------------------------------------------- /assets/img/workflow/andrewyng_translation_agent_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/img/workflow/andrewyng_translation_agent_chat.png -------------------------------------------------------------------------------- /assets/pdf/financial-reports/2020-04-14__贵州航天电器股份有限公司__002025__航天电器__2019年__年度报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/pdf/financial-reports/2020-04-14__贵州航天电器股份有限公司__002025__航天电器__2019年__年度报告.pdf -------------------------------------------------------------------------------- /assets/pdf/financial-reports/2020-04-15__广州惠威电声科技股份有限公司__002888__惠威科技__2019年__年度报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/assets/pdf/financial-reports/2020-04-15__广州惠威电声科技股份有限公司__002888__惠威科技__2019年__年度报告.pdf -------------------------------------------------------------------------------- /operators/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operators/awel-simple-operator/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/operators/awel-simple-operator/MANIFEST.in -------------------------------------------------------------------------------- /operators/awel-simple-operator/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operators/awel-simple-operator/awel_simple_operator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/operators/awel-simple-operator/awel_simple_operator/__init__.py -------------------------------------------------------------------------------- /operators/awel-simple-operator/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/operators/awel-simple-operator/dbgpts.toml -------------------------------------------------------------------------------- /operators/awel-simple-operator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/operators/awel-simple-operator/pyproject.toml -------------------------------------------------------------------------------- /operators/awel-simple-operator/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/lint-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/requirements/lint-requirements.txt -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/jina-web-reader/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/jina-web-reader/MANIFEST.in -------------------------------------------------------------------------------- /resources/jina-web-reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/jina-web-reader/README.md -------------------------------------------------------------------------------- /resources/jina-web-reader/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/jina-web-reader/dbgpts.toml -------------------------------------------------------------------------------- /resources/jina-web-reader/jina_web_reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/jina-web-reader/jina_web_reader/__init__.py -------------------------------------------------------------------------------- /resources/jina-web-reader/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/jina-web-reader/pyproject.toml -------------------------------------------------------------------------------- /resources/simple-calculator-example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/simple-calculator-example/MANIFEST.in -------------------------------------------------------------------------------- /resources/simple-calculator-example/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/simple-calculator-example/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/simple-calculator-example/dbgpts.toml -------------------------------------------------------------------------------- /resources/simple-calculator-example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/simple-calculator-example/pyproject.toml -------------------------------------------------------------------------------- /resources/simple-calculator-example/simple_calculator_example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/resources/simple-calculator-example/simple_calculator_example/__init__.py -------------------------------------------------------------------------------- /workflow/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/MANIFEST.in -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/README.md -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/all_in_one_entrance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/all_in_one_entrance/__init__.py -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/all_in_one_entrance/chat_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/all_in_one_entrance/chat_database.py -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/all_in_one_entrance/chat_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/all_in_one_entrance/chat_knowledge.py -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/dbgpts.toml -------------------------------------------------------------------------------- /workflow/all-in-one-entrance/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/all-in-one-entrance/pyproject.toml -------------------------------------------------------------------------------- /workflow/andrewyng-translation-agent/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/andrewyng-translation-agent/MANIFEST.in -------------------------------------------------------------------------------- /workflow/andrewyng-translation-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/andrewyng-translation-agent/README.md -------------------------------------------------------------------------------- /workflow/andrewyng-translation-agent/andrewyng_translation_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/andrewyng-translation-agent/andrewyng_translation_agent/__init__.py -------------------------------------------------------------------------------- /workflow/andrewyng-translation-agent/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/andrewyng-translation-agent/dbgpts.toml -------------------------------------------------------------------------------- /workflow/andrewyng-translation-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/andrewyng-translation-agent/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-example-chat/MANIFEST.in -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-example-chat/README.md -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/awel_flow_example_chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/awel_flow_example_chat/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-example-chat/awel_flow_example_chat/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-example-chat/dbgpts.toml -------------------------------------------------------------------------------- /workflow/awel-flow-example-chat/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-example-chat/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-chat-example/MANIFEST.in -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-chat-example/README.md -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/awel_flow_rag_chat_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/awel_flow_rag_chat_example/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-chat-example/awel_flow_rag_chat_example/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-chat-example/dbgpts.toml -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-chat-example/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-rag-chat-example/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-summary-example/MANIFEST.in -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-summary-example/README.md -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/awel_flow_rag_summary_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/awel_flow_rag_summary_example/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-summary-example/awel_flow_rag_summary_example/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-summary-example/dbgpts.toml -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-rag-summary-example/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-rag-summary-example/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-simple-streaming-chat/MANIFEST.in -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-simple-streaming-chat/README.md -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/awel_flow_simple_streaming_chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/awel_flow_simple_streaming_chat/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-simple-streaming-chat/awel_flow_simple_streaming_chat/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-simple-streaming-chat/dbgpts.toml -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-simple-streaming-chat/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-simple-streaming-chat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-web-info-search/MANIFEST.in -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-web-info-search/README.md -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/awel_flow_web_info_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/awel_flow_web_info_search/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-web-info-search/awel_flow_web_info_search/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-web-info-search/dbgpts.toml -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/awel-flow-web-info-search/pyproject.toml -------------------------------------------------------------------------------- /workflow/awel-flow-web-info-search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/db-expert-assisant/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/db-expert-assisant/MANIFEST.in -------------------------------------------------------------------------------- /workflow/db-expert-assisant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/db-expert-assisant/README.md -------------------------------------------------------------------------------- /workflow/db-expert-assisant/db_expert_assisant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/db-expert-assisant/db_expert_assisant/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/db-expert-assisant/db_expert_assisant/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/db-expert-assisant/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/db-expert-assisant/dbgpts.toml -------------------------------------------------------------------------------- /workflow/db-expert-assisant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/db-expert-assisant/pyproject.toml -------------------------------------------------------------------------------- /workflow/db-expert-assisant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/MANIFEST.in -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/README.md -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/dbgpts.toml -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/__init__.py -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/extract.py -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/fin_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/financial_report_knowledge_factory/fin_knowledge.py -------------------------------------------------------------------------------- /workflow/financial-report-knowledge-factory/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-report-knowledge-factory/pyproject.toml -------------------------------------------------------------------------------- /workflow/financial-robot-app/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/MANIFEST.in -------------------------------------------------------------------------------- /workflow/financial-robot-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/README.md -------------------------------------------------------------------------------- /workflow/financial-robot-app/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/dbgpts.toml -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/__init__.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/chat_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/chat_database.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/chat_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/chat_indicator.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/chat_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/chat_knowledge.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/chat_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/chat_normal.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/classifier.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/common.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/intent.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/model.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/config.json -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/pytorch_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/pytorch_model.bin -------------------------------------------------------------------------------- /workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/financial_robot_app/models/dbgpt-hub-nlu-v0.1/tokenizer_config.json -------------------------------------------------------------------------------- /workflow/financial-robot-app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/main.py -------------------------------------------------------------------------------- /workflow/financial-robot-app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/financial-robot-app/pyproject.toml -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-save-url-to-vstore/MANIFEST.in -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-save-url-to-vstore/README.md -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-save-url-to-vstore/dbgpts.toml -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-save-url-to-vstore/pyproject.toml -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/rag_save_url_to_vstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/rag_save_url_to_vstore/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-save-url-to-vstore/rag_save_url_to_vstore/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/rag-save-url-to-vstore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-url-knowledge-example/MANIFEST.in -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-url-knowledge-example/README.md -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/dbgpts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-url-knowledge-example/dbgpts.toml -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-url-knowledge-example/pyproject.toml -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/rag_url_knowledge_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/rag_url_knowledge_example/definition/flow_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/dbgpts/HEAD/workflow/rag-url-knowledge-example/rag_url_knowledge_example/definition/flow_definition.json -------------------------------------------------------------------------------- /workflow/rag-url-knowledge-example/tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------