flashyapi 1.0.2__tar.gz → 1.0.4__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.
- flashyapi-1.0.4/PKG-INFO +30 -0
- flashyapi-1.0.4/README.md +21 -0
- flashyapi-1.0.4/flashyapi.egg-info/PKG-INFO +30 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/flashyapi.egg-info/SOURCES.txt +1 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/pyproject.toml +3 -2
- flashyapi-1.0.2/PKG-INFO +0 -7
- flashyapi-1.0.2/flashyapi.egg-info/PKG-INFO +0 -7
- {flashyapi-1.0.2 → flashyapi-1.0.4}/FlashyAPI/__init__.py +0 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/FlashyAPI/main.py +0 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/flashyapi.egg-info/dependency_links.txt +0 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/flashyapi.egg-info/requires.txt +0 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/flashyapi.egg-info/top_level.txt +0 -0
- {flashyapi-1.0.2 → flashyapi-1.0.4}/setup.cfg +0 -0
flashyapi-1.0.4/PKG-INFO
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flashyapi
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: A pip package to use ai model from FloxyLabs.eu with simple code
|
|
5
|
+
Author: floxxy0
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: requests
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
import FlashyAPI
|
|
14
|
+
|
|
15
|
+
# Non-streaming
|
|
16
|
+
FlashyAPI.generate(
|
|
17
|
+
apiKey="your-api-key",
|
|
18
|
+
model="model-name",
|
|
19
|
+
prompt="Your question here",
|
|
20
|
+
streaming=False
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
# Streaming
|
|
24
|
+
FlashyAPI.generate(
|
|
25
|
+
apiKey="your-api-key",
|
|
26
|
+
model="model-name",
|
|
27
|
+
prompt="Your question here",
|
|
28
|
+
streaming=True
|
|
29
|
+
)
|
|
30
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
## Usage
|
|
2
|
+
|
|
3
|
+
```python
|
|
4
|
+
import FlashyAPI
|
|
5
|
+
|
|
6
|
+
# Non-streaming
|
|
7
|
+
FlashyAPI.generate(
|
|
8
|
+
apiKey="your-api-key",
|
|
9
|
+
model="model-name",
|
|
10
|
+
prompt="Your question here",
|
|
11
|
+
streaming=False
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
# Streaming
|
|
15
|
+
FlashyAPI.generate(
|
|
16
|
+
apiKey="your-api-key",
|
|
17
|
+
model="model-name",
|
|
18
|
+
prompt="Your question here",
|
|
19
|
+
streaming=True
|
|
20
|
+
)
|
|
21
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flashyapi
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: A pip package to use ai model from FloxyLabs.eu with simple code
|
|
5
|
+
Author: floxxy0
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: requests
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
import FlashyAPI
|
|
14
|
+
|
|
15
|
+
# Non-streaming
|
|
16
|
+
FlashyAPI.generate(
|
|
17
|
+
apiKey="your-api-key",
|
|
18
|
+
model="model-name",
|
|
19
|
+
prompt="Your question here",
|
|
20
|
+
streaming=False
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
# Streaming
|
|
24
|
+
FlashyAPI.generate(
|
|
25
|
+
apiKey="your-api-key",
|
|
26
|
+
model="model-name",
|
|
27
|
+
prompt="Your question here",
|
|
28
|
+
streaming=True
|
|
29
|
+
)
|
|
30
|
+
```
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flashyapi"
|
|
3
|
-
version = "1.0.
|
|
4
|
-
description = "
|
|
3
|
+
version = "1.0.4"
|
|
4
|
+
description = "A pip package to use ai model from FloxyLabs.eu with simple code"
|
|
5
|
+
readme = "README.md"
|
|
5
6
|
authors = [
|
|
6
7
|
{name = "floxxy0"}
|
|
7
8
|
]
|
flashyapi-1.0.2/PKG-INFO
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|