Spaces:
Sleeping
Sleeping
File size: 345 Bytes
2a2834b 1f62c32 2a2834b c3bfe56 2a2834b 1f62c32 b249261 fbec402 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pathlib import Path
this_dir = Path(__file__).parent
with (this_dir.parent / "meta_prompt.txt").open() as f:
PROMPT_TEMPLATE = f.read()
with (this_dir.parent / "example_input.txt").open() as f:
EXAMPLE_INPUT = f.read()
with (this_dir.parent / "example_output.txt").open() as f:
EXAMPLE_OUTPUT = f.read()
USE_EXAMPLE = False
|