Images
GenerateImage
The generateImage() function generates an image based on a given text input. The generated image is then uploaded to the file manager and the image title is returned.
1 2 3 4 5 6 7 | |
AskImage
The askImage() function enables you to ask any text queries on a given image that is present in the file manager. The image_id and query are given as inputs and it responds with a text output.
1 2 3 4 5 6 7 8 9 | |
DescribeImage
The describeImage() function returns a detailed description of what is present in an image. The image id from the file manager has to be provided as the input.
1 2 3 4 5 6 7 | |
generateImageStableDiffusion
The generateImageStableDiffusion() function generates an image based on the given text prompt using Stable Diffusion. This function takes a string of text as input, which is used to create a corresponding image.
1 2 3 4 5 6 7 | |
textFromImageOpenAI
The textFromImageOpenAI() function extracts text from an image using OpenAI's OCR capabilities. The function requires an image file ID from the file manager as input.
1 2 3 4 5 6 7 | |
textFromImage
The textFromImage() function extracts text from an image. It requires the image file ID from the file manager as input to process and return the extracted text.
1 2 3 4 5 6 7 | |
recognizeCelebrities
The recognizeCelebrities() function identifies and returns information about celebrities present in an image. It requires the image file ID from the file manager as input.
1 2 3 4 5 6 7 | |
detectExplicitContent
The detectExplicitContent() function detects explicit or inappropriate content in an image. It requires the image file ID from the file manager as input and checks for any content that may be flagged as explicit.
1 2 3 4 5 6 7 | |