This is an automated email from the ASF dual-hosted git repository.

xiaozhenliu pushed a change to branch xiaozhen-llm-chatbot
in repository https://gitbox.apache.org/repos/asf/texera.git


    from d93eacf0d0 Merge branch 'main' into xiaozhen-llm-chatbot
     add 68ff0b4554 refactoring.
     add ab9edb3fb4 refactoring.
     add cb4e5eeeaf cleanify session management.
     add eff152efb7 use sqliteSession for chat history.
     add 32fd63dddb restructuring.
     add 9d4e79d6ab refatoring modules.
     add b5a9969b70 fmt.

No new revisions were added by this update.

Summary of changes:
 core/chat-assistant-service/app/__init__.py        |  37 ----
 core/chat-assistant-service/app/create_app.py      |   2 +-
 .../app/endpoints/__init__.py                      |   1 -
 .../app/endpoints/websocket_endpoint.py            | 189 +++++++--------------
 .../app/messaging}/__init__.py                     |   0
 .../app/messaging/handlers.py                      | 122 +++++++++++++
 .../app/messaging/protocol.py                      | 110 ++++++++++++
 .../chat-assistant-service/app/messaging/sender.py |  46 +++++
 core/chat-assistant-service/app/models/__init__.py |   1 -
 .../app/runtime}/__init__.py                       |   0
 .../app/runtime/agent_session.py                   | 144 ++++++++++++++++
 .../app/runtime/session_manager.py                 |  55 ++++++
 .../app/services/__init__.py                       |  17 --
 .../app/services/agent_as_tools/__init__.py        |  17 --
 .../app/services/agent_as_tools/service.py         | 111 ------------
 .../services/agent_as_tools/texera_bot/__init__.py |  17 --
 .../services/agent_as_tools/texera_bot/prompts.py  | 149 ----------------
 .../app/texera_bot}/__init__.py                    |   0
 .../texera_bot/agent_factory.py                    |   9 +-
 .../texera_bot/prompt_loader.py                    |   3 +-
 .../texera_bot/prompts/builder_sys.md              |   0
 .../texera_bot/prompts/manager_sys.md              |   0
 .../texera_bot/prompts/planner_sys.md              |   0
 .../agent_as_tools => }/texera_bot/settings.py     |   0
 .../texera_bot/tool_registry.py                    |   6 +-
 .../agent_as_tools => }/texera_bot/util_tools.py   |   0
 core/chat-assistant-service/requirements.txt       |  20 ++-
 27 files changed, 565 insertions(+), 491 deletions(-)
 delete mode 100644 core/chat-assistant-service/app/__init__.py
 copy core/{amber/src/main/python/core => 
chat-assistant-service/app/messaging}/__init__.py (100%)
 create mode 100644 core/chat-assistant-service/app/messaging/handlers.py
 create mode 100644 core/chat-assistant-service/app/messaging/protocol.py
 create mode 100644 core/chat-assistant-service/app/messaging/sender.py
 copy core/{amber/src/main/python/core => 
chat-assistant-service/app/runtime}/__init__.py (100%)
 create mode 100644 core/chat-assistant-service/app/runtime/agent_session.py
 create mode 100644 core/chat-assistant-service/app/runtime/session_manager.py
 delete mode 100644 core/chat-assistant-service/app/services/__init__.py
 delete mode 100644 
core/chat-assistant-service/app/services/agent_as_tools/__init__.py
 delete mode 100644 
core/chat-assistant-service/app/services/agent_as_tools/service.py
 delete mode 100644 
core/chat-assistant-service/app/services/agent_as_tools/texera_bot/__init__.py
 delete mode 100644 
core/chat-assistant-service/app/services/agent_as_tools/texera_bot/prompts.py
 copy core/{amber/src/main/python/core => 
chat-assistant-service/app/texera_bot}/__init__.py (100%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/agent_factory.py (93%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/prompt_loader.py (97%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/prompts/builder_sys.md (100%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/prompts/manager_sys.md (100%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/prompts/planner_sys.md (100%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/settings.py (100%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/tool_registry.py (92%)
 rename core/chat-assistant-service/app/{services/agent_as_tools => 
}/texera_bot/util_tools.py (100%)

Reply via email to