Upload story-generator.json
Browse files- story-generator.json +35 -0
story-generator.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"memory": null,
|
3 |
+
"verbose": false,
|
4 |
+
"tags": null,
|
5 |
+
"metadata": null,
|
6 |
+
"prompt": {
|
7 |
+
"input_variables": [
|
8 |
+
"genre"
|
9 |
+
],
|
10 |
+
"input_types": {},
|
11 |
+
"output_parser": null,
|
12 |
+
"partial_variables": {},
|
13 |
+
"template": "Write a story with dialogues of a romance story that leans into a {genre} genre, The story should be completed from the beginning to the end",
|
14 |
+
"template_format": "f-string",
|
15 |
+
"validate_template": true,
|
16 |
+
"_type": "prompt"
|
17 |
+
},
|
18 |
+
"llm": {
|
19 |
+
"model_name": "gpt-4",
|
20 |
+
"model": "gpt-4",
|
21 |
+
"request_timeout": null,
|
22 |
+
"max_tokens": null,
|
23 |
+
"stream": false,
|
24 |
+
"n": 1,
|
25 |
+
"temperature": 0.4,
|
26 |
+
"_type": "openai-chat"
|
27 |
+
},
|
28 |
+
"output_key": "text",
|
29 |
+
"output_parser": {
|
30 |
+
"_type": "default"
|
31 |
+
},
|
32 |
+
"return_final_only": true,
|
33 |
+
"llm_kwargs": {},
|
34 |
+
"_type": "llm_chain"
|
35 |
+
}
|