Mika Scraper / ChaiChatSuccessResponse
Interface: ChaiChatSuccessResponse
The ChaiChatSuccessResponse
interface defines the structure of a successful response returned by the Mika Scraper API when querying chat-related data.
Properties
ok
ok:
true
Indicates the success of the response.
Defined in: src/_other-scraper/mika-ai.ts:22
choices
choices:
ChaiChatChoice
[]
An array of choices returned by the API, each conforming to the ChaiChatChoice
interface.
Defined in: src/_other-scraper/mika-ai.ts:23
created?
optional
created:number
Optional timestamp indicating when the response was generated. This value is in milliseconds since the Unix epoch.
Defined in: src/_other-scraper/mika-ai.ts:24
model?
optional
model:string
Optional identifier for the model that generated the response. This can help in identifying the underlying model used for generating the chat choices.
Defined in: src/_other-scraper/mika-ai.ts:25