@quantiya/codevibe-claude-plugin 2.0.33 → 2.0.35
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/.claude-plugin/plugin.json +1 -1
- 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 +12 -3
|
@@ -150,6 +150,8 @@ export declare function requestOllamaGenerateStream(config: OllamaRuntimeConfig,
|
|
|
150
150
|
jsonSchema?: object;
|
|
151
151
|
images?: string[];
|
|
152
152
|
timeoutMs?: number;
|
|
153
|
+
numCtx?: number;
|
|
154
|
+
think?: boolean;
|
|
153
155
|
}): Promise<OllamaStreamedGeneration>;
|
|
154
156
|
/**
|
|
155
157
|
* STREAM a model pull from Ollama `/api/pull`, surfacing per-chunk download progress and
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|