Update README.md
Browse files
README.md
CHANGED
@@ -32,10 +32,22 @@ Prompt Generator is designed to streamline the process of generating text prompt
|
|
32 |
|
33 |
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
|
41 |
## Training:
|
|
|
32 |
|
33 |
|
34 |
|
35 |
+
# Usage:
|
36 |
+
|
37 |
+
```python
|
38 |
+
from transformers import pipeline
|
39 |
+
|
40 |
+
generator = pipeline("text-generation",model="PulsarAI/prompt-generator")
|
41 |
+
act = f"""
|
42 |
+
Action: Doctor
|
43 |
+
Prompt:
|
44 |
+
"""
|
45 |
+
prompt = generator(act, do_sample=True, max_new_tokens=256)
|
46 |
+
print(prompt)
|
47 |
+
"""
|
48 |
+
I want you to act as a doctor and come up with a treatment plan for an elderly patient who has been experiencing severe headaches. Your goal is to use your knowledge of conventional medicine, herbal remedies, and other natural alternatives in order to create a plan that helps the patient achieve optimal health. Remember to use your best judgment and discuss various options with the patient, and if necessary, suggest additional tests or treatments in order to ensure success.
|
49 |
+
"""
|
50 |
+
```
|
51 |
|
52 |
|
53 |
## Training:
|