khulnasoft's picture
Upload 48 files
9b674e9 verified
raw
history blame contribute delete
304 Bytes
from langchain_core.messages import SystemMessage
from .chat_history import *
from ..llm_settings import first_message
llm_history_oiginal = [
SystemMessage(
content=[
{
"type": "text",
"text": first_message,
}
]
),
]