File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class QuerySubscribesInput(BaseModel):
1414 """查询订阅工具的输入参数模型"""
1515 explanation : str = Field (..., description = "Clear explanation of why this tool is being used in the current context" )
1616 status : Optional [str ] = Field ("all" ,
17- description = "Filter subscriptions by status: 'R' for enabled subscriptions, 'P ' for disabled ones, 'all' for all subscriptions" )
17+ description = "Filter subscriptions by status: 'R' for enabled subscriptions, 'S ' for paused ones, 'all' for all subscriptions" )
1818 media_type : Optional [str ] = Field ("all" ,
1919 description = "Filter by media type: '电影' for films, '电视剧' for television series, 'all' for all types" )
2020
@@ -33,7 +33,7 @@ def get_tool_message(self, **kwargs) -> Optional[str]:
3333
3434 # 根据状态过滤条件生成提示
3535 if status != "all" :
36- status_map = {"R" : "已启用" , "P " : "已禁用 " }
36+ status_map = {"R" : "已启用" , "S " : "已暂停 " }
3737 parts .append (f"状态: { status_map .get (status , status )} " )
3838
3939 # 根据媒体类型过滤条件生成提示
You can’t perform that action at this time.
0 commit comments