Hey guys I am new here, I am trying to insert/append JSON file embeddings into an existing index:
I am using JSON reader to load the json file into document and was trying to insert it into the index using index.insert function.
But the line index.insert() casted me this openai error:
openai.OpenAIError: Error code: 400 - {'error': {'message': "'$.input' is invalid. Please check the API reference:
https://platform.openai.com/docs/api-reference.", 'type': 'invalid_request_error', 'param': None, 'code': None}}
Am I running into a openai version problem? or I shouldn't be able to insert documents loaded by JSON reader?