Tool Variables with snake case being converted int...
# support
c
Every time a tool is added where the name of the properties of the tool is in snake case the name is changed to camel case. Is this intentional or is it an oversight? assistant_id example: 996996ed-717a-402b-8cc9-9479ddcab7e In this example the 'start_time' property is being converted to 'startTime' I've attached a python script to showcase this change https://cdn.discordapp.com/attachments/1270616760860672120/1270616760952815647/snake_case_test.py?ex=66b45992&is=66b30812&hm=fed308c75f4fe42cfee4756955b120ee76fd079139b29746c98707bcdf5b077b&
v
@Connor Davis | Outbox AI The conversion from snake_case to camelCase is intentional and is a common practice in programming, especially when bridging systems that use different naming conventions. For instance, in Python, snake_case is often used for variable and function names, while in JavaScript, camelCase is the convention. The conversion ensures consistency and compatibility with various programming languages and APIs that might expect a specific naming convention. If this behavior is causing issues or is not desired for your particular use case, please let us know, and we can look into it further. If you need assistance with anything else, feel free to ask!
You can continue this conversation by mentioning me in the message.
Got it. Tagging @User for additional help.
s
it is intented to use camel case.
4 Views