File size: 304 Bytes
9b674e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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,
            }
        ]
    ),    
]