@@ -43,6 +43,9 @@ flowchart TD
4343 E --"GET /api/py/chat/history"--> H1[[Chat History]]
4444 // → api/index.py chat_history
4545
46+ E --"GET /api/py/chat/suggested-questions"--> SQ[[Suggested Questions]]
47+ // → api/index.py chat_suggested_questions
48+
4649 E --"GET /api/py/chatbi/access/verify"--> CV[[ChatBI Access Verify]]
4750 // → api/index.py chatbi_access_verify
4851
@@ -101,12 +104,17 @@ flowchart TD
101104- ` POST /api/py/chain/chat ` → ` chain_chat_route ` // → ` api/index.py::chain_chat_route `
102105- ` POST /api/py/chat ` → ` chat ` // → ` api/index.py::chat `
103106- ` GET /api/py/chat/history ` → ` chat_history ` // → ` api/index.py::chat_history `
107+ - ` GET /api/py/chat/suggested-questions ` → ` chat_suggested_questions ` // → ` api/index.py::chat_suggested_questions `
104108- ` GET /api/py/chatbi/access/verify ` → ` chatbi_access_verify ` // → ` api/index.py::chatbi_access_verify `
105109- ` POST /api/py/code/query ` → ` code_query ` // → ` api/index.py::code_query `
106110- ` POST /api/py/code/search ` → ` code_search ` // → ` api/index.py::code_search `
107111- ` GET /api/py/health ` → ` health ` // → ` api/index.py::health `
112+ - ` GET /api/py/live ` → ` live ` // → ` api/index.py::live `
113+ - ` GET /api/py/ready ` → ` ready ` // → ` api/index.py::ready `
108114- ` POST /api/py/text2sql/chat ` → ` text2sql_chat ` // → ` api/index.py::text2sql_chat `
109115- ` POST /api/py/unified/chat ` → ` unified_chat_route ` // → ` api/index.py::unified_chat_route `
116+ - ` POST /api/py/unified/chat/graph ` → ` unified_chat_graph_route ` // → ` api/index.py::unified_chat_graph_route `
117+ - ` POST /api/py/unified/chat/graph/stream ` → ` unified_chat_graph_stream_route ` // → ` api/index.py::unified_chat_graph_stream_route `
110118- ` POST /api/py/unified/chat/stream ` → ` unified_chat_stream_route ` // → ` api/index.py::unified_chat_stream_route `
111119
112120#### Anchors(from manifest)
0 commit comments