Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bub/builtin/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
is_context_length_error,
)
from bub.builtin.settings import load_settings
from bub.builtin.tape import Tape
from bub.envelope import field_of
from bub.framework import BubFramework
from bub.skills import discover_skills, render_skills_prompt
from bub.store import AsyncTapeStoreAdapter, InMemoryTapeStore, is_async_tape_store
from bub.streaming import AsyncStreamEvents, StreamEvent, StreamState
from bub.tape import AsyncTapeStoreAdapter, InMemoryTapeStore, is_async_tape_store
from bub.tape import Tape
from bub.tools import (
REGISTRY,
Tool,
Expand Down
5 changes: 3 additions & 2 deletions src/bub/builtin/hook_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
from bub.hooks import hookimpl
from bub.hooks.interception import ToolCall, ToolCallDecision
from bub.model_selection import ModelChoice, ModelOptions
from bub.store import TapeStore
from bub.streaming import AsyncStreamEvents
from bub.tape import TapeContext, TapeStore
from bub.tape import TapeContext
from bub.turn import TurnState

AGENTS_FILE_NAME = "AGENTS.md"
Expand Down Expand Up @@ -357,7 +358,7 @@ def render_outbound(
@hookimpl
def provide_tape_store(self) -> TapeStore:
import bub
from bub.builtin.store import FileTapeStore
from bub.store import FileTapeStore

return FileTapeStore(directory=bub.home / "tapes")

Expand Down
2 changes: 1 addition & 1 deletion src/bub/builtin/model_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

from bub.builtin.codex_provider import OpenaiCodexProvider, should_use_openai_codex_provider
from bub.builtin.settings import AgentSettings, ModelCandidate
from bub.builtin.tape import Tape
from bub.errors import BubError, ErrorKind
from bub.hooks.interception import (
AgentHooks,
Expand All @@ -37,6 +36,7 @@
LlmCallResult,
)
from bub.streaming import AsyncStreamEvents, StreamEvent, StreamState
from bub.tape import Tape
from bub.tools import Tool, ToolContext, ToolExecutor

CONTEXT_LENGTH_PATTERNS = re.compile(
Expand Down
284 changes: 0 additions & 284 deletions src/bub/builtin/store.py

This file was deleted.

Loading
Loading