The plugin-somm directory is a git submodule of this private repo. After first cloning, ensure you have an ssh key from your host registered on your Github account, and then run
git submodule update --init --recursive
To update the submodule when changes occur upstream, run
git submodule update --recursive --remote
- Eliza is built on top of the AI SDK by Vercel
generateObjectV2()
for requiring a structured response from an LLM- The runtime can provide a
State
in plugin handlers. AState
is basically just a formatted prompt with all of the context you pass into it, which can be included in the LLM prompt to inform its response. See thecomposeState
method