Interface HumanticAiNodeParameters

Source
interface HumanticAiNodeParameters {
    binaryPropertyName?: string;
    operation?: "create" | "get" | "update";
    options?: { persona?: ("sales" | "hiring")[] };
    resource?: "profile";
    sendResume?: boolean;
    text?: string;
    userId?: string;
}

Properties§

Source§

readonly binaryPropertyName?: string

Default: "data"

Source§

readonly operation?: "create" | "get" | "update"

Default: "create"

Source§

readonly options?: { persona?: ("sales" | "hiring")[] }

Default: {}

Source§

readonly resource?: "profile"

Default: "profile"

Source§

readonly sendResume?: boolean

Whether to send a resume for a resume based analysis

Source§

readonly text?: string

Additional text written by the user

Source§

readonly userId?: string

The LinkedIn profile URL or email ID for creating a Humantic profile. If you are sending the resume, this should be a unique string.