ImageConfig: {
    images_per_chunk?: number | null;
    use_images?: boolean | null;
}

Configuration for sending images to the llm

Type declaration

  • Optionalimages_per_chunk?: number | null

    The number of Images to send to the llm per chunk that is fetched more images may slow down llm inference time. default: 5

  • Optionaluse_images?: boolean | null

    This sends images to the llm if chunk_metadata.image_urls has some value, the call will error if the model is not a vision LLM model. default: false