complete history initial draft

This commit is contained in:
2023-04-18 14:16:57 -07:00
parent 4c3e224db6
commit bddd47ecd0
2 changed files with 167 additions and 7 deletions

View File

@@ -68,13 +68,13 @@ type FineTuningResponseModel struct {
VerificationAttemptsCount int32 `json:"verification_attempts_count"`
SliceIds []string `json:"slice_ids"`
}
type GetHistoryResponseModel struct {
History []HistoryItemResponseModel `json:"history"`
type GetHistoryResponse struct {
History []HistoryItemList `json:"history"`
}
type GetVoicesResponseModel struct {
Voices []VoiceResponseModel `json:"voices"`
}
type HistoryItemResponseModel struct {
type HistoryItemList struct {
HistoryItemId string `json:"history_item_id"`
RequestId string `json:"request_id"`
VoiceId string `json:"voice_id"`