overfitting?

#18
by adeebDkheel - opened

I tried to use model 'hermes3:8b-llama3.1-fp16' and 8bit, I'm not able to make the model use function 'get_weather_forecast()' it always reply with function call to
Tool called: get_weather
Arguments: {"city":"Paris"}

FUNCTION_SCHEMAS = [
{
"name": "get_weather_forecast",
"description": "Retrieves a simple weather forecast for a given location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city or location to get weather for forecast"
}
},
"required": ["location"]
}
}
]
FUNCTION_MAP = {
'get_weather_forecast': get_weather_forecast
}
also I tried to make temperature=0.01 but not the llm always calling 'get_weather()' not 'get_weather_forecast()'

could you please suggest a solution or work arround, thanks.

Sign up or log in to comment