Daniele Scasciafratte
Daniele Scasciafratte
I think that the issue is on https://github.com/TabbyML/tabby/blob/main/clients/tabby-agent/src/protocol.ts#L100 and it is missing that capability. It isn't better if the capabilities to avoid a crash and just report the error, like...
The line: ``` __AMBER_VAL_0=$(echo "(${number}0.5)/1" | bc${operator}) ``` Is wrong. It should be: ``` __AMBER_VAL_0=$(echo "(${number}${operator}0.5)/1" | bc) ```
New amber code: ``` pub fun round(number: Num): Num { let operator = "+" if number > 0 { operator = "-" } return trust $echo "({number}{operator}0.5)/1" | bc$ as...
@rbtylee shared to me his version of extract written in Amber: ``` // extract.ab: An amber extraction library function // // Copyright 2024 Robert Wiley // // This work is...
That's true so maybe the stdlib should not this kind of check for command check.
To proceed with this one I think that we need to define and implement the RDC as it is a very complex case.
https://github.com/BerriAI/litellm/blob/main/litellm/proxy/management_endpoints/internal_user_endpoints.py#L445 Looking here if there is no key there is the error as that case is not handled. @ishaan-jaff it seems an easy fix but probably require some alerting to...
the problem is still valid
That page too doesn't mention a way like my snippet to change a specific value of a column that already exists. I need that because I have a field that...