mirror of
https://github.com/hwchase17/langchain
synced 2024-11-18 09:25:54 +00:00
6598757037
Adds a first version of the migrate script.
8 lines
226 B
Python
8 lines
226 B
Python
from langchain_cli.utils.events import EventDict, create_events
|
|
|
|
|
|
def test_create_events() -> None:
|
|
assert create_events(
|
|
[EventDict(event="Test Event", properties={"test": "test"})]
|
|
) == {"status": "success"}
|