Files
new-api/dto/file_data.go
CalciumIon 2b38e8ed8d feat: add multi-file type support for Gemini and Claude
- Add file data DTO for structured file handling
- Implement file decoder service
- Update Claude and Gemini relay channels to handle various file types
- Reorganize worker service to cf_worker for clarity
- Update token counter and image service for new file types
2024-12-29 00:00:24 +08:00

9 lines
118 B
Go

package dto
type LocalFileData struct {
MimeType string
Base64Data string
Url string
Size int64
}