metaai-sdk 2.0.0__tar.gz → 2.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/CONTRIBUTING.md +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/LICENSE +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/PKG-INFO +7 -7
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/QUICK_REFERENCE.md +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/README.md +5 -5
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/pyproject.toml +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/requirements.txt +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/setup.py +4 -4
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/__init__.py +1 -1
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_sdk.egg-info/PKG-INFO +7 -7
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/CHANGELOG.md +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/MANIFEST.in +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/SECURITY.md +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/VIDEO_GENERATION_README.md +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/examples/simple_example.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/examples/test_example.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/examples/video_generation.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/setup.cfg +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/api_server.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/client.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/exceptions.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/main.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/utils.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_api/video_generation.py +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_sdk.egg-info/SOURCES.txt +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_sdk.egg-info/dependency_links.txt +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_sdk.egg-info/requires.txt +0 -0
- {metaai_sdk-2.0.0 → metaai_sdk-2.0.1}/src/metaai_sdk.egg-info/top_level.txt +0 -0
|
@@ -273,7 +273,7 @@ We're especially interested in contributions for:
|
|
|
273
273
|
- **General questions**: Open a GitHub Discussion
|
|
274
274
|
- **Bug reports**: Create an issue with bug template
|
|
275
275
|
- **Feature requests**: Create an issue with feature template
|
|
276
|
-
- **Security issues**: Email
|
|
276
|
+
- **Security issues**: Email imseldrith@gmail.com
|
|
277
277
|
|
|
278
278
|
## 🌟 Recognition
|
|
279
279
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: metaai-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Feature-rich Python SDK for Meta AI - Chat, Image & Video Generation powered by Llama 3
|
|
5
5
|
Home-page: https://github.com/mir-ashiq/metaai-api
|
|
6
|
-
Author:
|
|
6
|
+
Author: Ashiq Hussain Mir
|
|
7
7
|
Author-email: Ashiq Hussain Mir <imseldrith@gmail.com>
|
|
8
8
|
License-Expression: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/mir-ashiq/metaai-api
|
|
@@ -115,7 +115,7 @@ All in one SDK
|
|
|
115
115
|
For using Meta AI as a Python library:
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
|
-
pip install metaai-
|
|
118
|
+
pip install metaai-sdk
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
### SDK + API Server
|
|
@@ -123,7 +123,7 @@ pip install metaai-api
|
|
|
123
123
|
For deploying as a REST API service:
|
|
124
124
|
|
|
125
125
|
```bash
|
|
126
|
-
pip install metaai-
|
|
126
|
+
pip install metaai-sdk[api]
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
### From Source
|
|
@@ -307,7 +307,7 @@ Deploy Meta AI as a REST API service that anyone can use! The API server auto-re
|
|
|
307
307
|
### Installation
|
|
308
308
|
|
|
309
309
|
```bash
|
|
310
|
-
pip install metaai-
|
|
310
|
+
pip install metaai-sdk[api]
|
|
311
311
|
```
|
|
312
312
|
|
|
313
313
|
### Setup
|
|
@@ -504,7 +504,7 @@ if result["success"]:
|
|
|
504
504
|
print(f"⏱️ Generated at: {result['timestamp']}")
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](VIDEO_GENERATION_README.md) for complete documentation!
|
|
507
|
+
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](https://github.com/mir-ashiq/metaai-api/blob/main/VIDEO_GENERATION_README.md) for complete documentation!
|
|
508
508
|
|
|
509
509
|
---
|
|
510
510
|
|
|
@@ -821,7 +821,7 @@ This project is an **independent implementation** and is **not officially affili
|
|
|
821
821
|
|
|
822
822
|
- 💬 **Questions?** [GitHub Discussions](https://github.com/mir-ashiq/metaai-api/discussions)
|
|
823
823
|
- 🐛 **Bug Reports** [GitHub Issues](https://github.com/mir-ashiq/metaai-api/issues)
|
|
824
|
-
- 📧 **Contact**
|
|
824
|
+
- 📧 **Contact** imseldrith@gmail.com
|
|
825
825
|
- ⭐ **Star us** on [GitHub](https://github.com/mir-ashiq/metaai-api)
|
|
826
826
|
|
|
827
827
|
---
|
|
@@ -71,7 +71,7 @@ All in one SDK
|
|
|
71
71
|
For using Meta AI as a Python library:
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
|
-
pip install metaai-
|
|
74
|
+
pip install metaai-sdk
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
### SDK + API Server
|
|
@@ -79,7 +79,7 @@ pip install metaai-api
|
|
|
79
79
|
For deploying as a REST API service:
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
pip install metaai-
|
|
82
|
+
pip install metaai-sdk[api]
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
### From Source
|
|
@@ -263,7 +263,7 @@ Deploy Meta AI as a REST API service that anyone can use! The API server auto-re
|
|
|
263
263
|
### Installation
|
|
264
264
|
|
|
265
265
|
```bash
|
|
266
|
-
pip install metaai-
|
|
266
|
+
pip install metaai-sdk[api]
|
|
267
267
|
```
|
|
268
268
|
|
|
269
269
|
### Setup
|
|
@@ -460,7 +460,7 @@ if result["success"]:
|
|
|
460
460
|
print(f"⏱️ Generated at: {result['timestamp']}")
|
|
461
461
|
```
|
|
462
462
|
|
|
463
|
-
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](VIDEO_GENERATION_README.md) for complete documentation!
|
|
463
|
+
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](https://github.com/mir-ashiq/metaai-api/blob/main/VIDEO_GENERATION_README.md) for complete documentation!
|
|
464
464
|
|
|
465
465
|
---
|
|
466
466
|
|
|
@@ -777,7 +777,7 @@ This project is an **independent implementation** and is **not officially affili
|
|
|
777
777
|
|
|
778
778
|
- 💬 **Questions?** [GitHub Discussions](https://github.com/mir-ashiq/metaai-api/discussions)
|
|
779
779
|
- 🐛 **Bug Reports** [GitHub Issues](https://github.com/mir-ashiq/metaai-api/issues)
|
|
780
|
-
- 📧 **Contact**
|
|
780
|
+
- 📧 **Contact** imseldrith@gmail.com
|
|
781
781
|
- ⭐ **Star us** on [GitHub](https://github.com/mir-ashiq/metaai-api)
|
|
782
782
|
|
|
783
783
|
---
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "metaai-sdk"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.1"
|
|
8
8
|
description = "Feature-rich Python SDK for Meta AI - Chat, Image & Video Generation powered by Llama 3"
|
|
9
9
|
authors = [{name = "Ashiq Hussain Mir", email = "imseldrith@gmail.com"}]
|
|
10
10
|
readme = "README.md"
|
|
@@ -7,7 +7,7 @@ requests-html>=0.10.0
|
|
|
7
7
|
lxml-html-clean>=0.1.1
|
|
8
8
|
beautifulsoup4>=4.9.0
|
|
9
9
|
|
|
10
|
-
# API Server dependencies (optional - install with: pip install metaai-
|
|
10
|
+
# API Server dependencies (optional - install with: pip install metaai-sdk[api])
|
|
11
11
|
# Uncomment below if you want to install API dependencies manually:
|
|
12
12
|
# fastapi>=0.95.2,<0.96.0
|
|
13
13
|
# uvicorn[standard]>=0.22.0,<0.24.0
|
|
@@ -4,10 +4,10 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
4
4
|
long_description = fh.read()
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
|
-
name="metaai-
|
|
8
|
-
version="2.0.
|
|
9
|
-
author="
|
|
10
|
-
author_email="
|
|
7
|
+
name="metaai-sdk",
|
|
8
|
+
version="2.0.1",
|
|
9
|
+
author="Ashiq Hussain Mir",
|
|
10
|
+
author_email="imseldrith@gmail.com",
|
|
11
11
|
description="Feature-rich Python SDK for Meta AI - Chat, Image & Video Generation powered by Llama 3",
|
|
12
12
|
keywords="metaai, meta-ai, llama3, ai, llm, video-generation, image-generation, chatbot, conversational-ai",
|
|
13
13
|
long_description=long_description,
|
|
@@ -8,7 +8,7 @@ A modern, feature-rich Python SDK providing seamless access to Meta AI's capabil
|
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
10
|
__version__ = "2.0.0"
|
|
11
|
-
__author__ = "
|
|
11
|
+
__author__ = "Ashiq Hussain Mir"
|
|
12
12
|
__license__ = "MIT"
|
|
13
13
|
__url__ = "https://github.com/mir-ashiq/metaai-api"
|
|
14
14
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: metaai-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Feature-rich Python SDK for Meta AI - Chat, Image & Video Generation powered by Llama 3
|
|
5
5
|
Home-page: https://github.com/mir-ashiq/metaai-api
|
|
6
|
-
Author:
|
|
6
|
+
Author: Ashiq Hussain Mir
|
|
7
7
|
Author-email: Ashiq Hussain Mir <imseldrith@gmail.com>
|
|
8
8
|
License-Expression: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/mir-ashiq/metaai-api
|
|
@@ -115,7 +115,7 @@ All in one SDK
|
|
|
115
115
|
For using Meta AI as a Python library:
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
|
-
pip install metaai-
|
|
118
|
+
pip install metaai-sdk
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
### SDK + API Server
|
|
@@ -123,7 +123,7 @@ pip install metaai-api
|
|
|
123
123
|
For deploying as a REST API service:
|
|
124
124
|
|
|
125
125
|
```bash
|
|
126
|
-
pip install metaai-
|
|
126
|
+
pip install metaai-sdk[api]
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
### From Source
|
|
@@ -307,7 +307,7 @@ Deploy Meta AI as a REST API service that anyone can use! The API server auto-re
|
|
|
307
307
|
### Installation
|
|
308
308
|
|
|
309
309
|
```bash
|
|
310
|
-
pip install metaai-
|
|
310
|
+
pip install metaai-sdk[api]
|
|
311
311
|
```
|
|
312
312
|
|
|
313
313
|
### Setup
|
|
@@ -504,7 +504,7 @@ if result["success"]:
|
|
|
504
504
|
print(f"⏱️ Generated at: {result['timestamp']}")
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](VIDEO_GENERATION_README.md) for complete documentation!
|
|
507
|
+
📖 **Full Video Guide:** See [VIDEO_GENERATION_README.md](https://github.com/mir-ashiq/metaai-api/blob/main/VIDEO_GENERATION_README.md) for complete documentation!
|
|
508
508
|
|
|
509
509
|
---
|
|
510
510
|
|
|
@@ -821,7 +821,7 @@ This project is an **independent implementation** and is **not officially affili
|
|
|
821
821
|
|
|
822
822
|
- 💬 **Questions?** [GitHub Discussions](https://github.com/mir-ashiq/metaai-api/discussions)
|
|
823
823
|
- 🐛 **Bug Reports** [GitHub Issues](https://github.com/mir-ashiq/metaai-api/issues)
|
|
824
|
-
- 📧 **Contact**
|
|
824
|
+
- 📧 **Contact** imseldrith@gmail.com
|
|
825
825
|
- ⭐ **Star us** on [GitHub](https://github.com/mir-ashiq/metaai-api)
|
|
826
826
|
|
|
827
827
|
---
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|