Metadata-Version: 2.1
Name: meta_ai_api
Version: 1.0.1
Summary: Meta AI API Wrapper to interact with the Meta AI API
Home-page: https://github.com/tomchen/example_pypi_package
Author: Roméo Phillips
Author-email: phillipsromeo@gmail.com
Project-URL: Documentation, https://github.com/Strvm/meta-ai-api
Project-URL: Bug Reports, https://github.com/Strvm/meta-ai-api
Project-URL: Source Code, https://github.com/Strvm/meta-ai-api
Keywords: llm,ai,meta_ai_api
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: requests-html
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'

# MetaAI

MetaAI is a Python library designed to interact with Meta's AI APIs. It encapsulates the complexities of authentication and communication with the APIs, providing a straightforward interface for sending queries and receiving responses.

With this you can easily prompt the AI with a message and get a response, directly from your Python code. **NO API KEY REQUIRED**

**Meta AI is connected to the internet, so you will be able to get the latest real-time responses from the AI.**

## Usage
1. **Download**:

   ```bash
   pip install meta-ai-api
   ```
   
2. **Initialization**:

   ```python
   from meta_ai_api import MetaAI
   
   if __name__ == "__main__":
       ai = MetaAI()
       ai.prompt(message="Whats the weather in San Francisco today?")
   ```
