企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### **初始化文件模块** //配置文件传输参数 AnyChatFileOpt *fileOpt = [[AnyChatFileOpt alloc]init]; fileOpt.fileDelegate = self; [AnyChatSDK getInstance].fileOpt = fileOpt; 接口说明: 重要流程,初始化文件模块的基本配置,文件的各种操作才能执行 返回值: 无 接口参数简介: | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | fileOpt | AnyChatFileOpt | 文件配置类 | 是 | 遵循代理协议 @interface AnyChatVC : UIViewController <FileDelegate> 实现FileDelegate代理回调: 接收文件回调 @param data userid 文件发送人ID filePath 文件本地存储路径 fileLength 文件大小 filename 文件名 - (void)onFileReceived:(NSDictionary *)data;