@bike4mind/cli 0.2.62-fix-cli-verbose-logging.21749 → 0.2.62-fixed-temp-models.21767

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.
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-4QTLLPJJ.js";
4
+ } from "./chunk-GPAJBA5P.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/artifactExtractor.js
7
7
  var ARTIFACT_TAG_REGEX = /<artifact\s+(.*?)>([\s\S]*?)<\/artifact>/gi;
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  BadRequestError,
4
4
  secureParameters
5
- } from "./chunk-76NSNH4E.js";
5
+ } from "./chunk-ZXHNBXZL.js";
6
6
  import {
7
7
  CompletionApiUsageTransaction,
8
8
  GenericCreditDeductTransaction,
@@ -13,7 +13,7 @@ import {
13
13
  ToolUsageTransaction,
14
14
  TransferCreditTransaction,
15
15
  VideoGenerationUsageTransaction
16
- } from "./chunk-4QTLLPJJ.js";
16
+ } from "./chunk-GPAJBA5P.js";
17
17
 
18
18
  // ../../b4m-core/packages/services/dist/src/creditService/subtractCredits.js
19
19
  import { z } from "zod";
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@bike4mind/cli",
6
- version: "0.2.62-fix-cli-verbose-logging.21749+e226f0e6b",
6
+ version: "0.2.62-fixed-temp-models.21767+a4448d8b6",
7
7
  type: "module",
8
8
  description: "Interactive CLI tool for Bike4Mind with ReAct agents",
9
9
  license: "UNLICENSED",
@@ -118,11 +118,11 @@ var package_default = {
118
118
  zustand: "^4.5.4"
119
119
  },
120
120
  devDependencies: {
121
- "@bike4mind/agents": "0.3.1-fix-cli-verbose-logging.21749+e226f0e6b",
122
- "@bike4mind/common": "2.74.1-fix-cli-verbose-logging.21749+e226f0e6b",
123
- "@bike4mind/mcp": "1.33.20-fix-cli-verbose-logging.21749+e226f0e6b",
124
- "@bike4mind/services": "2.68.2-fix-cli-verbose-logging.21749+e226f0e6b",
125
- "@bike4mind/utils": "2.16.1-fix-cli-verbose-logging.21749+e226f0e6b",
121
+ "@bike4mind/agents": "0.3.1-fixed-temp-models.21767+a4448d8b6",
122
+ "@bike4mind/common": "2.74.1-fixed-temp-models.21767+a4448d8b6",
123
+ "@bike4mind/mcp": "1.33.20-fixed-temp-models.21767+a4448d8b6",
124
+ "@bike4mind/services": "2.68.2-fixed-temp-models.21767+a4448d8b6",
125
+ "@bike4mind/utils": "2.16.1-fixed-temp-models.21767+a4448d8b6",
126
126
  "@types/better-sqlite3": "^7.6.13",
127
127
  "@types/jsonwebtoken": "^9.0.4",
128
128
  "@types/node": "^22.9.0",
@@ -139,7 +139,7 @@ var package_default = {
139
139
  optionalDependencies: {
140
140
  "@vscode/ripgrep": "^1.17.1"
141
141
  },
142
- gitHead: "e226f0e6b61aed8ffe37cc06d7c542e458783d11"
142
+ gitHead: "a4448d8b67c244029afdbd1685fbe1136f1b3d92"
143
143
  };
144
144
 
145
145
  // src/utils/updateChecker.ts
@@ -188,6 +188,11 @@ var REASONING_SUPPORTED_MODELS = /* @__PURE__ */ new Set([
188
188
  ChatModels.GPT5_1,
189
189
  ChatModels.GPT5_2
190
190
  ]);
191
+ var FIXED_TEMPERATURE_MODELS = /* @__PURE__ */ new Set([
192
+ ...REASONING_SUPPORTED_MODELS,
193
+ ChatModels.GPT5_1_CHAT_LATEST,
194
+ ChatModels.GPT5_2_CHAT_LATEST
195
+ ]);
191
196
  var SpeechToTextModels;
192
197
  (function(SpeechToTextModels2) {
193
198
  SpeechToTextModels2["WHISPER_1"] = "whisper-1";
@@ -2032,12 +2037,18 @@ var TavernQuestUpdateAction = z11.object({
2032
2037
  _id: z11.string(),
2033
2038
  title: z11.string(),
2034
2039
  description: z11.string(),
2040
+ postedByAgentId: z11.string(),
2035
2041
  postedByAgentName: z11.string(),
2042
+ claimedByAgentId: z11.string().optional(),
2036
2043
  claimedByAgentName: z11.string().optional(),
2037
2044
  status: z11.enum(["open", "claimed", "completed", "expired"]),
2038
2045
  difficulty: z11.enum(["easy", "medium", "hard"]).optional(),
2046
+ reward: z11.string().optional(),
2039
2047
  completionNote: z11.string().optional(),
2040
- createdAt: z11.string()
2048
+ createdAt: z11.string(),
2049
+ claimedAt: z11.string().optional(),
2050
+ completedAt: z11.string().optional(),
2051
+ expiresAt: z11.string().optional()
2041
2052
  }))
2042
2053
  });
2043
2054
  var SessionCreatedAction = shareableDocumentSchema.extend({
@@ -11882,6 +11893,7 @@ export {
11882
11893
  CHAT_MODELS,
11883
11894
  supportedChatModels,
11884
11895
  REASONING_SUPPORTED_MODELS,
11896
+ FIXED_TEMPERATURE_MODELS,
11885
11897
  SpeechToTextModels,
11886
11898
  SPEECH_TO_TEXT_MODELS,
11887
11899
  supportedSpeechToTextModels,
@@ -4,7 +4,7 @@ import {
4
4
  getOpenWeatherKey,
5
5
  getSerperKey,
6
6
  getWolframAlphaKey
7
- } from "./chunk-RFVINAUP.js";
7
+ } from "./chunk-XOV422DJ.js";
8
8
  import {
9
9
  assertPathAllowed,
10
10
  isPathAllowed
@@ -20,14 +20,14 @@ import {
20
20
  OpenAIBackend,
21
21
  OpenAIImageService,
22
22
  XAIImageService
23
- } from "./chunk-76NSNH4E.js";
23
+ } from "./chunk-ZXHNBXZL.js";
24
24
  import {
25
25
  Logger
26
26
  } from "./chunk-PFBYGCOW.js";
27
27
  import {
28
28
  ConfigStore,
29
29
  logger
30
- } from "./chunk-22G2T3X7.js";
30
+ } from "./chunk-YRCH2BAR.js";
31
31
  import {
32
32
  ALERT_THRESHOLDS,
33
33
  AiEvents,
@@ -88,7 +88,7 @@ import {
88
88
  getViewById,
89
89
  resolveNavigationIntents,
90
90
  sanitizeTelemetryError
91
- } from "./chunk-4QTLLPJJ.js";
91
+ } from "./chunk-GPAJBA5P.js";
92
92
 
93
93
  // src/utils/fileSearch.ts
94
94
  import * as fs from "fs";
@@ -2007,7 +2007,7 @@ ${options.context}` : this.getSystemPrompt()
2007
2007
  }
2008
2008
  if (iterations >= maxIterations) {
2009
2009
  reachedMaxIterations = true;
2010
- finalAnswer = currentText.trim() || "I reached the maximum number of iterations without arriving at a final answer.";
2010
+ finalAnswer = currentText.trim() || `I reached the maximum number of iterations (${iterations}/${maxIterations}) without arriving at a final answer.`;
2011
2011
  const finalStep = {
2012
2012
  type: "final_answer",
2013
2013
  content: finalAnswer,
@@ -8012,8 +8012,8 @@ var getHeliocentricCoords = (planet, T) => {
8012
8012
  const sinNode = Math.sin(longNode);
8013
8013
  const x = r * (cosNode * cosOmega - sinNode * sinOmega * cosI);
8014
8014
  const y = r * (sinNode * cosOmega + cosNode * sinOmega * cosI);
8015
- const z149 = r * sinOmega * sinI;
8016
- return { x, y, z: z149, r };
8015
+ const z150 = r * sinOmega * sinI;
8016
+ return { x, y, z: z150, r };
8017
8017
  };
8018
8018
  var getGeocentricEcliptic = (planet, earth) => {
8019
8019
  const dx = planet.x - earth.x;
@@ -13091,6 +13091,20 @@ var ToolErrorType;
13091
13091
  ToolErrorType2["UNKNOWN"] = "UNKNOWN";
13092
13092
  })(ToolErrorType || (ToolErrorType = {}));
13093
13093
 
13094
+ // ../../b4m-core/packages/services/dist/src/sreAgentService/index.js
13095
+ import { z as z148 } from "zod";
13096
+ var SreDiagnosisSchema = z148.object({
13097
+ rootCause: z148.string(),
13098
+ proposedFix: z148.string(),
13099
+ confidence: z148.number().min(0).max(100),
13100
+ riskAssessment: z148.string(),
13101
+ affectedFiles: z148.array(z148.object({
13102
+ filePath: z148.string(),
13103
+ before: z148.string(),
13104
+ after: z148.string()
13105
+ }))
13106
+ });
13107
+
13094
13108
  // ../../b4m-core/packages/services/dist/src/llm/tools/implementation/fileRead/index.js
13095
13109
  import { promises as fs8 } from "fs";
13096
13110
  import { existsSync as existsSync4, statSync as statSync3 } from "fs";
@@ -14682,7 +14696,7 @@ function buildHookContext(params) {
14682
14696
  }
14683
14697
 
14684
14698
  // src/agents/types.ts
14685
- import { z as z148 } from "zod";
14699
+ import { z as z149 } from "zod";
14686
14700
  var HookBlockedError = class extends Error {
14687
14701
  constructor(toolName, reason) {
14688
14702
  super(`Hook blocked execution of ${toolName}: ${reason || "No reason provided"}`);
@@ -14696,40 +14710,40 @@ var ALWAYS_DENIED_FOR_AGENTS = [
14696
14710
  "create_dynamic_agent"
14697
14711
  // No recursive agent creation
14698
14712
  ];
14699
- var CommandHookSchema = z148.object({
14700
- type: z148.literal("command"),
14701
- command: z148.string().min(1, "Command is required for command hooks"),
14702
- timeout: z148.number().optional()
14713
+ var CommandHookSchema = z149.object({
14714
+ type: z149.literal("command"),
14715
+ command: z149.string().min(1, "Command is required for command hooks"),
14716
+ timeout: z149.number().optional()
14703
14717
  });
14704
- var PromptHookSchema = z148.object({
14705
- type: z148.literal("prompt"),
14706
- prompt: z148.string().min(1, "Prompt is required for prompt hooks"),
14707
- timeout: z148.number().optional()
14718
+ var PromptHookSchema = z149.object({
14719
+ type: z149.literal("prompt"),
14720
+ prompt: z149.string().min(1, "Prompt is required for prompt hooks"),
14721
+ timeout: z149.number().optional()
14708
14722
  });
14709
- var HookDefinitionSchema = z148.discriminatedUnion("type", [CommandHookSchema, PromptHookSchema]);
14710
- var HookMatcherSchema = z148.object({
14711
- matcher: z148.string().optional(),
14712
- hooks: z148.array(HookDefinitionSchema)
14723
+ var HookDefinitionSchema = z149.discriminatedUnion("type", [CommandHookSchema, PromptHookSchema]);
14724
+ var HookMatcherSchema = z149.object({
14725
+ matcher: z149.string().optional(),
14726
+ hooks: z149.array(HookDefinitionSchema)
14713
14727
  });
14714
- var AgentHooksSchema = z148.object({
14715
- PreToolUse: z148.array(HookMatcherSchema).optional(),
14716
- PostToolUse: z148.array(HookMatcherSchema).optional(),
14717
- PostToolUseFailure: z148.array(HookMatcherSchema).optional(),
14718
- Stop: z148.array(HookMatcherSchema).optional()
14728
+ var AgentHooksSchema = z149.object({
14729
+ PreToolUse: z149.array(HookMatcherSchema).optional(),
14730
+ PostToolUse: z149.array(HookMatcherSchema).optional(),
14731
+ PostToolUseFailure: z149.array(HookMatcherSchema).optional(),
14732
+ Stop: z149.array(HookMatcherSchema).optional()
14719
14733
  }).optional();
14720
- var AgentFrontmatterSchema = z148.object({
14721
- description: z148.string().min(1, "Agent description is required"),
14722
- model: z148.string().optional(),
14723
- "allowed-tools": z148.array(z148.string()).optional(),
14724
- "denied-tools": z148.array(z148.string()).optional(),
14725
- skills: z148.array(z148.string()).optional(),
14726
- "max-iterations": z148.object({
14727
- quick: z148.int().positive().optional(),
14728
- medium: z148.int().positive().optional(),
14729
- very_thorough: z148.int().positive().optional()
14734
+ var AgentFrontmatterSchema = z149.object({
14735
+ description: z149.string().min(1, "Agent description is required"),
14736
+ model: z149.string().optional(),
14737
+ "allowed-tools": z149.array(z149.string()).optional(),
14738
+ "denied-tools": z149.array(z149.string()).optional(),
14739
+ skills: z149.array(z149.string()).optional(),
14740
+ "max-iterations": z149.object({
14741
+ quick: z149.int().positive().optional(),
14742
+ medium: z149.int().positive().optional(),
14743
+ very_thorough: z149.int().positive().optional()
14730
14744
  }).optional(),
14731
- "default-thoroughness": z148.enum(["quick", "medium", "very_thorough"]).optional(),
14732
- variables: z148.record(z148.string(), z148.string()).optional(),
14745
+ "default-thoroughness": z149.enum(["quick", "medium", "very_thorough"]).optional(),
14746
+ variables: z149.record(z149.string(), z149.string()).optional(),
14733
14747
  hooks: AgentHooksSchema
14734
14748
  });
14735
14749
  var DEFAULT_MAX_ITERATIONS = {
@@ -7,11 +7,11 @@ import {
7
7
  getSettingsMap,
8
8
  getSettingsValue,
9
9
  secureParameters
10
- } from "./chunk-76NSNH4E.js";
10
+ } from "./chunk-ZXHNBXZL.js";
11
11
  import {
12
12
  KnowledgeType,
13
13
  SupportedFabFileMimeTypes
14
- } from "./chunk-4QTLLPJJ.js";
14
+ } from "./chunk-GPAJBA5P.js";
15
15
 
16
16
  // ../../b4m-core/packages/services/dist/src/fabFileService/create.js
17
17
  import { z } from "zod";
@@ -6,12 +6,12 @@ import {
6
6
  getSettingsByNames,
7
7
  obfuscateApiKey,
8
8
  secureParameters
9
- } from "./chunk-76NSNH4E.js";
9
+ } from "./chunk-ZXHNBXZL.js";
10
10
  import {
11
11
  ApiKeyType,
12
12
  MementoTier,
13
13
  isSupportedEmbeddingModel
14
- } from "./chunk-4QTLLPJJ.js";
14
+ } from "./chunk-GPAJBA5P.js";
15
15
 
16
16
  // ../../b4m-core/packages/services/dist/src/apiKeyService/get.js
17
17
  import { z } from "zod";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ChatModels
4
- } from "./chunk-4QTLLPJJ.js";
4
+ } from "./chunk-GPAJBA5P.js";
5
5
  import {
6
6
  DEFAULT_SANDBOX_CONFIG
7
7
  } from "./chunk-4BIBE3J7.js";
@@ -6,6 +6,7 @@ import {
6
6
  BedrockEmbeddingModel,
7
7
  ChatModels,
8
8
  ClaudeArtifactMimeTypes,
9
+ FIXED_TEMPERATURE_MODELS,
9
10
  ImageModels,
10
11
  ModelBackend,
11
12
  OpenAIEmbeddingModel,
@@ -21,7 +22,7 @@ import {
21
22
  isGPTImageModel,
22
23
  isModelDeprecated,
23
24
  settingsMap
24
- } from "./chunk-4QTLLPJJ.js";
25
+ } from "./chunk-GPAJBA5P.js";
25
26
 
26
27
  // ../../b4m-core/packages/utils/dist/src/storage/S3Storage.js
27
28
  import { S3Client, PutObjectCommand, DeleteObjectCommand, GetObjectCommand, HeadObjectCommand } from "@aws-sdk/client-s3";
@@ -7664,9 +7665,10 @@ var OpenAIBackend = class {
7664
7665
  temperature: options.temperature ?? 0.9
7665
7666
  };
7666
7667
  const supportsReasoning = REASONING_SUPPORTED_MODELS.has(model);
7668
+ const requiresFixedTemp = FIXED_TEMPERATURE_MODELS.has(model);
7667
7669
  if (usesMaxCompletionTokens) {
7668
7670
  Object.assign(parameters, {
7669
- ...supportsReasoning && { temperature: 1 },
7671
+ ...requiresFixedTemp && { temperature: 1 },
7670
7672
  stream: true,
7671
7673
  stream_options: { include_usage: true },
7672
7674
  ...options.maxTokens && { max_completion_tokens: options.maxTokens }
@@ -3,7 +3,7 @@ import {
3
3
  fetchLatestVersion,
4
4
  forceCheckForUpdate,
5
5
  package_default
6
- } from "../chunk-R72PQVQC.js";
6
+ } from "../chunk-7H6I3UDQ.js";
7
7
 
8
8
  // src/commands/doctorCommand.ts
9
9
  import { execSync } from "child_process";
@@ -36,21 +36,21 @@ import {
36
36
  isReadOnlyTool,
37
37
  loadContextFiles,
38
38
  setWebSocketToolExecutor
39
- } from "../chunk-S2CFO6EG.js";
39
+ } from "../chunk-HMUDPSDV.js";
40
40
  import "../chunk-BDQBOLYG.js";
41
- import "../chunk-RFVINAUP.js";
41
+ import "../chunk-XOV422DJ.js";
42
42
  import "../chunk-GQGOWACU.js";
43
43
  import "../chunk-LTLJRF6I.js";
44
- import "../chunk-F5WF4RWS.js";
45
- import "../chunk-JTBRGW2F.js";
46
- import "../chunk-76NSNH4E.js";
44
+ import "../chunk-746QXO4D.js";
45
+ import "../chunk-RSVU2SJD.js";
46
+ import "../chunk-ZXHNBXZL.js";
47
47
  import "../chunk-PFBYGCOW.js";
48
48
  import "../chunk-BPFEGDC7.js";
49
49
  import {
50
50
  ConfigStore,
51
51
  logger
52
- } from "../chunk-22G2T3X7.js";
53
- import "../chunk-4QTLLPJJ.js";
52
+ } from "../chunk-YRCH2BAR.js";
53
+ import "../chunk-GPAJBA5P.js";
54
54
  import {
55
55
  DEFAULT_SANDBOX_CONFIG
56
56
  } from "../chunk-4BIBE3J7.js";
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConfigStore
4
- } from "../chunk-22G2T3X7.js";
5
- import "../chunk-4QTLLPJJ.js";
4
+ } from "../chunk-YRCH2BAR.js";
5
+ import "../chunk-GPAJBA5P.js";
6
6
  import "../chunk-4BIBE3J7.js";
7
7
 
8
8
  // src/commands/mcpCommand.ts
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  forceCheckForUpdate,
4
4
  package_default
5
- } from "../chunk-R72PQVQC.js";
5
+ } from "../chunk-7H6I3UDQ.js";
6
6
 
7
7
  // src/commands/updateCommand.ts
8
8
  import { execSync } from "child_process";
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  createFabFile,
4
4
  createFabFileSchema
5
- } from "./chunk-JTBRGW2F.js";
6
- import "./chunk-76NSNH4E.js";
5
+ } from "./chunk-RSVU2SJD.js";
6
+ import "./chunk-ZXHNBXZL.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-4QTLLPJJ.js";
8
+ import "./chunk-GPAJBA5P.js";
9
9
  export {
10
10
  createFabFile,
11
11
  createFabFileSchema
package/dist/index.js CHANGED
@@ -48,26 +48,26 @@ import {
48
48
  setWebSocketToolExecutor,
49
49
  substituteArguments,
50
50
  warmFileCache
51
- } from "./chunk-S2CFO6EG.js";
51
+ } from "./chunk-HMUDPSDV.js";
52
52
  import "./chunk-BDQBOLYG.js";
53
- import "./chunk-RFVINAUP.js";
53
+ import "./chunk-XOV422DJ.js";
54
54
  import "./chunk-GQGOWACU.js";
55
55
  import "./chunk-LTLJRF6I.js";
56
- import "./chunk-F5WF4RWS.js";
57
- import "./chunk-JTBRGW2F.js";
56
+ import "./chunk-746QXO4D.js";
57
+ import "./chunk-RSVU2SJD.js";
58
58
  import {
59
59
  OllamaBackend
60
- } from "./chunk-76NSNH4E.js";
60
+ } from "./chunk-ZXHNBXZL.js";
61
61
  import "./chunk-PFBYGCOW.js";
62
62
  import "./chunk-BPFEGDC7.js";
63
63
  import {
64
64
  ConfigStore,
65
65
  logger
66
- } from "./chunk-22G2T3X7.js";
66
+ } from "./chunk-YRCH2BAR.js";
67
67
  import {
68
68
  checkForUpdate,
69
69
  package_default
70
- } from "./chunk-R72PQVQC.js";
70
+ } from "./chunk-7H6I3UDQ.js";
71
71
  import {
72
72
  selectActiveBackgroundAgents,
73
73
  useCliStore
@@ -77,7 +77,7 @@ import {
77
77
  ChatModels,
78
78
  validateJupyterKernelName,
79
79
  validateNotebookPath
80
- } from "./chunk-4QTLLPJJ.js";
80
+ } from "./chunk-GPAJBA5P.js";
81
81
  import "./chunk-4BIBE3J7.js";
82
82
 
83
83
  // src/index.tsx
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-4QTLLPJJ.js";
4
+ } from "./chunk-GPAJBA5P.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/llmMarkdownGenerator.js
7
7
  var DEFAULT_OPTIONS = {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-4QTLLPJJ.js";
4
+ } from "./chunk-GPAJBA5P.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/markdownGenerator.js
7
7
  var DEFAULT_OPTIONS = {
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  findMostSimilarMemento,
4
4
  getRelevantMementos
5
- } from "./chunk-RFVINAUP.js";
6
- import "./chunk-76NSNH4E.js";
5
+ } from "./chunk-XOV422DJ.js";
6
+ import "./chunk-ZXHNBXZL.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-4QTLLPJJ.js";
8
+ import "./chunk-GPAJBA5P.js";
9
9
  export {
10
10
  findMostSimilarMemento,
11
11
  getRelevantMementos
@@ -108,6 +108,7 @@ import {
108
108
  ExplainLatticeResponseSchema,
109
109
  ExportFormatSchema,
110
110
  ExportLatticeRequestSchema,
111
+ FIXED_TEMPERATURE_MODELS,
111
112
  FabFileSourceType,
112
113
  FallbackInfoSchema,
113
114
  FavoriteDocumentType,
@@ -546,7 +547,7 @@ import {
546
547
  validateReactArtifactV2,
547
548
  validateSvgArtifactV2,
548
549
  wikiMarkupToAdf
549
- } from "./chunk-4QTLLPJJ.js";
550
+ } from "./chunk-GPAJBA5P.js";
550
551
  export {
551
552
  ALERT_THRESHOLDS,
552
553
  ALLOWED_JUPYTER_KERNELS,
@@ -657,6 +658,7 @@ export {
657
658
  ExplainLatticeResponseSchema,
658
659
  ExportFormatSchema,
659
660
  ExportLatticeRequestSchema,
661
+ FIXED_TEMPERATURE_MODELS,
660
662
  FabFileSourceType,
661
663
  FallbackInfoSchema,
662
664
  FavoriteDocumentType,
@@ -146,7 +146,7 @@ import {
146
146
  validateUrlForFetch,
147
147
  warmUpSettingsCache,
148
148
  withRetry
149
- } from "./chunk-76NSNH4E.js";
149
+ } from "./chunk-ZXHNBXZL.js";
150
150
  import {
151
151
  Logger,
152
152
  NotificationDeduplicator,
@@ -159,7 +159,7 @@ import {
159
159
  buildRateLimitLogEntry,
160
160
  isNearLimit,
161
161
  parseRateLimitHeaders
162
- } from "./chunk-4QTLLPJJ.js";
162
+ } from "./chunk-GPAJBA5P.js";
163
163
  export {
164
164
  AIVideoService,
165
165
  AWSBackend,
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  SubtractCreditsSchema,
4
4
  subtractCredits
5
- } from "./chunk-F5WF4RWS.js";
6
- import "./chunk-76NSNH4E.js";
5
+ } from "./chunk-746QXO4D.js";
6
+ import "./chunk-ZXHNBXZL.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-4QTLLPJJ.js";
8
+ import "./chunk-GPAJBA5P.js";
9
9
  export {
10
10
  SubtractCreditsSchema,
11
11
  subtractCredits
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bike4mind/cli",
3
- "version": "0.2.62-fix-cli-verbose-logging.21749+e226f0e6b",
3
+ "version": "0.2.62-fixed-temp-models.21767+a4448d8b6",
4
4
  "type": "module",
5
5
  "description": "Interactive CLI tool for Bike4Mind with ReAct agents",
6
6
  "license": "UNLICENSED",
@@ -115,11 +115,11 @@
115
115
  "zustand": "^4.5.4"
116
116
  },
117
117
  "devDependencies": {
118
- "@bike4mind/agents": "0.3.1-fix-cli-verbose-logging.21749+e226f0e6b",
119
- "@bike4mind/common": "2.74.1-fix-cli-verbose-logging.21749+e226f0e6b",
120
- "@bike4mind/mcp": "1.33.20-fix-cli-verbose-logging.21749+e226f0e6b",
121
- "@bike4mind/services": "2.68.2-fix-cli-verbose-logging.21749+e226f0e6b",
122
- "@bike4mind/utils": "2.16.1-fix-cli-verbose-logging.21749+e226f0e6b",
118
+ "@bike4mind/agents": "0.3.1-fixed-temp-models.21767+a4448d8b6",
119
+ "@bike4mind/common": "2.74.1-fixed-temp-models.21767+a4448d8b6",
120
+ "@bike4mind/mcp": "1.33.20-fixed-temp-models.21767+a4448d8b6",
121
+ "@bike4mind/services": "2.68.2-fixed-temp-models.21767+a4448d8b6",
122
+ "@bike4mind/utils": "2.16.1-fixed-temp-models.21767+a4448d8b6",
123
123
  "@types/better-sqlite3": "^7.6.13",
124
124
  "@types/jsonwebtoken": "^9.0.4",
125
125
  "@types/node": "^22.9.0",
@@ -136,5 +136,5 @@
136
136
  "optionalDependencies": {
137
137
  "@vscode/ripgrep": "^1.17.1"
138
138
  },
139
- "gitHead": "e226f0e6b61aed8ffe37cc06d7c542e458783d11"
139
+ "gitHead": "a4448d8b67c244029afdbd1685fbe1136f1b3d92"
140
140
  }