You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-15
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,12 @@ The interpreter has been tested with Python version **3.12**.
29
29
To install the requirements for `pdl`, execute the command:
30
30
31
31
```
32
-
pip3 install .
32
+
pip3 install prompt-declaration-language
33
33
```
34
34
35
35
To install the dependencies for development of PDL and execute all the example, execute the command:
36
36
```
37
-
pip3 install '.[all]'
37
+
pip3 install 'prompt-declaration-language[all]'
38
38
```
39
39
40
40
@@ -49,7 +49,7 @@ For more information, see [documentation](https://docs.litellm.ai/docs/providers
49
49
To run the interpreter:
50
50
51
51
```
52
-
pdl-local <path/to/example.yaml>
52
+
pdl <path/to/example.yaml>
53
53
```
54
54
55
55
The folder `examples` contains many examples of PDL programs. Several of these examples have been adapted from the LMQL [paper](https://arxiv.org/abs/2212.06094) by Beurer-Kellner et al. The examples cover a variety of prompting patterns such as CoT, RAG, ReAct, and tool use.
@@ -62,30 +62,30 @@ useful for debugging.
62
62
To change the log filename, you can pass it to the interpreter as follows:
63
63
64
64
```
65
-
pdl-local --log <my-logfile> <my-example>
65
+
pdl --log <my-logfile> <my-example>
66
66
```
67
67
68
68
We can also pass initial data to the interpreter to populate variables used in a PDL program, as follows:
69
69
70
70
```
71
-
pdl-local --data <JSON-or-YAML-data> <my-example>
71
+
pdl --data <JSON-or-YAML-data> <my-example>
72
72
```
73
73
74
74
This can also be done by passing a JSON or YAML file:
See the [tutorial](https://ibm.github.io/prompt-declaration-language/tutorial) for more information about the conversational background context and how to use roles and chat templates.
@@ -396,8 +396,3 @@ For a complete list of issues see [here](https://github.com/IBM/prompt-declarati
396
396
## Contributing to the Project
397
397
398
398
See [Contributing to PDL](https://ibm.github.io/prompt-declaration-language/contrib)
Copy file name to clipboardexpand all lines: docs/README.md
+10-15
Original file line number
Diff line number
Diff line change
@@ -34,12 +34,12 @@ The interpreter has been tested with Python version **3.12**.
34
34
To install the requirements for `pdl`, execute the command:
35
35
36
36
```
37
-
pip3 install .
37
+
pip3 install prompt-declaration-language
38
38
```
39
39
40
40
To install the dependencies for development of PDL and execute all the example, execute the command:
41
41
```
42
-
pip3 install '.[all]'
42
+
pip3 install 'prompt-declaration-language[all]'
43
43
```
44
44
45
45
@@ -54,7 +54,7 @@ For more information, see [documentation](https://docs.litellm.ai/docs/providers
54
54
To run the interpreter:
55
55
56
56
```
57
-
pdl-local <path/to/example.yaml>
57
+
pdl <path/to/example.yaml>
58
58
```
59
59
60
60
The folder `examples` contains many examples of PDL programs. Several of these examples have been adapted from the LMQL [paper](https://arxiv.org/abs/2212.06094) by Beurer-Kellner et al. The examples cover a variety of prompting patterns such as CoT, RAG, ReAct, and tool use.
@@ -67,30 +67,30 @@ useful for debugging.
67
67
To change the log filename, you can pass it to the interpreter as follows:
68
68
69
69
```
70
-
pdl-local --log <my-logfile> <my-example>
70
+
pdl --log <my-logfile> <my-example>
71
71
```
72
72
73
73
We can also pass initial data to the interpreter to populate variables used in a PDL program, as follows:
74
74
75
75
```
76
-
pdl-local --data <JSON-or-YAML-data> <my-example>
76
+
pdl --data <JSON-or-YAML-data> <my-example>
77
77
```
78
78
79
79
This can also be done by passing a JSON or YAML file:
See the [tutorial](https://ibm.github.io/prompt-declaration-language/tutorial) for more information about the conversational background context and how to use roles and chat templates.
@@ -401,8 +401,3 @@ For a complete list of issues see [here](https://github.com/IBM/prompt-declarati
401
401
## Contributing to the Project
402
402
403
403
See [Contributing to PDL](https://ibm.github.io/prompt-declaration-language/contrib)
0 commit comments