You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
Research how user messages travel from frontend → backend → LLaMA 3 model → response → frontend. Define clean routing logic so every message is processed correctly, context is preserved, and responses are returned fast and structured.
User Story
Given user sends a message in chat When backend receives it Then message should be routed to the model with correct session context and response returned
Description:
Research how user messages travel from frontend → backend → LLaMA 3 model → response → frontend. Define clean routing logic so every message is processed correctly, context is preserved, and responses are returned fast and structured.
User Story
Given user sends a message in chat
When backend receives it
Then message should be routed to the model with correct session context and response returned
Tasks
Understand Message Flow
Study Full Chat Pipeline
Define Routing Layers
API Design for Message Routing
Create Chat Endpoint
POST
/chat/messageAccept:
Validate Request
Session Integration
Fetch Session Context
Context Formatting
Model Integration (LLaMA 3)
Connect to Local Model
Send Prompt to Model
Receive Model Response
Routing Logic Design
Response Handling
Performance Optimization
Error Handling
Logging & Debugging
Postman Testing 🧪
/chat/messageFrontend Integration
Acceptance Criteria
Testing Steps
Definition of Done