@quantiya/codevibe-codex-plugin 2.0.34 → 2.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +2 -1
- package/node_modules/@quantiya/codevibe-core/dist/index.js +453 -421
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-multi-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/runOrchestrationShell-browse-cancel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +895 -74
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/route-browse.d.ts +8 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/web/extract.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/web/fetch.d.ts +5 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/web/search.d.ts +32 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/workspace-terminal-coordinator.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +60 -1
- package/node_modules/@quantiya/codevibe-core/package.json +1 -1
- package/package.json +2 -2
|
@@ -36,9 +36,10 @@ export * as CredentialBroker from './credential-broker';
|
|
|
36
36
|
export * as SubstrateLaunch from './substrate-launch';
|
|
37
37
|
export * from './types';
|
|
38
38
|
export * as Planner from './planner';
|
|
39
|
+
export { OllamaGemmaPlannerRunner, type OllamaRuntimeConfig } from './local-model/ollama';
|
|
39
40
|
export * as Continuation from './continuation';
|
|
40
41
|
export * as StructuralSummary from './structural-summary';
|
|
41
|
-
export { runOrchestrationShell, handleShellUserInput, createOrchestrationStore, type OrchestrationStore } from './orchestration-shell';
|
|
42
|
+
export { runOrchestrationShell, handleShellUserInput, createOrchestrationStore, type OrchestrationStore, routeBrowse, type RouteBrowseDeps } from './orchestration-shell';
|
|
42
43
|
export { renderConversationEntry, ConversationPane, renderEntryAsLine, runLineLogFallback } from './orchestration-shell';
|
|
43
44
|
export { initInkRuntime, getInkRuntime } from './orchestration-shell';
|
|
44
45
|
export { runCompanionMode } from './companion-mode';
|