We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 123ea66 + 3b34e07 commit ca78bf0Copy full SHA for ca78bf0
promptfile/clients/base_client.py
@@ -20,6 +20,7 @@ def init(self):
20
file_path = os.path.join(self.base_path, f"{prompt_name}.prompt")
21
content = _read_file(file_path)
22
self.prompts[prompt_name] = self.prompt_class.load(content)
23
+ self.prompts[prompt_name].name = prompt_name
24
25
def get(self, name: str) -> Prompt:
26
if name in self.prompt_names:
setup.py
@@ -10,7 +10,7 @@
10
11
setup(
12
name="promptfile",
13
- version="0.7.0",
+ version="0.7.1",
14
packages=find_namespace_packages(),
15
entry_points={},
16
description="promptfile: language support for .prompt files",
0 commit comments