Replies: 1 comment
-
@Linz1248 LLM outputs are not fully deterministic, so results may vary even with the same prompt and Suggestions:
Hope this helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I use JsonObjectConcept for concept extraction, I find that adding or removing fields in this data structure can affect the extraction results of the original fields. For example, the result of my first extraction is
"value": {
"name": "Jack",
"price": "50.0",
}.
However, when I add a new field "date", the output may become
"value": {
"name": "Smith",
"price": "50.0",
"date": "2025-8-10"
}.
The values of the original fields may change. What could be the reason for this?
Beta Was this translation helpful? Give feedback.
All reactions