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
class Foo {
a string
@@dynamic
c string
d string
e string
}
Here, even when @@dynamic was written between a and c, new fields will be added after e in the final prompt. The order of fields affects the performance of LLMs so currently you have add b, c, d, e in runtime to maintain the order.
The ability to reorder fields in dynamic classes will provide a more elegant solution.
The text was updated successfully, but these errors were encountered:
Here, even when
@@dynamic
was written betweena
andc
, new fields will be added aftere
in the final prompt. The order of fields affects the performance of LLMs so currently you have add b, c, d, e in runtime to maintain the order.The ability to reorder fields in dynamic classes will provide a more elegant solution.
The text was updated successfully, but these errors were encountered: