We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LlamaIndex recently shipped with pydantic 2 support which seems to be breaking the instrumentaiton:
File ~/Library/Caches/pypoetry/virtualenvs/llama-index-caVs7DDe-py3.11/lib/python3.11/site-packages/openinference/instrumentation/llama_index/_handler.py:157 153 FINISHED = auto() 154 IN_PROGRESS = auto() --> 157 class _Span( 158 BaseSpan, 159 extra="allow", 160 keep_untouched=(singledispatchmethod, property), 161 ): 162 _otel_span: Span = PrivateAttr() 163 _attributes: Dict[str, AttributeValue] = PrivateAttr() ``` Yielding an error ``` NameError: Private attributes must not use valid field names; use sunder names, e.g. '_end_time' instead of 'end_time'. ```
The text was updated successfully, but these errors were encountered:
I encountered the same problem. I hope it can be fixed as soon as possible. Thanks!
Sorry, something went wrong.
Thanks @Pyiner - we've marked it as P0 and will get a fix in ASAP!
axiomofjoy
Successfully merging a pull request may close this issue.
LlamaIndex recently shipped with pydantic 2 support which seems to be breaking the instrumentaiton:
The text was updated successfully, but these errors were encountered: