llmai 0.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.
- llmai-0.0.1/PKG-INFO +22 -0
- llmai-0.0.1/README.md +13 -0
- llmai-0.0.1/pyproject.toml +14 -0
- llmai-0.0.1/src/llmai/__init__.py +2 -0
llmai-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: llmai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Coming soon...
|
|
5
|
+
Author: sauravniraula
|
|
6
|
+
Author-email: sauravniraula <developmentsaurav@gmail.com>
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Same Interface for ALL LLMs
|
|
11
|
+
|
|
12
|
+
Seamlessly interact with all leading Large Language Model providers through a unified and intuitive client.
|
|
13
|
+
|
|
14
|
+
## Features
|
|
15
|
+
|
|
16
|
+
- Supports multiple providers (OpenAI, Anthropic, Google Gemini, and more)
|
|
17
|
+
- Easy integration for any workflow or application
|
|
18
|
+
- Fast, reliable, and secure requests
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
**Stay tuned!**
|
llmai-0.0.1/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Same Interface for ALL LLMs
|
|
2
|
+
|
|
3
|
+
Seamlessly interact with all leading Large Language Model providers through a unified and intuitive client.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Supports multiple providers (OpenAI, Anthropic, Google Gemini, and more)
|
|
8
|
+
- Easy integration for any workflow or application
|
|
9
|
+
- Fast, reliable, and secure requests
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
**Stay tuned!**
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "llmai"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Coming soon..."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "sauravniraula", email = "developmentsaurav@gmail.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
14
|
+
build-backend = "uv_build"
|