@llmops/app 1.0.0-beta.1 → 1.0.0-beta.10
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/index.cjs +362 -2413
- package/dist/index.d.cts +2 -9
- package/dist/index.d.mts +2 -9
- package/dist/index.mjs +362 -2411
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,21 +1,14 @@
|
|
|
1
1
|
import * as hono_hono_base0 from "hono/hono-base";
|
|
2
2
|
import * as hono_types0 from "hono/types";
|
|
3
|
-
import { InlineProvidersConfig, LLMOpsConfig,
|
|
3
|
+
import { InlineProvidersConfig, LLMOpsConfig, ValidatedLLMOpsConfig } from "@llmops/core";
|
|
4
|
+
import { TelemetryStore } from "@llmops/sdk";
|
|
4
5
|
import { Hono } from "hono";
|
|
5
6
|
|
|
6
7
|
//#region src/server/types.d.ts
|
|
7
8
|
declare module 'hono' {
|
|
8
9
|
interface ContextVariableMap {
|
|
9
10
|
llmopsConfig: ValidatedLLMOpsConfig;
|
|
10
|
-
/** Inline provider configurations from code config */
|
|
11
11
|
inlineProviders?: InlineProvidersConfig;
|
|
12
|
-
/** Data layer for non-telemetry queries (datasets, playgrounds, etc.) - null in inline-only mode */
|
|
13
|
-
db: Awaited<ReturnType<typeof createDataLayer>> | null;
|
|
14
|
-
/** Raw Kysely instance - null in inline-only mode */
|
|
15
|
-
kyselyDb: any | null;
|
|
16
|
-
/** Database type - null in inline-only mode */
|
|
17
|
-
dbType: string | null;
|
|
18
|
-
/** Telemetry store for LLM request logging and traces - null in inline-only mode */
|
|
19
12
|
telemetryStore: TelemetryStore | null;
|
|
20
13
|
}
|
|
21
14
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
|
-
import { InlineProvidersConfig, LLMOpsConfig,
|
|
2
|
+
import { InlineProvidersConfig, LLMOpsConfig, ValidatedLLMOpsConfig } from "@llmops/core";
|
|
3
|
+
import { TelemetryStore } from "@llmops/sdk";
|
|
3
4
|
import * as hono_hono_base0 from "hono/hono-base";
|
|
4
5
|
import * as hono_types0 from "hono/types";
|
|
5
6
|
|
|
@@ -7,15 +8,7 @@ import * as hono_types0 from "hono/types";
|
|
|
7
8
|
declare module 'hono' {
|
|
8
9
|
interface ContextVariableMap {
|
|
9
10
|
llmopsConfig: ValidatedLLMOpsConfig;
|
|
10
|
-
/** Inline provider configurations from code config */
|
|
11
11
|
inlineProviders?: InlineProvidersConfig;
|
|
12
|
-
/** Data layer for non-telemetry queries (datasets, playgrounds, etc.) - null in inline-only mode */
|
|
13
|
-
db: Awaited<ReturnType<typeof createDataLayer>> | null;
|
|
14
|
-
/** Raw Kysely instance - null in inline-only mode */
|
|
15
|
-
kyselyDb: any | null;
|
|
16
|
-
/** Database type - null in inline-only mode */
|
|
17
|
-
dbType: string | null;
|
|
18
|
-
/** Telemetry store for LLM request logging and traces - null in inline-only mode */
|
|
19
12
|
telemetryStore: TelemetryStore | null;
|
|
20
13
|
}
|
|
21
14
|
}
|