(ctx context.Context, id string)
| 197 | Get(ctx context.Context, id string) (*KnowledgeItem, error) |
| 198 | Update(ctx context.Context, item *KnowledgeItem) error |
| 199 | Delete(ctx context.Context, id string) error |
| 200 | |
| 201 | // 搜索操作 |
| 202 | Search(ctx context.Context, query *SearchQuery) ([]*SearchResult, error) |