mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
29 lines
888 B
Python
29 lines
888 B
Python
"""Redefined messages as a work-around for pydantic issue with AnyStr.
|
|
|
|
The code below creates version of pydantic models
|
|
that will work in unit tests with AnyStr as id field
|
|
Please note that the `id` field is assigned AFTER the model is created
|
|
to workaround an issue with pydantic ignoring the __eq__ method on
|
|
subclassed strings.
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
from langchain_core.messages import HumanMessage, ToolMessage
|
|
|
|
from tests.unit_tests.agents.any_str import AnyStr
|
|
|
|
|
|
def _AnyIdHumanMessage(**kwargs: Any) -> HumanMessage: # noqa: N802
|
|
"""Create a human message with an any id field."""
|
|
message = HumanMessage(**kwargs)
|
|
message.id = AnyStr()
|
|
return message
|
|
|
|
|
|
def _AnyIdToolMessage(**kwargs: Any) -> ToolMessage: # noqa: N802
|
|
"""Create a tool message with an any id field."""
|
|
message = ToolMessage(**kwargs)
|
|
message.id = AnyStr()
|
|
return message
|