15 lines
216 B
Python
15 lines
216 B
Python
#! .\venv\
|
|
# encoding: utf-8
|
|
# @Time : 2023/4/20
|
|
# @Author : Spike
|
|
# @Descr :
|
|
|
|
|
|
|
|
|
|
|
|
def chat_with_ai(txt_passon, llm_kwargs, plugin_kwargs, chatbot_with_cookie, history, system_prompt):
|
|
|
|
history = []
|
|
|
|
pass |