2023-07-15 08:00:45 +00:00
|
|
|
import json
|
|
|
|
|
2023-07-18 16:20:00 +00:00
|
|
|
import utils.bot as bot
|
2023-07-15 08:00:45 +00:00
|
|
|
from utils.chat import create_conversation
|
|
|
|
|
|
|
|
|
2023-07-18 16:20:00 +00:00
|
|
|
def escape_special_characters(string: str) -> str:
|
2023-07-15 08:00:45 +00:00
|
|
|
special_characters = [
|
|
|
|
"_",
|
|
|
|
"*",
|
|
|
|
"[",
|
|
|
|
"]",
|
|
|
|
"(",
|
|
|
|
")",
|
|
|
|
"~",
|
|
|
|
"`",
|
|
|
|
">",
|
|
|
|
"#",
|
|
|
|
"+",
|
|
|
|
"-",
|
|
|
|
"=",
|
|
|
|
"|",
|
|
|
|
"{",
|
|
|
|
"}",
|
|
|
|
".",
|
|
|
|
"!",
|
|
|
|
]
|
|
|
|
escaped_string = "".join(
|
|
|
|
[f"\\{char}" if char in special_characters else char for char in string]
|
|
|
|
)
|
|
|
|
return escaped_string
|
|
|
|
|
|
|
|
|
|
|
|
def process_event(event):
|
|
|
|
body = json.loads(event["body"])
|
|
|
|
message = body.get("message", {})
|
|
|
|
if message is not None:
|
|
|
|
uid = message.get("from", {}).get("id")
|
|
|
|
chat_id = message.get("chat", {}).get("id")
|
2023-07-18 16:20:00 +00:00
|
|
|
message_id = message.get("message_id")
|
2023-07-15 08:00:45 +00:00
|
|
|
text = message.get("text")
|
|
|
|
else:
|
2023-07-18 16:20:00 +00:00
|
|
|
uid = chat_id = message_id = text = None
|
2023-07-15 08:00:45 +00:00
|
|
|
try:
|
|
|
|
if text.startswith("/"):
|
|
|
|
command = text.split()[0][1:]
|
|
|
|
if command == "user":
|
2023-07-18 16:20:00 +00:00
|
|
|
bot.send_message(chat_id, f"*用户信息:*\nUID: `{uid}`")
|
2023-07-15 08:00:45 +00:00
|
|
|
if command == "chat":
|
|
|
|
try:
|
|
|
|
text = text.split(" ", 1)[1]
|
|
|
|
messages = [{"role": "user", "content": text}]
|
2023-07-18 16:20:00 +00:00
|
|
|
bot.send_chat_action(chat_id, "typing")
|
2023-08-26 05:49:21 +00:00
|
|
|
conversation = create_conversation(messages)
|
|
|
|
content = escape_special_characters(conversation[0])
|
|
|
|
model = conversation[1]
|
|
|
|
tokens = conversation[2]
|
|
|
|
response = (
|
|
|
|
f"{content}\n\n"
|
|
|
|
f"\-\-\-\-\-\-\-\-\-\- *Information* \-\-\-\-\-\-\-\-\-\-\n"
|
|
|
|
f"Model: `{model}`\n"
|
|
|
|
f"Tokens: `{tokens[0]}({tokens[1]}\+{tokens[2]})`"
|
|
|
|
)
|
2023-07-18 16:20:00 +00:00
|
|
|
bot.reply_message(chat_id, message_id, response)
|
2023-07-15 08:00:45 +00:00
|
|
|
except IndexError:
|
2023-07-18 16:20:00 +00:00
|
|
|
bot.reply_message(chat_id, message_id, "请输入对话内容")
|
2023-07-15 08:00:45 +00:00
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def lambda_handler(event, context):
|
|
|
|
process_event(event)
|
|
|
|
return {"statusCode": 200}
|