docs(memory): drop external-project attribution from javadoc

This commit is contained in:
matevip 2026-05-16 17:30:49 +08:00
parent c8d908078a
commit 819c5d5c50
3 changed files with 0 additions and 13 deletions

View File

@ -221,15 +221,6 @@ public class FeishuChannelAdapter extends AbstractChannelAdapter {
}
}
})
// Silently ignore message reaction events to avoid HandlerNotFoundException
.onP2MessageReactionCreatedV1(new ImService.P2MessageReactionCreatedV1Handler() {
@Override
public void handle(com.lark.oapi.service.im.v1.model.P2MessageReactionCreatedV1 event) {}
})
.onP2MessageReactionDeletedV1(new ImService.P2MessageReactionDeletedV1Handler() {
@Override
public void handle(com.lark.oapi.service.im.v1.model.P2MessageReactionDeletedV1 event) {}
})
.build();
return new com.lark.oapi.ws.Client.Builder(appId, appSecret)

View File

@ -30,8 +30,6 @@ import java.util.concurrent.ConcurrentHashMap;
* <p>
* Triggered every N turns via ConversationCompletedEvent.
* Runs async to avoid blocking the user response.
* <p>
* Inspired by Hermes Agent's Memory Nudge mechanism.
*
* @author MateClaw Team
*/

View File

@ -13,8 +13,6 @@ import java.util.List;
* <li>Post-turn sync (async persistence)</li>
* <li>Agent tools (Spring AI @Tool beans)</li>
* </ul>
* <p>
* Inspired by Hermes Agent's MemoryProvider architecture.
*
* @author MateClaw Team
*/