Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
    "type": "function",
    "function": {
      "name": "ImageUpload",
      "parameters": {
        "type": "object",
        "required": [
          "query",
          "conversation_history"
        ],
        "properties": {
          "query": {
            "type": "string",
            "description": "Smart query based on the user request but augmented with the context of conversation if needed."
          },
          "image_name": {
            "type": "string",
            "description": "Name of the image file to be analyzed [Optional]."
          },
          "conversation_history": {
            "type": "string",
            "description": "Summary of the history of the conversation to provide context for the query."
          }
        }
      },
      "description": "This tool is designed to analyze, extract, and summarize information from images uploaded to the chat. It should be invoked whenever the user inquires about the content, details, or insights related to an imageimages."
    }
}

Global structure of config

...