We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8f7e64 commit 9e82916Copy full SHA for 9e82916
src/openaivec/prompt.py
@@ -116,7 +116,7 @@ class Response(BaseModel):
116
iterations: List[Step]
117
118
119
-_prompt: str = """
+_PROMPT: str = """
120
<Prompt>
121
<Instructions>
122
<Instruction id="1">
@@ -431,7 +431,7 @@ def improve(
431
432
response: ParsedResponse[Response] = client.responses.parse(
433
model=model_name,
434
- instructions=_prompt,
+ instructions=_PROMPT,
435
input=Request(prompt=self._prompt).model_dump_json(),
436
temperature=temperature,
437
top_p=top_p,
0 commit comments