Interface AdaptOptions

interface AdaptOptions {
    auth?: null | [string, string];
    events?: EventType[];
    hf_token?: `hf_${string}`;
    ignores?: string[];
    status_callback?: null | SpaceStatusCallback;
    trimmer?: ((name: string) => string);
    with_null_state?: boolean;
}

Hierarchy

  • GradioOptions
    • AdaptOptions

Properties

auth?: null | [string, string]
events?: EventType[]
hf_token?: `hf_${string}`
ignores?: string[]
status_callback?: null | SpaceStatusCallback
trimmer?: ((name: string) => string)
with_null_state?: boolean
""