Closed
Description
Hi 👋,
I've noticed the exciting new capability for achieving Reproducible outputs.
Nevertheless, I'm encountering varying results when using identical input parameters and getting the same system fingerprint.
Am I missing something?
Python code to reproduce this issue (might need a few runs)
import openai
from openai.types.chat import ChatCompletionUserMessageParam
print(openai.__version__)
print()
for i in range(5):
message = ChatCompletionUserMessageParam(
content=(
"Imagine something completely random and crazy! (approximately 100 words)"
),
role="user",
)
response = openai.chat.completions.create(
messages=[message], model="gpt-3.5-turbo-1106", temperature=0, seed=42
)
print(response.system_fingerprint, response.choices[0].message.content)
Versions
OpenAI SDK 1.1.1
Python version 3.11.5
Metadata
Metadata
Assignees
Labels
No labels