30 Star 333 Fork 116

GVPInfiniFlow/ragflow

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 243 Bytes
一键复制 编辑 原始数据 按行查看 历史
Magicbook1108 提交于 2026-04-24 10:02 +08:00 . Feat: Agent api (#14157)
from fastapi import FastAPI, Request
app = FastAPI()
@app.post("/")
async def echo(request: Request):
body = await request.body()
return body
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/infiniflow/ragflow.git
git@gitee.com:infiniflow/ragflow.git
infiniflow
ragflow
ragflow
main

搜索帮助