diff options
author | icebaker <113217272+icebaker@users.noreply.github.com> | 2023-12-07 20:46:28 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 20:46:28 -0300 |
commit | fc87c60558a085f1917068802767958eab8c3263 (patch) | |
tree | 165e52d98ade38c10eb7de91120208f0293a140c /README.md | |
parent | 6a6b154f0453875d09bbf86127c475a2b9020aa7 (diff) | |
parent | 9d9702b39db67ab66894e5483a267a05ea0f6a2d (diff) |
Merge pull request #8 from icebaker/ib-tools-meta
Adding tools medatada
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -218,7 +218,7 @@ bot.eval('Hello', as: 'eval') bot.eval('Hello', as: 'repl') # When stream is enabled and available: -bot.eval('Hi!') do |content, fragment, finished| +bot.eval('Hi!') do |content, fragment, finished, meta| print fragment unless fragment.nil? end @@ -235,7 +235,7 @@ bot.boot bot.boot(as: 'eval') bot.boot(as: 'repl') -bot.boot do |content, fragment, finished| +bot.boot do |content, fragment, finished, meta| print fragment unless fragment.nil? end ``` |