pdf.go 192 B

12345678910
  1. package model
  2. type ParsePdfResponse struct {
  3. Pages int64 `json:"pages"`
  4. Markdown string `json:"markdown"`
  5. }
  6. type ParsePdfListResponse struct {
  7. Markdowns []string `json:"markdowns"`
  8. }