添加个人主页

This commit is contained in:
2026-01-29 16:03:21 +08:00
parent 766c62f3c0
commit 26096abbcc
6 changed files with 155 additions and 27 deletions

View File

@@ -164,6 +164,14 @@ typedef void (^AiVMSpeechTranscribeCompletion)(KBAiSpeechTranscribeResponse *_Nu
- (void)resetChatSessionWithCompanionId:(NSInteger)companionId
completion:(void(^)(KBChatSessionResetResponse * _Nullable response, NSError * _Nullable error))completion;
#pragma mark - AI 角色详情接口
/// 根据 ID 获取 AI 角色详情
/// @param companionId AI 角色 ID
/// @param completion 完成回调(返回角色详情)
- (void)fetchCompanionDetailWithCompanionId:(NSInteger)companionId
completion:(void(^)(KBAICompanionDetailModel * _Nullable detail, NSError * _Nullable error))completion;
@end
NS_ASSUME_NONNULL_END