When I save my file as a jsonl file, I’m assuming that it should simply be a string in the same manner that I use when I feed it into the chatgpt prompt. If I’m wrong about this let me know. In any case, my code is as follows:
s = {‘hey’:“Translate the word ‘run’ into Ancient Greek”}
s = “Translate the word ‘run’ into Ancient Greek”
f = ‘file’
json_object = json.dumps(s, indent=4)
with open(f"{f}.jsonl", “w”) as outfile:
outfile.write(json_object)
projid = ‘secret’
orgid = ‘secret’
client = OpenAI(
organization=orgid,
api_key=projid,
batch_input_file = client.files.create(
file=open(f"{f}.jsonl", "rb"),
purpose="batch"
)
batch_input_file_id = batch_input_file.id
obj = client.batches.create(
input_file_id=batch_input_file_id,
endpoint="/v1/chat/completions",
completion_window="24h",
metadata={
"description": "ancient greek"
}
)
)
That code got me an id and did not raise an error. But that when I inspected it a few moments later it said that it expected an object not a string. So I changed the variable s
to a dictionary as seen above the line, but that got me the error message: openai.BadRequestError: Error code: 400 - {‘error’: {‘message’: ‘Invalid file format for Batch API. Must be .jsonl’, ‘type’: ‘invalid_request_error’, ‘param’: None, ‘code’: None}}
python-BaseException
Also, I can’t figure out how to properly format the code in this forum.