tasks-prompts-chain 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl
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.
- {tasks_prompts_chain-0.0.1.dist-info → tasks_prompts_chain-0.0.2.dist-info}/METADATA +13 -5
- tasks_prompts_chain-0.0.2.dist-info/RECORD +6 -0
- tasks_prompts_chain-0.0.1.dist-info/RECORD +0 -6
- {tasks_prompts_chain-0.0.1.dist-info → tasks_prompts_chain-0.0.2.dist-info}/WHEEL +0 -0
- {tasks_prompts_chain-0.0.1.dist-info → tasks_prompts_chain-0.0.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tasks_prompts_chain
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.2
|
4
4
|
Summary: A Python library for creating and executing chains of prompts using OpenAI's SDK with streaming support and template formatting.
|
5
5
|
Project-URL: Homepage, https://github.com/smirfolio/tasks_prompts_chain
|
6
6
|
Project-URL: Issues, https://github.com/smirfolio/tasks_prompts_chain/issues
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Requires-Python: >=3.8
|
13
13
|
Description-Content-Type: text/markdown
|
14
14
|
|
15
|
-
#
|
15
|
+
# TasksPromptsChain
|
16
16
|
|
17
17
|
A Mini Python library for creating and executing chains of prompts using OpenAI's API with streaming support and output template formatting.
|
18
18
|
|
@@ -26,14 +26,22 @@ A Mini Python library for creating and executing chains of prompts using OpenAI'
|
|
26
26
|
- Multiple output formats (JSON, Markdown, CSV, Text)
|
27
27
|
- Async/await support
|
28
28
|
|
29
|
-
##
|
29
|
+
## Dependancies
|
30
30
|
|
31
|
-
|
31
|
+
Please install typing-extensions and openai python packages
|
32
|
+
```bash
|
33
|
+
pip install typing-extensions
|
34
|
+
pip install openai
|
35
|
+
```
|
36
|
+
|
37
|
+
## Installation from source code
|
38
|
+
|
39
|
+
### For Users required from source gitHub repo
|
32
40
|
```bash
|
33
41
|
pip install -r requirements/requirements.txt
|
34
42
|
```
|
35
43
|
|
36
|
-
### For Developers
|
44
|
+
### For Developers required from source gitHub repo
|
37
45
|
```bash
|
38
46
|
pip install -r requirements/requirements.txt
|
39
47
|
pip install -r requirements/requirements-dev.txt
|
@@ -0,0 +1,6 @@
|
|
1
|
+
tasks_prompts_chain/__init__.py,sha256=HVhC_vMTYCyZW6vnoErHh-TkAnNRqJ2JJqClJQSfU8Y,148
|
2
|
+
tasks_prompts_chain/tasks_prompts_chain.py,sha256=epD997ELkacml3pJibbgKEo-IhlKwLx8J5uJtuJ6uWw,11416
|
3
|
+
tasks_prompts_chain-0.0.2.dist-info/METADATA,sha256=u88TuESsoYaag4rhQ9JqFFM8hOikSazIWHTgqv-c740,4841
|
4
|
+
tasks_prompts_chain-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
+
tasks_prompts_chain-0.0.2.dist-info/licenses/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
|
6
|
+
tasks_prompts_chain-0.0.2.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
tasks_prompts_chain/__init__.py,sha256=HVhC_vMTYCyZW6vnoErHh-TkAnNRqJ2JJqClJQSfU8Y,148
|
2
|
-
tasks_prompts_chain/tasks_prompts_chain.py,sha256=epD997ELkacml3pJibbgKEo-IhlKwLx8J5uJtuJ6uWw,11416
|
3
|
-
tasks_prompts_chain-0.0.1.dist-info/METADATA,sha256=Sds4Upqje_iKrhGWmuubtGftdOhrs1Uy0RgvNpQjffk,4613
|
4
|
-
tasks_prompts_chain-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
-
tasks_prompts_chain-0.0.1.dist-info/licenses/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
|
6
|
-
tasks_prompts_chain-0.0.1.dist-info/RECORD,,
|
File without changes
|
{tasks_prompts_chain-0.0.1.dist-info → tasks_prompts_chain-0.0.2.dist-info}/licenses/LICENSE
RENAMED
File without changes
|