通过 spring boot 调用 AnythingLLM 的API。
- git clone https://github.com/FangDaniu666/anything-llm-java-api.git
或下载该仓库代码到本地。 - 运行项目,查看 API 文档。
GET /workspace/{workspaceName}
GET /workspace/list
POST /workspace/new
请求体: 工作空间名称
DELETE /workspace/{workspaceName}
POST /workspace/{workspaceName}/update-embeddings
POST /workspace/chat
请求体: ChatRequest 对象
GET /workspace/stream-chat
请求体: ChatRequest 对象
GET /document/list
POST /document/upload
请求参数: multipartFile (文件)
- 在
AnythingllmConstant.java
文件中配置url
和token
。 - 项目需要 Java 11 及以上版本。