9ee8daa295
- 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.
31 lines
993 B
Plaintext
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 |