/**
 * Lemonade Chat Model Node - Version 1
 * Language Model Lemonade Chat
 */


export interface LcLmChatLemonadeV1Params {
/**
 * The model which will generate the completion. Models are loaded and managed through the Lemonade server.
 */
    model: string | Expression<string>;
/**
 * Additional options to add
 * @default {}
 */
    options?: {
    /** Controls the randomness of the generated text. Lower values make the output more focused and deterministic, while higher values make it more diverse and random.
     * @default 0.7
     */
    temperature?: number | Expression<number>;
    /** Chooses from the smallest possible set of tokens whose cumulative probability exceeds the probability top_p. Helps generate more human-like text by reducing repetitions.
     * @default 1
     */
    topP?: number | Expression<number>;
    /** Adjusts the penalty for tokens that have already appeared in the generated text. Positive values discourage repetition, negative values encourage it.
     * @default 0
     */
    frequencyPenalty?: number | Expression<number>;
    /** Adjusts the penalty for tokens based on their presence in the generated text so far. Positive values penalize tokens that have already appeared, encouraging diversity.
     * @default 0
     */
    presencePenalty?: number | Expression<number>;
    /** The maximum number of tokens to generate. Set to -1 for no limit. Be cautious when setting this to a large value, as it can lead to very long outputs.
     * @default -1
     */
    maxTokens?: number | Expression<number>;
    /** Comma-separated list of sequences where the model will stop generating text
     */
    stop?: string | Expression<string> | PlaceholderValue;
  };
}

export interface LcLmChatLemonadeV1Credentials {
  lemonadeApi: CredentialReference;
}

interface LcLmChatLemonadeV1NodeBase {
  type: '@n8n/n8n-nodes-langchain.lmChatLemonade';
  version: 1;
  credentials?: LcLmChatLemonadeV1Credentials;
  isTrigger: true;
}

export type LcLmChatLemonadeV1ParamsNode = LcLmChatLemonadeV1NodeBase & {
  config: NodeConfig<LcLmChatLemonadeV1Params>;
};

export type LcLmChatLemonadeV1Node = LcLmChatLemonadeV1ParamsNode;