@acarmisc/backstage-plugin-litellm 0.13.0 → 0.14.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/index.cjs.js +78 -17
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.esm.js +78 -17
- package/dist/index.esm.js.map +2 -2
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ export interface ModelInfo {
|
|
|
50
50
|
output_cost_per_token?: number;
|
|
51
51
|
max_input_tokens?: number;
|
|
52
52
|
max_output_tokens?: number;
|
|
53
|
+
/** Access group names this model belongs to (litellm.model_info.access_groups). A team's `models` list can reference a group name instead of a literal model_name. */
|
|
54
|
+
access_groups?: string[];
|
|
53
55
|
}
|
|
54
56
|
export interface UsageModelBreakdown {
|
|
55
57
|
total_spend: number;
|