Configuration for the Gemini schema composition.

interface IConfig {
    recursive: number | false;
}

Properties

Properties

recursive: number | false

Whether to allow recursive types or not.

If allow, then how many times to repeat the recursive types.

By the way, if the model is "chatgpt", the recursive types are always allowed without any limitation, due to it supports the reference type.

3