What do you want to see?
We want developers to be able to reuse Actions properly. Currently, reusing Actions causes the Agent to crash.
Probably requires us to have a pre-compilation step to allow better composition
e.g.
const SearchMemeAction = () => <Action name... />
const MemeCreator = () => {
return (
<SearchMemeAction />
)
}
const MemeGifSearcher = () => {
return (
<SearchMemeAction />
)
}
Just as an example.
Link to original discussion
No response
What do you want to see?
We want developers to be able to reuse Actions properly. Currently, reusing Actions causes the Agent to crash.
Probably requires us to have a pre-compilation step to allow better composition
e.g.
Just as an example.
Link to original discussion
No response