@infersec/conduit 1.66.0 → 1.68.0
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/ConduitConnection.d.ts +1 -2
- package/dist/benchmark/evaluation/bfclEvaluator.d.ts +1 -0
- package/dist/benchmark/evaluation/checkpoint.d.ts +7 -0
- package/dist/benchmark/evaluation/codeEvaluator.d.ts +1 -0
- package/dist/benchmark/evaluation/mbppEvaluator.d.ts +1 -0
- package/dist/cli.js +13826 -16196
- package/dist/configuration.d.ts +1 -3
- package/dist/mbppplus-DUrK5Qt0.js +2656 -0
- package/dist/modelManagement/ModelManager.d.ts +6 -6
- package/dist/modelManagement/quantization.d.ts +5 -0
- package/dist/requestHandlers/createConduitAnthropicAPIReferenceHandlers.d.ts +4 -2
- package/dist/requestHandlers/createConduitOpenAIAPIReferenceHandlers.d.ts +6 -2
- package/dist/sse/handler.d.ts +3 -2
- package/dist/utils/anthropic.d.ts +3 -2
- package/dist/utils/engineMetrics.d.ts +5 -6
- package/dist/utils/openai.d.ts +3 -2
- package/package.json +2 -1
package/dist/configuration.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ULID } from "@infersec/definitions";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
declare const StartModeSchema: z.ZodEnum<{
|
|
4
4
|
idle: "idle";
|
|
@@ -6,7 +6,6 @@ declare const StartModeSchema: z.ZodEnum<{
|
|
|
6
6
|
}>;
|
|
7
7
|
export type StartMode = z.infer<typeof StartModeSchema>;
|
|
8
8
|
export interface Configuration {
|
|
9
|
-
agentEngineType: LLMEngine;
|
|
10
9
|
apiKey: string;
|
|
11
10
|
apiURL: string;
|
|
12
11
|
enginePort: number;
|
|
@@ -16,7 +15,6 @@ export interface Configuration {
|
|
|
16
15
|
startMode: StartMode;
|
|
17
16
|
}
|
|
18
17
|
export interface ConfigurationOverrides {
|
|
19
|
-
agentEngineType?: string;
|
|
20
18
|
apiKey?: string;
|
|
21
19
|
apiURL?: string;
|
|
22
20
|
enginePort?: number;
|