You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When defining a class with multiple elements, the order in which those elements are declared is not always maintained in the generated output.
Example:
class Foo {
x bar[]
}
class Bar {
a string
b string
c string
}
function Func(input:Foo) -> Foo {
client XYZ
prompt "{{input}}"
}
The expected prompt is [{"a": "x", "b": "y", "c": "z"}]
But actual prompt can be [{"c": "z", "a": "x", "b": "y"}] or [{"b": "y", "c": "z", "a": "x"}]...
The text was updated successfully, but these errors were encountered:
When defining a class with multiple elements, the order in which those elements are declared is not always maintained in the generated output.
Example:
The expected prompt is
[{"a": "x", "b": "y", "c": "z"}]
But actual prompt can be
[{"c": "z", "a": "x", "b": "y"}]
or[{"b": "y", "c": "z", "a": "x"}]
...The text was updated successfully, but these errors were encountered: