@llmops/app 0.4.8-beta.7 → 0.5.0-beta.1

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.d.cts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as hono_types1 from "hono/types";
2
2
  import * as hono_hono_base0 from "hono/hono-base";
3
- import { LLMOpsConfig, ValidatedLLMOpsConfig, createDataLayer } from "@llmops/core";
3
+ import { InlineProvidersConfig, LLMOpsConfig, ValidatedLLMOpsConfig, createDataLayer } from "@llmops/core";
4
4
  import { DatabaseType } from "@llmops/core/db";
5
5
  import { Auth, BetterAuthOptions } from "better-auth";
6
6
  import { Hono } from "hono";
@@ -9,6 +9,8 @@ import { Hono } from "hono";
9
9
  declare module 'hono' {
10
10
  interface ContextVariableMap {
11
11
  llmopsConfig: ValidatedLLMOpsConfig;
12
+ /** Inline provider configurations from code config */
13
+ inlineProviders?: InlineProvidersConfig;
12
14
  db: Awaited<ReturnType<typeof createDataLayer>>;
13
15
  /** Raw Kysely instance with correct schema configuration */
14
16
  kyselyDb: any;
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Hono } from "hono";
2
- import { LLMOpsConfig, ValidatedLLMOpsConfig, createDataLayer } from "@llmops/core";
2
+ import { InlineProvidersConfig, LLMOpsConfig, ValidatedLLMOpsConfig, createDataLayer } from "@llmops/core";
3
3
  import { DatabaseType } from "@llmops/core/db";
4
4
  import { Auth, BetterAuthOptions } from "better-auth";
5
5
  import * as hono_types1 from "hono/types";
@@ -9,6 +9,8 @@ import * as hono_hono_base0 from "hono/hono-base";
9
9
  declare module 'hono' {
10
10
  interface ContextVariableMap {
11
11
  llmopsConfig: ValidatedLLMOpsConfig;
12
+ /** Inline provider configurations from code config */
13
+ inlineProviders?: InlineProvidersConfig;
12
14
  db: Awaited<ReturnType<typeof createDataLayer>>;
13
15
  /** Raw Kysely instance with correct schema configuration */
14
16
  kyselyDb: any;