refactor: trim foundry helper exports

This commit is contained in:
Peter Steinberger
2026-05-01 20:04:32 +01:00
parent 38839adaca
commit cc470dbfc1

View File

@@ -73,13 +73,13 @@ export type CachedTokenEntry = {
export type FoundryProviderApi = typeof DEFAULT_API | typeof DEFAULT_GPT5_API;
export type FoundryDeploymentConfigInput = {
type FoundryDeploymentConfigInput = {
name: string;
modelName?: string;
api?: FoundryProviderApi;
};
export type FoundryModelCapabilities = {
type FoundryModelCapabilities = {
modelName: string;
api: FoundryProviderApi;
input: Array<"text" | "image">;