Error "An unexpected 'PrimitiveValue' node was found when reading from the JSON reader." on SK #3293
Replies: 4 comments
-
For those who are interested: We've resolved the issue creating the following columns in the ACS index: But now we're facing another error when we execute a query:
The exception says: Parameter name: $select Any suggestions? Thanks in Advanced. |
Beta Was this translation helpful? Give feedback.
-
We've reproduced the error executing the following query in ACS: search=*&$select=Id but the following query is working search=*&$select=id Means that SK is trying to retrieve the fileId "Id" (capital I) from ACS? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi: We've recreated the ACS index changing the name of Id column (capital I) and now it works!! Thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi: The code is working, but we're still receiving some errors: Unclosed client session SK is not closing connections after http requests? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone:
We're developing a copilot platform with Semantic Kernel, Azure OpenAI and Cognitive Search.
The first step is indexing documentation in Cognitive Search vector index.
This is a summary of the code to create embedding and store them in ACS:
`
kernel = sk.Kernel()
`
And these are the columns in the vector index:
We're receiving the error "An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartArray' node was expected." when the last line of the code is executed.
We're following some SK samples/demos in GitHub, but we dont find the schema we must create is ACS.
Any suggestions?
Thanks in Advanced.
Beta Was this translation helpful? Give feedback.
All reactions