Skip to content

Commit 9e82916

Browse files
committed
fix: rename globals
1 parent e8f7e64 commit 9e82916

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/openaivec/prompt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class Response(BaseModel):
116116
iterations: List[Step]
117117

118118

119-
_prompt: str = """
119+
_PROMPT: str = """
120120
<Prompt>
121121
<Instructions>
122122
<Instruction id="1">
@@ -431,7 +431,7 @@ def improve(
431431

432432
response: ParsedResponse[Response] = client.responses.parse(
433433
model=model_name,
434-
instructions=_prompt,
434+
instructions=_PROMPT,
435435
input=Request(prompt=self._prompt).model_dump_json(),
436436
temperature=temperature,
437437
top_p=top_p,

0 commit comments

Comments
 (0)