添加注释添加项目文件。

This commit is contained in:
ShaoHua
2025-10-17 02:39:47 +08:00
parent e94dab2050
commit 183177043f
14 changed files with 822 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace VoiceToFunction
{
// 语音解析结果(新增参数类型信息)
public class ParsedResult
{
public string FunctionName { get; set; }
public object[] Parameters { get; set; }
public string[] ParamTypes { get; set; } // 实际提取的参数类型
public string Error { get; set; }
}
}