|
|
|
|
|
by jawiggins
213 days ago
|
|
I don't think that parameter is an option when using pydantic schemas. class FooBar(BaseModel):
foo: list[str]
bar: list[int] prompt = """#Task
Your job is to reply with Foo Bar, a json object with foo, a list of strings, and bar, a list of ints
""" response = openai_client.chat.completions.parse(
model="gpt-5-nano-2025-08-07",
messages=[{"role": "system", "content": FooBar}],
max_completion_tokens=4096,
seed=123,
response_format=CommentAnalysis,
strict=True
) TypeError: Completions.parse() got an unexpected keyword argument 'strict' |
|