1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import StreamingResponse
from app.schemas import NodeRunRequest, NodeRunResponse, MergeStrategy, Role, Message, Context
from app.services.llm import llm_streamer
from dotenv import load_dotenv
import os
load_dotenv()
app = FastAPI(title="ContextFlow Backend")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
def read_root():
return {"message": "ContextFlow Backend is running"}
def smart_merge_messages(messages: list[Message]) -> list[Message]:
"""
Merges messages using two steps:
1. Deduplication by ID (to handle diamond dependencies).
2. Merging consecutive messages from the same role.
"""
if not messages:
return []
# 1. Deduplicate by ID, keeping order
seen_ids = set()
deduplicated = []
for msg in messages:
if msg.id not in seen_ids:
deduplicated.append(msg)
seen_ids.add(msg.id)
# 2. Merge consecutive roles
if not deduplicated:
return []
merged = []
current_msg = deduplicated[0].model_copy()
for next_msg in deduplicated[1:]:
if next_msg.role == current_msg.role:
# Merge content
current_msg.content += f"\n\n{next_msg.content}"
# Keep the latest timestamp
current_msg.timestamp = next_msg.timestamp
else:
merged.append(current_msg)
current_msg = next_msg.model_copy()
merged.append(current_msg)
return merged
@app.post("/api/run_node_stream")
async def run_node_stream(request: NodeRunRequest):
"""
Stream the response from the LLM.
"""
# 1. Concatenate all incoming contexts first
raw_messages = []
for ctx in request.incoming_contexts:
raw_messages.extend(ctx.messages)
# 2. Apply Merge Strategy
final_messages = []
if request.merge_strategy == MergeStrategy.SMART:
final_messages = smart_merge_messages(raw_messages)
else:
# RAW strategy: just keep them as is
final_messages = raw_messages
execution_context = Context(messages=final_messages)
return StreamingResponse(
llm_streamer(execution_context, request.user_prompt, request.config),
media_type="text/event-stream"
)
|