Skip to content
Merged
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: 4 additions & 0 deletions packages/cli/src/commands/code-pack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ async function runPackEngine(repoPath: string, args: CodePackArgs): Promise<Code
? await (async () => {
const composed = await openStore({ path: dbPath, readOnly: true });
await composed.graph.open();
// Pack stages embeddings through `temporal.exportEmbeddingsToParquet`,
// so the temporal DuckDB also needs an open connection — the graph
// view alone is not enough.
await composed.temporal.open();
return composed;
})()
: undefined;
Expand Down
Loading