mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import List, Union
|
|
|
|
from langchain_core.documents import Document
|
|
from langchain_core.load.serializable import Serializable
|
|
from langchain_core.pydantic_v1 import Field
|
|
|
|
|
|
class Node(Serializable):
|
|
"""Represents a node in a graph with associated properties.
|
|
|
|
Attributes:
|
|
id (Union[str, int]): A unique identifier for the node.
|
|
type (str): The type or label of the node, default is "Node".
|
|
properties (dict): Additional properties and metadata associated with the node.
|
|
"""
|
|
|
|
id: Union[str, int]
|
|
type: str = "Node"
|
|
properties: dict = Field(default_factory=dict)
|
|
|
|
|
|
class Relationship(Serializable):
|
|
"""Represents a directed relationship between two nodes in a graph.
|
|
|
|
Attributes:
|
|
source (Node): The source node of the relationship.
|
|
target (Node): The target node of the relationship.
|
|
type (str): The type of the relationship.
|
|
properties (dict): Additional properties associated with the relationship.
|
|
"""
|
|
|
|
source: Node
|
|
target: Node
|
|
type: str
|
|
properties: dict = Field(default_factory=dict)
|
|
|
|
|
|
class GraphDocument(Serializable):
|
|
"""Represents a graph document consisting of nodes and relationships.
|
|
|
|
Attributes:
|
|
nodes (List[Node]): A list of nodes in the graph.
|
|
relationships (List[Relationship]): A list of relationships in the graph.
|
|
source (Document): The document from which the graph information is derived.
|
|
"""
|
|
|
|
nodes: List[Node]
|
|
relationships: List[Relationship]
|
|
source: Document
|