Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
---|---|---|---|---|---|---|---|---|
id | BIGINT | 19 | √ | null |
|
|
||
prompt | LONGTEXT | 2147483647 | √ | null |
|
|
The text from the user that was used to generate the text response |
|
responseid | VARCHAR | 128 | √ | null |
|
|
A unique identifier for the chat completion, returned by the AI. |
|
fingerprint | VARCHAR | 128 | √ | null |
|
|
This fingerprint represents the backend configuration that the model runs with. |
|
generatedcontent | LONGTEXT | 2147483647 | √ | null |
|
|
The contents of the generated message. |
|
finishreason | VARCHAR | 128 | √ | null |
|
|
The reason the model stopped generating tokens. |
|
prompttokens | BIGINT | 19 | √ | null |
|
|
Number of tokens in the prompt. |
|
completiontoken | BIGINT | 19 | √ | null |
|
|
Number of tokens in the generated completion. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PRIMARY | Primary key | Asc | id |