langchain-ai
langchain
BlogDocsChangelog

fix(core): Resolve 'FieldInfo is not JSON serializable' error in Pydantic v2

#33932
Comparing
jitokim:fix/pydantic-fieldinfo-serialization
(
d1dafab
) with
master
(
83c078f
)
CodSpeed Performance Gauge
-26%
Regressions
13
Skipped
21

Benchmarks

Skipped (21)

test_create_chat_prompt_init_time
libs/partners/prompty/tests/unit_tests/test_standard.py
Skipped
311.9 µs*
test_exa_retriever_init_time
libs/partners/exa/tests/unit_tests/test_standard.py
Skipped
325.3 µs*
test_qdrant_vectorstore_init_time
libs/partners/qdrant/tests/unit_tests/test_standard.py
Skipped
224.2 ms*
test_chroma_init_time
libs/partners/chroma/tests/unit_tests/test_standard.py
Skipped
57.2 ms*
test_init_time
libs/partners/deepseek/tests/unit_tests/test_chat_models.py::TestChatDeepSeekUnit
Skipped
1.6 s*
test_init_time
libs/partners/perplexity/tests/unit_tests/test_chat_models_standard.py::TestPerplexityStandard
Skipped
837.5 ms*
test_init_time
libs/partners/ollama/tests/unit_tests/test_chat_models.py::TestChatOllama
Skipped
1.6 s*
test_init_time
libs/partners/xai/tests/unit_tests/test_chat_models_standard.py::TestXAIStandard
Skipped
3.3 s*
test_init_time
libs/partners/fireworks/tests/unit_tests/test_standard.py::TestFireworksStandard
Skipped
6.6 s*
test_init_time
libs/partners/mistralai/tests/unit_tests/test_standard.py::TestMistralStandard
Skipped
9.1 ms*
test_stream_time
libs/partners/openai/tests/integration_tests/chat_models/test_base_standard.py::TestOpenAIStandard
Skipped
1.2 s*
test_init_time
libs/partners/openai/tests/unit_tests/chat_models/test_responses_standard.py::TestOpenAIResponses
Skipped
12.1 ms*
test_init_time
libs/partners/openai/tests/unit_tests/chat_models/test_azure_standard.py::TestOpenAIStandard
Skipped
1.7 s*
test_stream_time
libs/partners/openai/tests/integration_tests/chat_models/test_responses_standard.py::TestOpenAIStandard
Skipped
1.2 s*
test_init_time
libs/partners/openai/tests/unit_tests/chat_models/test_base_standard.py::TestOpenAIStandard
Skipped
12.1 ms*
test_stream_time
libs/partners/openai/tests/integration_tests/chat_models/test_responses_standard.py::TestOpenAIResponses
Skipped
857 ms*
test_nomic_embeddings_init_time
libs/partners/nomic/tests/unit_tests/test_standard.py
Skipped
1.5 ms*
test_init_time
libs/partners/groq/tests/unit_tests/test_standard.py::TestGroqStandard
Skipped
1.6 s*
test_init_time
libs/partners/anthropic/tests/unit_tests/test_standard.py::TestAnthropicStandard
Skipped
764.2 µs*
test_stream_time
libs/partners/anthropic/tests/integration_tests/test_standard.py::TestAnthropicStandard
Skipped
34.9 ms*
test_init_time_with_client
libs/partners/anthropic/tests/unit_tests/test_standard.py
Skipped
2.3 ms*

Failed

test_import_time[HumanMessage]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-12%
235.8 ms*269.2 ms
test_import_time[BaseChatModel]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-13%
456.1 ms*521.9 ms
test_import_time[InMemoryRateLimiter]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-10%
157.7 ms*175.3 ms
test_import_time[InMemoryVectorStore]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-14%
531.6 ms*619.3 ms
test_async_callbacks_in_sync
libs/core/tests/benchmarks/test_async_callbacks.py
Regression
CodSpeed Performance Gauge
-26%
18.3 ms*24.7 ms
test_import_time[RunnableLambda]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-12%
433.6 ms*495 ms
test_import_time[CallbackManager]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-14%
397 ms*463 ms
test_import_time[PydanticOutputParser]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-14%
455.8 ms*530 ms
test_import_time[tool]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-16%
445.4 ms*530 ms
test_import_time[Runnable]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-13%
427.1 ms*488.5 ms
test_import_time[Document]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-13%
164.9 ms*189.5 ms
test_import_time[LangChainTracer]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-12%
387.8 ms*439.1 ms
test_import_time[ChatPromptTemplate]
libs/core/tests/benchmarks/test_imports.py
Regression
CodSpeed Performance Gauge
-16%
506.9 ms*602.4 ms

Commits

Click on a commit to change the comparison range
Base
master
83c078f
-3.41%
fix(core): Prevent 'FieldInfo' is not JSON serializable error in Pydantic v2 Fixes TypeError when generating JSON schemas: "Object of type 'FieldInfo' is not JSON serializable". This occurs when model_json_schema() includes internal Pydantic metadata in the output. Solution: Add mode='serialization' parameter to model_json_schema() to ensure only JSON-serializable data structures are generated. Changes: - Modified _convert_pydantic_to_openai_function() to pass mode='serialization' - Added test_pydantic_fieldinfo_serialization() to verify correct behavior - Resolves nested Pydantic v2 model conversion issues Impact: - Fixes schema generation for nested Pydantic v2 models - No breaking changes (Pydantic v1 code path unchanged) - Previously failing test_convert_to_openai_function_nested_v2 now passes Signed-off-by: jitokim <pigberger70@gmail.com>
bfedad2
6 days ago
by jitokim
+6.66%
Merge branch 'master' into fix/pydantic-fieldinfo-serialization
d0c713d
5 days ago
by jitokim
-29.25%
Merge branch 'master' into fix/pydantic-fieldinfo-serialization
d1dafab
3 days ago
by jitokim
© 2025 CodSpeed Technology
Home Terms Privacy Docs