share_text_parse_tool_wrapper
Extract video content and convert speech to text by parsing TikTok share text with a specified API URL and speech recognition model. Requires valid API key for access.
Instructions
提取视频内容,需要传递apikey,否则无法使用视频内容提取功能!
参数:
- text: 抖音分享文本,包含分享链接
- api_base_url: API基础URL,默认使用siliconflow.cn
- model: 语音识别模型,默认使用FunAudioLLM/SenseVoiceSmall
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_base_url | No | ||
model | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"api_base_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Base Url"
},
"model": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Model"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}