This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Fitz_Studio/data/files/txt/tree.txt
T
egutierrez 9ee8daa295 feat: Implement WebSocket support for chat functionality and refactor chat service
- Added WebSocket endpoint for real-time chat interactions.
- Refactored ChatPage component to utilize WebSocket for sending and receiving messages.
- Updated chat service to handle streaming responses from the LLM agent.
- Introduced error handling for WebSocket connections and message processing.
- Modified Editor_Test to include AppShellWithMenu for better layout.
- Adjusted file path in generar_tree.py for correct directory structure.
- Created llm_chat_endpoint_v1.py and llm_chat_srvc.py for handling chat requests and responses.
- Established logging for WebSocket interactions and errors.
2025-06-17 00:19:36 +02:00

31 lines
993 B
Plaintext

E:\Fitz_Studio\backend
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-311.pyc
│ ├── main.cpython-311.pyc
│ └── router_v1.cpython-311.pyc
├── db
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-311.pyc
│ │ └── conexion.cpython-311.pyc
│ └── conexion.py
├── deps
│ ├── __init__.py
│ └── auth.py
├── domains
│ ├── experiments
│ │ ├── __pycache__
│ │ ├── charts_examples_endpoint_v1.py
│ │ └── ping_endpoint_v1.py
│ ├── llms
│ │ ├── __pycache__
│ │ ├── llm_chat_endpoint_v1.py
│ │ └── llm_chat_srvc.py
│ └── text_manager
│ ├── __pycache__
│ ├── text_manager_endpoint_v1.py
│ ├── text_manager_schema.py
│ └── text_manager_srvc.py
├── main.py
└── router_v1.py