This commit is contained in:
2025-08-27 19:57:26 +08:00
parent 1ba2229ae6
commit 417e811a1c

View File

@@ -0,0 +1,12 @@
package com.agentsflex.llm.siliconflow;
import com.agentsflex.core.llm.functions.annotation.FunctionDef;
import com.agentsflex.core.llm.functions.annotation.FunctionParam;
public class WeatherFunctions {
@FunctionDef(name = "get_the_weather_info", description = "get the weather info")
public static String getWeatherInfo( @FunctionParam(name = "city", description = "the city name") String name) {
return "阴转多云";
}
}