Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tech.illasoft.com/llms.txt

Use this file to discover all available pages before exploring further.

路径

DELETE /feed/:id

认证

Bearer JWT(必须是 owner)

响应

{ "message": "ok" }

副作用

  1. DELETE feed WHERE id = ? AND owner_id = ?
  2. deleteFeedEmbedding(feedId) 从 LanceDB 移除 embedding
  3. 异步 deleteStorageFiles(resourceId, [imageId, videoId?, thumbId?, audioId?, coverId?]) 清理 feed 副本

错误

状态含义
404Feed 不存在或不属于当前用户

src/hono/feed/index.ts:617

相关