File tree 3 files changed +5
-5
lines changed
instrumentation-genai/opentelemetry-instrumentation-vertexai/src/opentelemetry/instrumentation/vertexai
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
pylint==3.0.2
2
2
httpretty==1.1.4
3
- pyright==v1.1.390
3
+ pyright==v1.1.396
4
4
sphinx==7.1.2
5
5
sphinx-rtd-theme==2.0.0rc4
6
6
sphinx-autodoc-typehints==1.25.2
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ def request_to_events(
240
240
id_ = f"{ function_response .name } _{ idx } " ,
241
241
role = content .role ,
242
242
content = json_format .MessageToDict (
243
- function_response ._pb .response # type: ignore[reportUnknownMemberType]
243
+ function_response ._pb .response
244
244
)
245
245
if capture_content
246
246
else None ,
@@ -300,7 +300,7 @@ def _extract_tool_calls(
300
300
function = ChoiceToolCall .Function (
301
301
name = part .function_call .name ,
302
302
arguments = json_format .MessageToDict (
303
- part .function_call ._pb .args # type: ignore[reportUnknownMemberType]
303
+ part .function_call ._pb .args
304
304
)
305
305
if capture_content
306
306
else None ,
Original file line number Diff line number Diff line change @@ -196,8 +196,8 @@ pythonVersion = "3.8"
196
196
reportPrivateUsage = false # Ignore private attributes added by instrumentation packages.
197
197
# Add progressively instrumentation packages here.
198
198
include = [
199
- " instrumentation/opentelemetry-instrumentation-threading/**/*.py " ,
200
- " instrumentation-genai/opentelemetry-instrumentation-vertexai/**/*.py " ,
199
+ " instrumentation/opentelemetry-instrumentation-threading" ,
200
+ " instrumentation-genai/opentelemetry-instrumentation-vertexai" ,
201
201
]
202
202
# We should also add type hints to the test suite - It helps on finding bugs.
203
203
# We are excluding for now because it's easier, and more important to add to the instrumentation packages.
You can’t perform that action at this time.
0 commit comments