File size: 1,437 Bytes
ae8b600
cc826a1
ae8b600
 
 
cc826a1
ae8b600
 
 
 
 
 
 
 
 
e5e756a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ae8b600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "name": "audio",
  "version": "1.0.0",
  "description": "将音频转录为文本",
  "author": "System",
  "ui_path": "/tool/audio",
  "requirements": [],
  "enabled": true,
  "category": "content_extraction",
  "capabilities": ["audio_transcription", "speech_to_text"],
  "governance": {
    "status": "active",
    "handling_decision": "正常使用",
    "dependency_risk": "依赖 transformers/torch,首次加载模型较慢"
  },
  "providers": [
    {
      "name": "whisper_transformers",
      "model_id": "openai/whisper-tiny",
      "description": "默认 ASR provider,基于 transformers pipeline",
      "status": "not_verified"
    },
    {
      "name": "nemo_nemotron",
      "model_id": "nvidia/nemotron-3.5-asr-streaming-0.6b",
      "description": "NVIDIA Nemotron 3.5 ASR streaming 模型",
      "status": "not_verified"
    },
    {
      "name": "qwen3_asr",
      "model_id": "Qwen/Qwen3-ASR-1.7B",
      "description": "Qwen3 ASR 多语言模型(30 语言 + 22 中文方言)",
      "status": "not_verified"
    }
  ],
  "ui": {
    "type": "static"
  },
  "tools": [
    {
      "name": "transcribe_audio_base64",
      "display_name": "音频转录",
      "purpose": "将音频转为文本",
      "parameters": {
        "audio_base64": {
          "type": "string",
          "required": true,
          "description": "音频 Base64"
        }
      },
      "risk_level": "medium"
    }
  ]
}