-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSYSTEM_OVERVIEW.json
More file actions
254 lines (254 loc) · 7.71 KB
/
SYSTEM_OVERVIEW.json
File metadata and controls
254 lines (254 loc) · 7.71 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
{
"system": {
"title": "React Agent - Complete System with Custom Server",
"overview": "System with custom FastAPI server that replaces langgraph dev, maintaining compatibility with Next.js frontend and LangGraph SDK",
"architecture": {
"layers": [
{
"name": "Frontend Layer",
"components": [
{
"component": "Next.js UI",
"port": 3000,
"description": "Reactive user interface with chat streaming",
"subcomponents": [
{
"name": "LangGraph SDK Client",
"function": "Client for backend communication"
}
]
}
]
},
{
"name": "Server Layer",
"components": [
{
"component": "FastAPI Server",
"port": 2024,
"description": "Custom API gateway (~170 lines of code)",
"subcomponents": [
{
"name": "10 REST Endpoints",
"function": "Complete API for LangGraph SDK compatibility"
},
{
"name": "SSE Streaming",
"function": "Server-Sent Events for real-time responses"
}
]
}
]
},
{
"name": "Agent Layer",
"components": [
{
"component": "LangGraph ReAct Agent",
"description": "Reasoning + Acting pattern with LangGraph",
"subcomponents": [
{
"name": "OpenAI GPT-4o",
"function": "Language model for processing"
},
{
"name": "Search Tool",
"function": "Integrated tools for search"
}
]
}
]
},
{
"name": "Persistence Layer",
"components": [
{
"component": "InMemorySaver Checkpointer",
"description": "Conversation persistence system",
"subcomponents": [
{
"name": "Thread State",
"function": "Conversation metadata (step, status, config)"
},
{
"name": "Message Array",
"function": "Message sequence (human, ai, tool)"
}
]
}
]
}
]
},
"api_endpoints": [
{
"endpoint": "/info",
"method": "GET",
"description": "Server status"
},
{
"endpoint": "/assistants/{id}",
"method": "GET",
"description": "Assistant information"
},
{
"endpoint": "/assistants/{id}/graph",
"method": "GET",
"description": "Graph schema (empty)"
},
{
"endpoint": "/assistants/{id}/schemas",
"method": "GET",
"description": "Schemas (empty)"
},
{
"endpoint": "/assistants/{id}/subgraphs",
"method": "GET",
"description": "Subgraphs (empty array)"
},
{
"endpoint": "/assistants/search",
"method": "POST",
"description": "Search assistants"
},
{
"endpoint": "/threads",
"method": "POST",
"description": "Create new conversation thread"
},
{
"endpoint": "/threads/search",
"method": "POST",
"description": "Search threads (returns empty array)"
},
{
"endpoint": "/threads/{id}/history",
"method": "POST",
"description": "Retrieve conversation history"
},
{
"endpoint": "/threads/{id}/runs/stream",
"method": "POST",
"description": "Execute and stream agent response"
}
],
"checkpointer": {
"name": "InMemorySaver",
"description": "Core of conversation persistence",
"thread_state_metadata": {
"checkpoint_id": "UUID unique identifier for checkpoint state",
"thread_id": "UUID conversation identifier for isolation",
"step": "Incremental counter of executed LangGraph workflow steps",
"graph_id": "Identifier of the running LangGraph graph",
"next": "Array of LangGraph nodes to execute in next step",
"tasks": "Array of pending tasks in workflow execution",
"interrupts": "Array of workflow interruptions for user input",
"timestamp": "ISO8601 timestamp of checkpoint creation"
},
"message_array_structure": {
"messages": "Sequential array of LangGraph Message objects",
"type": "Message type enum (human|ai|tool|system)",
"content": "String textual content of the message",
"id": "UUID unique message identifier",
"tool_calls": "Array of tool calls for AI messages",
"tool_call_id": "Reference ID for tool response messages",
"additional_kwargs": "Dict of additional message-specific metadata",
"response_metadata": "Dict of response metadata from LLM provider"
}
},
"workflow_phases": [
{
"phase": "PHASE 1: System Initialization",
"endpoints": [
"GET /info",
"GET /assistants/{id}",
"GET /assistants/{id}/graph",
"GET /assistants/{id}/schemas",
"GET /assistants/{id}/subgraphs",
"POST /assistants/search"
]
},
{
"phase": "PHASE 2: Thread Creation",
"endpoints": [
"POST /threads",
"POST /threads/search",
"POST /threads/{id}/history"
]
},
{
"phase": "PHASE 3: Message Processing",
"endpoints": [
"POST /threads/{id}/runs/stream"
]
},
{
"phase": "PHASE 4: History Update",
"endpoints": [
"POST /threads/{id}/history"
]
}
],
"key_components": [
{
"name": "FastAPI Server",
"file": "server.py",
"port": 2024,
"function": "API gateway that translates frontend requests to LangGraph",
"features": [
"Manages checkpointer for conversation history",
"SSE for real-time responses"
]
},
{
"name": "LangGraph ReAct Agent",
"file": "graph.py",
"model": "OpenAI GPT-4o",
"features": [
"Integrated search tool",
"InMemorySaver for session persistence",
"ReAct pattern (Reasoning + Acting)"
]
},
{
"name": "Next.js Frontend",
"directory": "agent-chat-ui/",
"features": [
"LangGraph SDK for communication",
"Chat interface with streaming",
"Automatically retrieves thread history"
]
}
],
"features": {
"functional": [
"Persistent conversations between page refreshes",
"Real-time response streaming",
"Full compatibility with LangGraph SDK",
"Integrated tool calling (search)",
"Zero configuration deployment"
],
"technical": [
"Minimalist: ~170 lines of code",
"Production-ready: Error handling, appropriate logging",
"Performant: Optimized SSE streaming",
"Scalable: Decoupled architecture"
]
},
"startup_commands": {
"backend": {
"command": "python src/react_agent/server.py",
"directory": "/Users/nicco/Desktop/react-agent"
},
"frontend": {
"command": "npm run dev",
"directory": "/Users/nicco/Desktop/react-agent/agent-chat-ui"
}
},
"access_urls": {
"frontend": "http://localhost:3000",
"backend_api": "http://localhost:2024",
"api_docs": "http://localhost:2024/docs"
}
}
}