From 8688c8c2b37d3158817beebed18875d4f299d320 Mon Sep 17 00:00:00 2001 From: jerryjzhang Date: Thu, 16 Nov 2023 09:58:25 +0800 Subject: [PATCH] [improvement][chat] Move python code out of chat-core module --- chat/{core/src/main => }/python/config/config_parse.py | 0 chat/{core/src/main => }/python/config/run_config.ini | 0 chat/{core/src/main => }/python/few_shot_example/sql_examplar.py | 0 chat/{core/src/main => }/python/instances/chromadb_instance.py | 0 chat/{core/src/main => }/python/instances/llm_instance.py | 0 chat/{core/src/main => }/python/instances/logging_instance.py | 0 chat/{core/src/main => }/python/instances/text2vec.py | 0 chat/{core/src/main => }/python/requirements.txt | 0 .../src/main => }/python/services/plugin_call/prompt_construct.py | 0 chat/{core/src/main => }/python/services/plugin_call/run.py | 0 .../src/main => }/python/services/query_retrieval/retriever.py | 0 chat/{core/src/main => }/python/services/query_retrieval/run.py | 0 chat/{core/src/main => }/python/services/sql/constructor.py | 0 .../src/main => }/python/services/sql/examples_reload_run.py | 0 chat/{core/src/main => }/python/services/sql/output_parser.py | 0 chat/{core/src/main => }/python/services/sql/run.py | 0 chat/{core/src/main => }/python/services/sql/sql_agent.py | 0 .../src/main => }/python/services_router/plugin_call_service.py | 0 .../src/main => }/python/services_router/preset_query_service.py | 0 .../src/main => }/python/services_router/query2sql_service.py | 0 .../src/main => }/python/services_router/retriever_service.py | 0 .../src/main => }/python/services_router/solved_query_service.py | 0 chat/{core/src/main => }/python/supersonic_llmparser.py | 0 chat/{core/src/main => }/python/utils/chromadb_utils.py | 0 24 files changed, 0 insertions(+), 0 deletions(-) rename chat/{core/src/main => }/python/config/config_parse.py (100%) rename chat/{core/src/main => }/python/config/run_config.ini (100%) rename chat/{core/src/main => }/python/few_shot_example/sql_examplar.py (100%) rename chat/{core/src/main => }/python/instances/chromadb_instance.py (100%) rename chat/{core/src/main => }/python/instances/llm_instance.py (100%) rename chat/{core/src/main => }/python/instances/logging_instance.py (100%) rename chat/{core/src/main => }/python/instances/text2vec.py (100%) rename chat/{core/src/main => }/python/requirements.txt (100%) rename chat/{core/src/main => }/python/services/plugin_call/prompt_construct.py (100%) rename chat/{core/src/main => }/python/services/plugin_call/run.py (100%) rename chat/{core/src/main => }/python/services/query_retrieval/retriever.py (100%) rename chat/{core/src/main => }/python/services/query_retrieval/run.py (100%) rename chat/{core/src/main => }/python/services/sql/constructor.py (100%) rename chat/{core/src/main => }/python/services/sql/examples_reload_run.py (100%) rename chat/{core/src/main => }/python/services/sql/output_parser.py (100%) rename chat/{core/src/main => }/python/services/sql/run.py (100%) rename chat/{core/src/main => }/python/services/sql/sql_agent.py (100%) rename chat/{core/src/main => }/python/services_router/plugin_call_service.py (100%) rename chat/{core/src/main => }/python/services_router/preset_query_service.py (100%) rename chat/{core/src/main => }/python/services_router/query2sql_service.py (100%) rename chat/{core/src/main => }/python/services_router/retriever_service.py (100%) rename chat/{core/src/main => }/python/services_router/solved_query_service.py (100%) rename chat/{core/src/main => }/python/supersonic_llmparser.py (100%) rename chat/{core/src/main => }/python/utils/chromadb_utils.py (100%) diff --git a/chat/core/src/main/python/config/config_parse.py b/chat/python/config/config_parse.py similarity index 100% rename from chat/core/src/main/python/config/config_parse.py rename to chat/python/config/config_parse.py diff --git a/chat/core/src/main/python/config/run_config.ini b/chat/python/config/run_config.ini similarity index 100% rename from chat/core/src/main/python/config/run_config.ini rename to chat/python/config/run_config.ini diff --git a/chat/core/src/main/python/few_shot_example/sql_examplar.py b/chat/python/few_shot_example/sql_examplar.py similarity index 100% rename from chat/core/src/main/python/few_shot_example/sql_examplar.py rename to chat/python/few_shot_example/sql_examplar.py diff --git a/chat/core/src/main/python/instances/chromadb_instance.py b/chat/python/instances/chromadb_instance.py similarity index 100% rename from chat/core/src/main/python/instances/chromadb_instance.py rename to chat/python/instances/chromadb_instance.py diff --git a/chat/core/src/main/python/instances/llm_instance.py b/chat/python/instances/llm_instance.py similarity index 100% rename from chat/core/src/main/python/instances/llm_instance.py rename to chat/python/instances/llm_instance.py diff --git a/chat/core/src/main/python/instances/logging_instance.py b/chat/python/instances/logging_instance.py similarity index 100% rename from chat/core/src/main/python/instances/logging_instance.py rename to chat/python/instances/logging_instance.py diff --git a/chat/core/src/main/python/instances/text2vec.py b/chat/python/instances/text2vec.py similarity index 100% rename from chat/core/src/main/python/instances/text2vec.py rename to chat/python/instances/text2vec.py diff --git a/chat/core/src/main/python/requirements.txt b/chat/python/requirements.txt similarity index 100% rename from chat/core/src/main/python/requirements.txt rename to chat/python/requirements.txt diff --git a/chat/core/src/main/python/services/plugin_call/prompt_construct.py b/chat/python/services/plugin_call/prompt_construct.py similarity index 100% rename from chat/core/src/main/python/services/plugin_call/prompt_construct.py rename to chat/python/services/plugin_call/prompt_construct.py diff --git a/chat/core/src/main/python/services/plugin_call/run.py b/chat/python/services/plugin_call/run.py similarity index 100% rename from chat/core/src/main/python/services/plugin_call/run.py rename to chat/python/services/plugin_call/run.py diff --git a/chat/core/src/main/python/services/query_retrieval/retriever.py b/chat/python/services/query_retrieval/retriever.py similarity index 100% rename from chat/core/src/main/python/services/query_retrieval/retriever.py rename to chat/python/services/query_retrieval/retriever.py diff --git a/chat/core/src/main/python/services/query_retrieval/run.py b/chat/python/services/query_retrieval/run.py similarity index 100% rename from chat/core/src/main/python/services/query_retrieval/run.py rename to chat/python/services/query_retrieval/run.py diff --git a/chat/core/src/main/python/services/sql/constructor.py b/chat/python/services/sql/constructor.py similarity index 100% rename from chat/core/src/main/python/services/sql/constructor.py rename to chat/python/services/sql/constructor.py diff --git a/chat/core/src/main/python/services/sql/examples_reload_run.py b/chat/python/services/sql/examples_reload_run.py similarity index 100% rename from chat/core/src/main/python/services/sql/examples_reload_run.py rename to chat/python/services/sql/examples_reload_run.py diff --git a/chat/core/src/main/python/services/sql/output_parser.py b/chat/python/services/sql/output_parser.py similarity index 100% rename from chat/core/src/main/python/services/sql/output_parser.py rename to chat/python/services/sql/output_parser.py diff --git a/chat/core/src/main/python/services/sql/run.py b/chat/python/services/sql/run.py similarity index 100% rename from chat/core/src/main/python/services/sql/run.py rename to chat/python/services/sql/run.py diff --git a/chat/core/src/main/python/services/sql/sql_agent.py b/chat/python/services/sql/sql_agent.py similarity index 100% rename from chat/core/src/main/python/services/sql/sql_agent.py rename to chat/python/services/sql/sql_agent.py diff --git a/chat/core/src/main/python/services_router/plugin_call_service.py b/chat/python/services_router/plugin_call_service.py similarity index 100% rename from chat/core/src/main/python/services_router/plugin_call_service.py rename to chat/python/services_router/plugin_call_service.py diff --git a/chat/core/src/main/python/services_router/preset_query_service.py b/chat/python/services_router/preset_query_service.py similarity index 100% rename from chat/core/src/main/python/services_router/preset_query_service.py rename to chat/python/services_router/preset_query_service.py diff --git a/chat/core/src/main/python/services_router/query2sql_service.py b/chat/python/services_router/query2sql_service.py similarity index 100% rename from chat/core/src/main/python/services_router/query2sql_service.py rename to chat/python/services_router/query2sql_service.py diff --git a/chat/core/src/main/python/services_router/retriever_service.py b/chat/python/services_router/retriever_service.py similarity index 100% rename from chat/core/src/main/python/services_router/retriever_service.py rename to chat/python/services_router/retriever_service.py diff --git a/chat/core/src/main/python/services_router/solved_query_service.py b/chat/python/services_router/solved_query_service.py similarity index 100% rename from chat/core/src/main/python/services_router/solved_query_service.py rename to chat/python/services_router/solved_query_service.py diff --git a/chat/core/src/main/python/supersonic_llmparser.py b/chat/python/supersonic_llmparser.py similarity index 100% rename from chat/core/src/main/python/supersonic_llmparser.py rename to chat/python/supersonic_llmparser.py diff --git a/chat/core/src/main/python/utils/chromadb_utils.py b/chat/python/utils/chromadb_utils.py similarity index 100% rename from chat/core/src/main/python/utils/chromadb_utils.py rename to chat/python/utils/chromadb_utils.py