constants.go 289 B

123456789101112131415161718
  1. package doc2x
  2. import (
  3. "github.com/labring/aiproxy/core/model"
  4. "github.com/labring/aiproxy/core/relay/mode"
  5. )
  6. var ModelList = []model.ModelConfig{
  7. {
  8. Model: "pdf",
  9. Type: mode.ParsePdf,
  10. Owner: model.ModelOwnerDoc2x,
  11. Price: model.Price{
  12. InputPrice: 20,
  13. },
  14. RPM: 10,
  15. },
  16. }