funasrStreamingAPI.yaml 796 B

123456789101112131415161718192021222324252627282930
  1. # Funasr Streaming ASR Engine Configuration
  2. # For details on the model, see: https://www.modelscope.cn/models/iic/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-online-onnx/summary
  3. NAME: funasrStreaming
  4. VERSION: "v0.0.1"
  5. DESC: "接入Stream ASR"
  6. META: {
  7. official: "https://github.com/modelscope/FunASR",
  8. tips: "支持本地部署的FunAsrStream应用",
  9. fee: "free",
  10. infer_type: "stream"
  11. }
  12. PARAMETERS: [
  13. {
  14. name: "api_url",
  15. description: "Funasr Streaming API URL",
  16. type: "string",
  17. required: false,
  18. choices: [],
  19. default: "ws://adh-funasr:10095"
  20. },
  21. {
  22. name: "mode",
  23. description: "Funasr Streaming mode",
  24. type: "string",
  25. required: false,
  26. # choices: ["online", "offline", "2pass"],
  27. choices: ["2pass"],
  28. default: "2pass"
  29. }
  30. ]