Spaces:
Running
Running
Amlan-109
feat: Initial commit of LocalAI Amlan Edition with premium branding and personalization
750bbe6 | package schema | |
| import "time" | |
| type TranscriptionSegment struct { | |
| Id int `json:"id"` | |
| Start time.Duration `json:"start"` | |
| End time.Duration `json:"end"` | |
| Text string `json:"text"` | |
| Tokens []int `json:"tokens"` | |
| Speaker string `json:"speaker,omitempty"` | |
| } | |
| type TranscriptionResult struct { | |
| Segments []TranscriptionSegment `json:"segments,omitempty"` | |
| Text string `json:"text"` | |
| } | |