RAGFlow go API server (#13240)

# RAGFlow Go Implementation Plan 🚀

This repository tracks the progress of porting RAGFlow to Go. We'll
implement core features and provide performance comparisons between
Python and Go versions.

## Implementation Checklist

- [x] User Management APIs
- [x] Dataset Management Operations
- [x] Retrieval Test
- [x] Chat Management Operations
- [x] Infinity Go SDK

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
Co-authored-by: Yingfeng Zhang <yingfeng.zhang@gmail.com>
This commit is contained in:
Jin Hai
2026-03-04 19:17:16 +08:00
committed by GitHub
parent 2508c46c8f
commit 70e9743ef1
257 changed files with 80490 additions and 6 deletions

View File

@@ -75,6 +75,21 @@ export default defineConfig(({ mode, command }) => {
changeOrigin: true,
ws: true,
},
// '/v1/system/config': {
// target: 'http://127.0.0.1:9382/',
// changeOrigin: true,
// ws: true,
// },
// '/v1/user/login': {
// target: 'http://127.0.0.1:9382/',
// changeOrigin: true,
// ws: true,
// },
// '/v1/user/logout': {
// target: 'http://127.0.0.1:9382/',
// changeOrigin: true,
// ws: true,
// },
'/v1': {
target: 'http://127.0.0.1:9380/',
changeOrigin: true,