Fix variable typo (#8084)

This commit is contained in:
Nam Vu
2024-09-08 12:14:11 +07:00
committed by GitHub
parent b1918dae5e
commit 2d7954c7da
215 changed files with 599 additions and 597 deletions

View File

@@ -215,7 +215,7 @@ export type LogSessionListResponse = {
query: string // user's query question
message: string // prompt send to LLM
answer: string
creat_at: string
created_at: string
}[]
total: number
page: number
@@ -224,7 +224,7 @@ export type LogSessionListResponse = {
// log session detail and debug
export type LogSessionDetailResponse = {
id: string
cnversation_id: string
conversation_id: string
model_provider: string
query: string
inputs: Record<string, string | number | object>[]