mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
3a2eb6e12b
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
14 lines
431 B
Python
14 lines
431 B
Python
from neo4j_generation.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
text = "Harrison works at LangChain, which is located in San Francisco"
|
|
allowed_nodes = ["Person", "Organization", "Location"]
|
|
allowed_relationships = ["WORKS_AT", "LOCATED_IN"]
|
|
print( # noqa: T201
|
|
chain(
|
|
text,
|
|
allowed_nodes=allowed_nodes,
|
|
allowed_relationships=allowed_relationships,
|
|
)
|
|
)
|