-
Notifications
You must be signed in to change notification settings - Fork 156
It seems that uv run bub chat only store tape entries in the program runtime, is there any ways to store the tape data as a standalone file?
All reactions
It seems that
uv run bub chatonly store tape entries in the program runtime
It's not true, the default tape store is file store:
bub/src/bub/builtin/hook_impl.py
Lines 156 to 160 in fc036b0
Replies: 3 comments
as dedefault tape data in ~/.bub/tapes on linux ,
DEFAULT_HOME = pathlib.Path.home() / ".bub"
All reactions
Thanks to @rockyzhengwu for answering.
And we've recently added support for using databases as tape, currently covering SQLite and SQLAlchemy. https://github.com/bubbuild/bub-contrib
This is still in its early stages, so we welcome your feedback on any issues.
Have fun!
All reactions
It seems that
uv run bub chatonly store tape entries in the program runtime
It's not true, the default tape store is file store:
bub/src/bub/builtin/hook_impl.py
Lines 156 to 160 in fc036b0