This commit is contained in:
Eugene Yurtsev
2024-04-23 16:57:04 -04:00
parent c52a84c5a3
commit e8d99c9620
5 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from langchain_core.legacy.chains import LLMChain
__all__ = [
"LLMChain",
]

View File

@@ -0,0 +1,5 @@
from langchain_core.legacy.memory.chat_memory import BaseChatMemory
__all__ = [
"BaseChatMemory",
]

View File

@@ -0,0 +1,11 @@
from langchain_core.legacy.memory.prompt import (
ENTITY_EXTRACTION_PROMPT,
ENTITY_SUMMARIZATION_PROMPT,
KNOWLEDGE_TRIPLE_EXTRACTION_PROMPT,
)
__all__ = [
"ENTITY_EXTRACTION_PROMPT",
"ENTITY_SUMMARIZATION_PROMPT",
"KNOWLEDGE_TRIPLE_EXTRACTION_PROMPT",
]

View File

@@ -0,0 +1,5 @@
from langchain_core.legacy.memory.simple import SimpleMemory
__all__ = [
"SimpleMemory",
]