Skip to content

Commit

Permalink
feat: update prompts and invalidate cache
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeichmann committed Jan 20, 2025
1 parent e03ee35 commit 3faa622
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions langfuse-core/src/openapi/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ export interface components {
*/
startDate?: string | null;
/** @description Unit used by this model. */
unit?: components["schemas"]["ModelUsageUnit"];
unit: components["schemas"]["ModelUsageUnit"];
/**
* Format: double
* @description Price (USD) per input unit
Expand Down Expand Up @@ -1006,7 +1006,7 @@ export interface components {
*/
ObservationLevel: "DEBUG" | "DEFAULT" | "WARNING" | "ERROR";
/** MapValue */
MapValue: (string | null) | (number | null) | (boolean | null) | (string[] | null);
MapValue: (string | null) | (number | null) | (boolean | null) | (string[] | null) | undefined;
/**
* CommentObjectType
* @enum {string}
Expand Down Expand Up @@ -1495,7 +1495,7 @@ export interface components {
*/
startDate?: string | null;
/** @description Unit used by this model. */
unit?: components["schemas"]["ModelUsageUnit"];
unit: components["schemas"]["ModelUsageUnit"];
/**
* Format: double
* @description Price (USD) per input unit
Expand Down

0 comments on commit 3faa622

Please sign in to comment.