Skip to content

Commit

Permalink
langchain[minor]: Tests update metadata filtering examples of documen…
Browse files Browse the repository at this point in the history
…ts (#19963)

Removing metadata properties that are dicts as some databases don't
support that, and those properties aren't used in tests anyhow..
  • Loading branch information
tomasonjo committed Apr 3, 2024
1 parent c6432ab commit 09a0ecd
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"is_active": True,
"tags": ["a", "b"],
"location": [1.0, 2.0],
"info": {"address": "123 main st", "phone": "123-456-7890"},
"id": 1,
"height": 10.0, # Float column
"happiness": 0.9, # Float column
Expand All @@ -23,7 +22,6 @@
"is_active": False,
"tags": ["b", "c"],
"location": [2.0, 3.0],
"info": {"address": "456 main st", "phone": "123-456-7890"},
"id": 2,
"height": 5.7, # Float column
"happiness": 0.8, # Float column
Expand All @@ -36,7 +34,6 @@
"is_active": True,
"tags": ["b", "d"],
"location": [3.0, 4.0],
"info": {"address": "789 main st", "phone": "123-456-7890"},
"id": 3,
"height": 2.4, # Float column
"happiness": None,
Expand Down

0 comments on commit 09a0ecd

Please sign in to comment.