2026-01-26 16:53:41 +08:00
|
|
|
//
|
|
|
|
|
// KBPersonaChatCell.h
|
|
|
|
|
// keyBoard
|
|
|
|
|
//
|
|
|
|
|
// Created by Kiro on 2026/1/26.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
#import "KBPersonaModel.h"
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
/// 人设聊天 Cell
|
|
|
|
|
@interface KBPersonaChatCell : UICollectionViewCell
|
|
|
|
|
|
|
|
|
|
/// 人设数据
|
|
|
|
|
@property (nonatomic, strong) KBPersonaModel *persona;
|
|
|
|
|
|
|
|
|
|
/// 预加载数据
|
|
|
|
|
- (void)preloadDataIfNeeded;
|
|
|
|
|
|
2026-01-26 20:36:51 +08:00
|
|
|
/// 添加用户消息
|
|
|
|
|
- (void)appendUserMessage:(NSString *)text;
|
|
|
|
|
|
|
|
|
|
/// 添加 AI 消息(支持打字机效果)
|
|
|
|
|
- (void)appendAssistantMessage:(NSString *)text
|
|
|
|
|
audioId:(nullable NSString *)audioId;
|
|
|
|
|
|
2026-01-26 16:53:41 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|