feat: command palette, PSA ticket context, session-to-flow converter #108
13
backend/app/schemas/session_to_flow.py
Normal file
13
backend/app/schemas/session_to_flow.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class SessionToFlowRequest(BaseModel):
|
||||
session_id: str
|
||||
|
||||
|
||||
class SessionToFlowResponse(BaseModel):
|
||||
name: str
|
||||
description: str
|
||||
tree_type: str # Always "procedural"
|
||||
tags: list[str]
|
||||
tree_structure: dict # Procedural steps with optional fallback_steps
|
||||
Reference in New Issue
Block a user