mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 14:43:07 +00:00
x
This commit is contained in:
5
libs/langchain/langchain/chains/llm.py
Normal file
5
libs/langchain/langchain/chains/llm.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from langchain_core.legacy.chains import LLMChain
|
||||
|
||||
__all__ = [
|
||||
"LLMChain",
|
||||
]
|
||||
5
libs/langchain/langchain/memory/chat_memory.py
Normal file
5
libs/langchain/langchain/memory/chat_memory.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from langchain_core.legacy.memory.chat_memory import BaseChatMemory
|
||||
|
||||
__all__ = [
|
||||
"BaseChatMemory",
|
||||
]
|
||||
11
libs/langchain/langchain/memory/prompt.py
Normal file
11
libs/langchain/langchain/memory/prompt.py
Normal 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",
|
||||
]
|
||||
5
libs/langchain/langchain/memory/simple.py
Normal file
5
libs/langchain/langchain/memory/simple.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from langchain_core.legacy.memory.simple import SimpleMemory
|
||||
|
||||
__all__ = [
|
||||
"SimpleMemory",
|
||||
]
|
||||
Reference in New Issue
Block a user