SmythOS SDK
    Preparing search index...

    Type Alias TSkillSettings

    type TSkillSettings = {
        ai_exposed?: boolean;
        description?: string;
        endpoint?: string;
        inputs?: Record<string, { source: any } & InputSettings>;
        method?: "GET" | "POST" | "PUT" | "DELETE";
        name: string;
        process?: (input?: any) => Promise<any>;
    }
    Index

    Properties

    ai_exposed?: boolean
    description?: string
    endpoint?: string
    inputs?: Record<string, { source: any } & InputSettings>
    method?: "GET" | "POST" | "PUT" | "DELETE"
    name: string
    process?: (input?: any) => Promise<any>