MLKitSmartReply 框架参考

MLKSmartReply


@interface MLKSmartReply : NSObject

用于针对给定输入文本提供智能回复建议的对象。

  • 获取智能回复实例,用于为输入文本提供建议的回复。此方法是线程安全的。

    声明

    Objective-C

    + (nonnull MLKSmartReply *)smartReply;

    返回值

    提供建议的回复的 SmartReply 实例。

  • 在聊天对话上下文中提供回复建议。

    声明

    Objective-C

    - (void)suggestRepliesForMessages:(nonnull NSArray<MLKTextMessage *> *)messages
                           completion:(nonnull MLKSmartReplyCallback)completion;

    参数

    messages

    要为其生成建议的聊天消息序列。

    completion

    处理程序将通过建议结果或错误对主队列进行回调。

  • 不可用。

    声明

    Objective-C

    - (nonnull instancetype)init;