Hi, i have a problem with enums in an array with custom tool, the asistant returns partial string of some enums, this is my property
"subgenres": {
"type": "array",
"description": f"List of subgenres , must belong to: {subgenres}",
"items": {
"type": "string",
"description": 'Subgenre name',
"enum": subgenres
},
},
subgenres variable is an array of strings i.e. ["BREAKS - COMPLETE", "LIGHTS - XENON"]
sometimes only takes "LIGHTS" for example, insted of "LIGHTS - XENON"