langchain/libs
Tomaz Bratanic 22fa32e164
LLM Graph transformer dealing with empty strings (#23368)
Pydantic allows empty strings:

```
from langchain.pydantic_v1 import Field, BaseModel

class Property(BaseModel):
  """A single property consisting of key and value"""
  key: str = Field(..., description="key")
  value: str = Field(..., description="value")

x = Property(key="", value="")
```

Which can produce errors downstream. We simply ignore those records
2024-06-25 13:01:53 -04:00
..
cli cli[minor]: remove redefined DEFAULT_GIT_REF (#21471) 2024-06-14 15:49:15 -07:00
community community: add default value to bing_search_url (#23306) 2024-06-25 08:08:41 -04:00
core Merge pull request #22662 2024-06-25 08:42:03 -04:00
experimental LLM Graph transformer dealing with empty strings (#23368) 2024-06-25 13:01:53 -04:00
langchain langchain[patch]: update removal target for LLMChain (#23373) 2024-06-24 21:51:29 +00:00
partners partners: add lint docstrings for azure-dynamic-sessions/together modules (#23303) 2024-06-24 16:26:54 -04:00
standard-tests standard-tests[minor]: Add standard read write test suite for vectorstores (#23355) 2024-06-24 19:40:56 +00:00
text-splitters text-splitters: Fix/recursive json splitter data persistence issue (#21529) 2024-06-18 20:21:55 -07:00