Interface IAIChatApiParams

interface IAIChatApiParams {
    app: string;
    npcId: string;
    seqId?: number;
    timestamp?: number;
    userId: string;
}

Properties

app: string

appId

npcId: string

chatNpcID(可根据/v1/dialogue/npcs接口获取)

seqId?: number

user与chatNpc交互的顺序编号,需要保证是增加的

timestamp?: number

调用接口时的UNIX时间戳,单位毫秒

userId: string

用户ID

Generated using TypeDoc