@bike4mind/cli 0.2.29 → 0.2.30-feat-quantum-optimize-architecture.19202
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/dist/{artifactExtractor-4SBIE5OK.js → artifactExtractor-32UT6LCJ.js} +1 -1
- package/dist/{chunk-TNFZP7FG.js → chunk-DUEP3HCS.js} +703 -3
- package/dist/{chunk-22VR7SKO.js → chunk-KKZY4BRH.js} +2 -2
- package/dist/{chunk-5J4RL57F.js → chunk-TSB6M7IB.js} +11 -3
- package/dist/{chunk-YQWFK5O2.js → chunk-VRGHGJAL.js} +2 -2
- package/dist/{chunk-UYN4HMRF.js → chunk-Z3I7SVZ6.js} +2 -2
- package/dist/{create-DCHG36CP.js → create-GWZUB27T.js} +3 -3
- package/dist/index.js +1380 -140
- package/dist/{llmMarkdownGenerator-6MQKVOWW.js → llmMarkdownGenerator-B23C23LK.js} +1 -1
- package/dist/{markdownGenerator-4GDO3PTY.js → markdownGenerator-XAWABETH.js} +1 -1
- package/dist/{mementoService-WDQFLLRV.js → mementoService-3VASE5H2.js} +3 -3
- package/dist/{src-ZAT7QMNA.js → src-BFBWKNAI.js} +15 -1
- package/dist/{src-DVEE3PS5.js → src-MCOAMTTD.js} +2 -2
- package/dist/{subtractCredits-LE54FRKC.js → subtractCredits-RBXIX27T.js} +3 -3
- package/package.json +6 -6
|
@@ -6,12 +6,12 @@ import {
|
|
|
6
6
|
getSettingsByNames,
|
|
7
7
|
obfuscateApiKey,
|
|
8
8
|
secureParameters
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-TSB6M7IB.js";
|
|
10
10
|
import {
|
|
11
11
|
ApiKeyType,
|
|
12
12
|
MementoTier,
|
|
13
13
|
isSupportedEmbeddingModel
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-DUEP3HCS.js";
|
|
15
15
|
|
|
16
16
|
// ../../b4m-core/packages/services/dist/src/apiKeyService/get.js
|
|
17
17
|
import { z } from "zod";
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
dayjsConfig_default,
|
|
16
16
|
extractSnippetMeta,
|
|
17
17
|
settingsMap
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-DUEP3HCS.js";
|
|
19
19
|
import {
|
|
20
20
|
Logger
|
|
21
21
|
} from "./chunk-OCYRD7D6.js";
|
|
@@ -6567,10 +6567,18 @@ var OpenAIBackend = class {
|
|
|
6567
6567
|
stream: true,
|
|
6568
6568
|
...options.maxTokens && { max_completion_tokens: options.maxTokens }
|
|
6569
6569
|
});
|
|
6570
|
-
|
|
6570
|
+
let reasoningEffort;
|
|
6571
|
+
if (options.reasoningEffort) {
|
|
6572
|
+
reasoningEffort = options.reasoningEffort;
|
|
6573
|
+
this.logger.debug(`Using explicit reasoning effort: ${reasoningEffort}`);
|
|
6574
|
+
} else if (options.complexity && effortMap[options.complexity]) {
|
|
6575
|
+
reasoningEffort = isGPT5_1Model || isGPT5_2Model ? effortMap_GPT5_1_2[options.complexity] : effortMap[options.complexity];
|
|
6576
|
+
this.logger.debug(`Auto-classified reasoning effort from complexity '${options.complexity}': ${reasoningEffort}`);
|
|
6577
|
+
}
|
|
6578
|
+
if (reasoningEffort) {
|
|
6571
6579
|
Object.assign(parameters, {
|
|
6572
6580
|
reasoning: {
|
|
6573
|
-
effort:
|
|
6581
|
+
effort: reasoningEffort
|
|
6574
6582
|
}
|
|
6575
6583
|
});
|
|
6576
6584
|
}
|
|
@@ -7,11 +7,11 @@ import {
|
|
|
7
7
|
getSettingsMap,
|
|
8
8
|
getSettingsValue,
|
|
9
9
|
secureParameters
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-TSB6M7IB.js";
|
|
11
11
|
import {
|
|
12
12
|
KnowledgeType,
|
|
13
13
|
SupportedFabFileMimeTypes
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-DUEP3HCS.js";
|
|
15
15
|
|
|
16
16
|
// ../../b4m-core/packages/services/dist/src/fabFileService/create.js
|
|
17
17
|
import { z } from "zod";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BadRequestError,
|
|
4
4
|
secureParameters
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-TSB6M7IB.js";
|
|
6
6
|
import {
|
|
7
7
|
CompletionApiUsageTransaction,
|
|
8
8
|
GenericCreditDeductTransaction,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
TextGenerationUsageTransaction,
|
|
13
13
|
TransferCreditTransaction,
|
|
14
14
|
VideoGenerationUsageTransaction
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-DUEP3HCS.js";
|
|
16
16
|
|
|
17
17
|
// ../../b4m-core/packages/services/dist/src/creditService/subtractCredits.js
|
|
18
18
|
import { z } from "zod";
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
createFabFile,
|
|
4
4
|
createFabFileSchema
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-VRGHGJAL.js";
|
|
6
|
+
import "./chunk-TSB6M7IB.js";
|
|
7
|
+
import "./chunk-DUEP3HCS.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
createFabFile,
|