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.
@@ -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,3 +1,4 @@
1
+ README.md
1
2
  pyproject.toml
2
3
  FlashyAPI/__init__.py
3
4
  FlashyAPI/main.py
@@ -1,7 +1,8 @@
1
1
  [project]
2
2
  name = "flashyapi"
3
- version = "1.0.2"
4
- description = "Fast and simple API utilities"
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
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: flashyapi
3
- Version: 1.0.2
4
- Summary: Fast and simple API utilities
5
- Author: floxxy0
6
- Requires-Python: >=3.10
7
- Requires-Dist: requests
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: flashyapi
3
- Version: 1.0.2
4
- Summary: Fast and simple API utilities
5
- Author: floxxy0
6
- Requires-Python: >=3.10
7
- Requires-Dist: requests
File without changes
File without changes