Strvm / meta-ai-api

Llama 3 API (MetaAI Reverse Engineered)
236 stars 43 forks source link

Not showing up in my chat history. #7

Closed DillonMercz closed 5 months ago

DillonMercz commented 5 months ago

Hello,

Great work so far, is there any way I can get this to show up in my chat history on meta.ai?

sudityashrivastav commented 5 months ago

-

Strvm commented 5 months ago

Hello,

Great work so far, is there any way I can get this to show up in my chat history on meta.ai?

Hi, yes you can reflect the questions you ask through the library onto meta.ai by authenticating when initializing the lib:

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)
DillonMercz commented 5 months ago

Awesome! Was using the wrong initialization, Thank you!