@Strvm, I would like to propose a change regarding the Meta API. Currently, there is an API that works with larger prompts compared to gpt4free, and it includes support for various file types such as images, Word documents, Excel files, and PDFs.
Proposed Solution
Could you implement the image generator from the following implementations?
from meta_ai_api import MetaAI
ai = MetaAI(fb_email="your_fb_email", fb_password="your_fb_password")
resp = ai.prompt(message="Generate an image of a tech CEO")
print(resp)
Additionally, I would like to know if you can create a login prompt similar to what is done with Google Gemini, or if it's possible to capture cookies from .har files for authentication.
Additional Context
This change would enhance the functionality of the Meta API, allowing it to handle larger prompts and integrate better with various file types.
This implementation was on https://github.com/xtekky/gpt4free/issues/1556 : Add more image gen providers
Description
@Strvm, I would like to propose a change regarding the Meta API. Currently, there is an API that works with larger prompts compared to gpt4free, and it includes support for various file types such as images, Word documents, Excel files, and PDFs.
Proposed Solution
Could you implement the image generator from the following implementations?
Example Code
I see other users asking for image generators https://github.com/xtekky/gpt4free/issues/2316 Here is a sample code snippet for using the Meta AI API:
Additionally, I would like to know if you can create a login prompt similar to what is done with Google Gemini, or if it's possible to capture cookies from
.har
files for authentication.Additional Context
This change would enhance the functionality of the Meta API, allowing it to handle larger prompts and integrate better with various file types.
Thank you for considering this request!