geekai/database/chatgpt_plus-v3.1.7.sql

1228 lines
391 KiB
MySQL
Raw Normal View History

2023-10-26 14:00:06 +08:00
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- 主机: localhost
-- 生成日期: 2023-10-26 13:55:06
-- 服务器版本: 8.0.33-0ubuntu0.22.04.2
-- PHP 版本: 8.1.18
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- 数据库: `chatgpt_plus`
--
CREATE DATABASE IF NOT EXISTS `chatgpt_plus` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
USE `chatgpt_plus`;
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_api_keys`
--
DROP TABLE IF EXISTS `chatgpt_api_keys`;
CREATE TABLE `chatgpt_api_keys` (
`id` int NOT NULL,
`platform` char(20) DEFAULT NULL COMMENT '平台',
`value` varchar(100) NOT NULL COMMENT 'API KEY value',
`last_used_at` int NOT NULL COMMENT '最后使用时间',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='OpenAI API ';
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_chat_history`
--
DROP TABLE IF EXISTS `chatgpt_chat_history`;
CREATE TABLE `chatgpt_chat_history` (
`id` bigint NOT NULL,
`user_id` int NOT NULL COMMENT '用户 ID',
`chat_id` char(40) NOT NULL COMMENT '会话 ID',
`type` varchar(10) NOT NULL COMMENT '类型prompt|reply',
`icon` varchar(100) NOT NULL COMMENT '角色图标',
`role_id` int NOT NULL COMMENT '角色 ID',
`content` text NOT NULL COMMENT '聊天内容',
`tokens` smallint NOT NULL COMMENT '耗费 token 数量',
`use_context` tinyint(1) NOT NULL COMMENT '是否允许作为上下文语料',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`deleted_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='聊天历史记录';
--
-- 转存表中的数据 `chatgpt_chat_history`
--
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(23, 4, '43937f77-28b0-438a-843b-04ab5cc072a4', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:35:48', '2023-06-25 18:09:47', NULL),
(24, 4, '43937f77-28b0-438a-843b-04ab5cc072a4', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 11:35:51', '2023-06-25 18:09:47', NULL),
(25, 4, '4385db19-bb73-4b09-a01e-d06c3645b77a', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:38:21', '2023-06-25 18:09:47', NULL),
(26, 4, '4385db19-bb73-4b09-a01e-d06c3645b77a', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 11:38:21', '2023-06-25 18:09:47', NULL),
(27, 4, 'ceb5fab7-a2e0-449d-869b-a9ac117adf8d', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:45:35', '2023-06-25 18:09:47', NULL),
(28, 4, 'ceb5fab7-a2e0-449d-869b-a9ac117adf8d', 'reply', '/images/avatar/gpt.png', 1, 'Hello there, how can I assist you?', 9, 0, '2023-06-13 11:45:36', '2023-06-25 18:09:47', NULL),
(29, 4, '1cddfd62-3bf0-4fa9-bfd8-a0ce4663eb78', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:46:52', '2023-06-25 18:09:47', NULL),
(30, 4, '1cddfd62-3bf0-4fa9-bfd8-a0ce4663eb78', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 11:46:53', '2023-06-25 18:09:47', NULL),
(31, 4, '0118588e-399d-4a2a-8469-36e5a1af6a93', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:57:47', '2023-06-25 18:09:47', NULL),
(32, 4, '0118588e-399d-4a2a-8469-36e5a1af6a93', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 11:57:48', '2023-06-25 18:09:47', NULL),
(33, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 11:58:04', '2023-06-25 18:09:47', NULL),
(34, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 11:58:08', '2023-06-25 18:09:47', NULL),
(35, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'prompt', '/images/avatar/user.png', 1, '你是谁?', 5, 0, '2023-06-13 11:58:19', '2023-06-25 18:09:47', NULL),
(36, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'reply', '/images/avatar/gpt.png', 1, '我是AI语言模型我可以回答您的问题和执行一些任务。', 22, 0, '2023-06-13 11:58:21', '2023-06-25 18:09:47', NULL),
(37, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'prompt', '/images/avatar/user.png', 1, '你会做什么?', 8, 0, '2023-06-13 11:58:28', '2023-06-25 18:09:47', NULL),
(38, 4, '568f2918-33b2-46f7-8ef0-b9fa0b241bf2', 'reply', '/images/avatar/gpt.png', 1, '我可以进行文字交流,回答您的问题,提供实用信息,翻译多种语言,执行一些简单的任务,如提醒、定时器等。', 49, 0, '2023-06-13 11:58:29', '2023-06-25 18:09:47', NULL),
(39, 4, '1cddfd62-3bf0-4fa9-bfd8-a0ce4663eb78', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 12:03:44', '2023-06-25 18:09:47', NULL),
(40, 4, '1cddfd62-3bf0-4fa9-bfd8-a0ce4663eb78', 'reply', '/images/avatar/gpt.png', 1, 'Hello again! Is there anything I can help you with?', 12, 0, '2023-06-13 12:03:46', '2023-06-25 18:09:47', NULL),
(41, 4, '3c79cfda-816b-404b-832c-04a400b816c8', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 12:06:32', '2023-06-25 18:09:47', NULL),
(42, 4, '3c79cfda-816b-404b-832c-04a400b816c8', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 12:06:35', '2023-06-25 18:09:47', NULL),
(43, 4, '4f391861-1d48-430f-91b8-2782d884c10a', 'prompt', '/images/avatar/user.png', 1, '你好', 2, 0, '2023-06-13 12:06:47', '2023-06-25 18:09:47', NULL),
(44, 4, '4f391861-1d48-430f-91b8-2782d884c10a', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么我可以帮助你的吗?', 18, 0, '2023-06-13 12:06:48', '2023-06-25 18:09:47', NULL),
(45, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 16:58:26', '2023-06-25 18:09:47', NULL),
(46, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'reply', '/images/avatar/gpt.png', 1, 'Hello there! How can I assist you today?', 10, 0, '2023-06-13 16:58:27', '2023-06-25 18:09:47', NULL),
(47, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-13 17:02:35', '2023-06-25 18:09:47', NULL),
(48, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 0, '2023-06-13 17:02:36', '2023-06-25 18:09:47', NULL),
(49, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'prompt', '/images/avatar/user.png', 1, '你是谁', 4, 0, '2023-06-13 17:02:48', '2023-06-25 18:09:47', NULL),
(50, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'reply', '/images/avatar/gpt.png', 1, '我是一个 AI 聊天机器人,专门为您提供服务和回答问题。', 25, 0, '2023-06-13 17:02:49', '2023-06-25 18:09:47', NULL),
(51, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'prompt', '/images/avatar/user.png', 1, '你会干嘛', 7, 0, '2023-06-13 17:08:21', '2023-06-25 18:09:47', NULL),
(52, 4, 'c5e400fc-b9a8-4bd4-a608-be955284c0a9', 'reply', '/images/avatar/gpt.png', 1, '我作为一个AI语言模型可以帮助回', 16, 0, '2023-06-13 17:08:26', '2023-06-25 18:09:47', NULL),
(53, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'prompt', '/images/avatar/user.png', 1, '你是谁', 4, 0, '2023-06-13 17:11:25', '2023-06-25 18:09:47', NULL),
(54, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'reply', '/images/avatar/gpt.png', 1, '我是AI助手名字是OpenAI。', 13, 0, '2023-06-13 17:11:26', '2023-06-25 18:09:47', NULL),
(55, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'prompt', '/images/avatar/user.png', 1, '你会干嘛', 7, 0, '2023-06-13 17:11:46', '2023-06-25 18:09:47', NULL),
(56, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'reply', '/images/avatar/gpt.png', 1, '我可以回答你的问题、提供', 11, 0, '2023-06-13 17:11:47', '2023-06-25 18:09:47', NULL),
(57, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'prompt', '/images/avatar/user.png', 1, '你会干嘛', 7, 0, '2023-06-13 17:14:25', '2023-06-25 18:09:47', NULL),
(58, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'reply', '/images/avatar/gpt.png', 1, '作为一个AI我的任务是为用户提供信息和服务。我可以回答', 21, 0, '2023-06-13 17:14:26', '2023-06-25 18:09:47', NULL),
(59, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'prompt', '/images/avatar/user.png', 1, '重新生成上述问题的答案:你会干嘛', 17, 0, '2023-06-13 17:16:10', '2023-06-25 18:09:47', NULL),
(60, 4, 'd5179095-a460-4c62-bfa0-59f83ab17ed7', 'reply', '/images/avatar/gpt.png', 1, '作为一个AI我的任务是为用户提供信息和服务。我可以回答问题、提供建议、进行翻译、演算数学问题、帮助用户完成任务等等。', 52, 0, '2023-06-13 17:16:11', '2023-06-25 18:09:47', NULL),
(83, 9, 'd8e61f33-9287-4d63-b28f-b6e6aa891bb5', 'prompt', '/images/avatar/user.png', 1, '你是谁', 4, 0, '2023-06-15 11:13:55', '2023-06-25 18:09:47', NULL),
(84, 9, 'd8e61f33-9287-4d63-b28f-b6e6aa891bb5', 'reply', '/images/avatar/gpt.png', 1, '我是一个人工智能语言模型被称为OpenAI GPT-3。我可以回答您的问题和完成一些任务。', 38, 0, '2023-06-15 11:13:55', '2023-06-25 18:09:47', NULL),
(95, 4, '895e142d-83b5-4695-9e52-35b4c957c4fd', 'prompt', '/images/avatar/user.png', 1, '你好', 2, 0, '2023-06-21 10:33:44', '2023-06-25 18:09:47', NULL),
(96, 4, '895e142d-83b5-4695-9e52-35b4c957c4fd', 'reply', '/images/avatar/gpt.png', 1, '您好!有什么我可以帮您的吗?', 16, 0, '2023-06-21 10:33:47', '2023-06-25 18:09:47', NULL),
(107, 4, 'f6623cc0-e873-4566-9d9d-854dcf08492d', 'prompt', '/images/avatar/user.png', 1, 'hello', 1, 0, '2023-06-26 15:24:59', '2023-06-26 15:24:59', NULL),
(108, 4, 'f6623cc0-e873-4566-9d9d-854dcf08492d', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How may I assist you today?', 9, 0, '2023-06-26 15:25:01', '2023-06-26 15:25:01', NULL),
(109, 4, '338f78b2-2c98-4193-aced-93ea8cf29106', 'prompt', '/images/avatar/user.png', 1, '你好', 0, 0, '2023-06-26 15:46:50', '2023-06-26 15:46:50', NULL),
(110, 4, '338f78b2-2c98-4193-aced-93ea8cf29106', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么我可以帮助你的吗?', 0, 0, '2023-06-26 15:46:52', '2023-06-26 15:46:52', NULL),
(125, 4, 'a09f77b6-7bbc-48cf-b2cc-99a4e0879c19', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 0, 0, '2023-06-27 13:35:47', '2023-06-27 13:35:47', NULL),
(126, 4, 'a09f77b6-7bbc-48cf-b2cc-99a4e0879c19', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 0, 0, '2023-06-27 13:35:48', '2023-06-27 13:35:48', NULL),
(127, 4, 'a09f77b6-7bbc-48cf-b2cc-99a4e0879c19', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你好', 2, 0, '2023-06-27 13:44:53', '2023-06-27 13:44:53', NULL),
(128, 4, 'a09f77b6-7bbc-48cf-b2cc-99a4e0879c19', 'reply', '/images/avatar/gpt.png', 1, '你好! 有什么我可以帮助你的吗?', 19, 0, '2023-06-27 13:44:55', '2023-06-27 13:44:55', NULL),
(133, 4, '6527aa0c-d19a-4be0-a3fc-ecd982423ac0', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '找女朋友', 5, 0, '2023-06-30 08:31:18', '2023-06-30 08:31:18', NULL),
(134, 4, '6527aa0c-d19a-4be0-a3fc-ecd982423ac0', 'reply', '/images/avatar/red_book.jpg', 32, '题目:寻爱故事,幸福等你\n\n文案在茫茫人海中找到一个与你心灵相契的伴侣是一段幸福的开始。她是那个温暖的拥抱是那份彼此真诚的陪伴是你生命中的光芒。让我们一起探寻寻爱的旅程开启属于你的浪漫故事。\n\n小红书上有无数个寻爱故事的结局人们在这个平台上分享着自己的心声和心动瞬间。或许你会在这里遇见那个与你心灵契合的她拥有一段甜蜜的爱情。\n\n在这里我们无需刻意追求完美的外表因为真正的美丽是灵魂深处的绽放。我们寻找的是那个能够与你分享喜怒哀乐互相成长的伴侣。互相了解、包容和支持才能共同创造美好的未来。\n\n让我们一起倾听彼此的故事相互激励用心与热情打造出一段扣人心弦的爱情。小红书为你提供了一个倾诉心声和寻找真爱的舞台。无论你是为爱痴狂的浪漫主义者还是对未来充满期待的理性冷静者这里都能满足你对寻爱的需求。\n\n让我们一起书写属于你们的爱情故事用小红书的力量传递幸福与爱的能量。在这里你会遇见那个与你握手言欢、并肩前行的她。每个人都有属于自己的爱情故事而这个故事的开端就在小红书。\n\n赶紧加入我们寻找你的另一半一起创造幸福等你的爱情故事。小红书等你来撰写属于你的甜蜜人生', 630, 0, '2023-06-30 08:31:20', '2023-06-30 08:31:20', NULL),
(135, 4, '6527aa0c-d19a-4be0-a3fc-ecd982423ac0', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '化妆品', 5, 0, '2023-06-30 08:32:55', '2023-06-30 08:32:55', NULL),
(136, 4, '6527aa0c-d19a-4be0-a3fc-ecd982423ac0', 'reply', '/images/avatar/red_book.jpg', 32, '题目:美丽绽放,不可或缺的化妆品\n\n文案在快节奏的生活中化妆品成为现代女性不可或缺的秘密武器。它们不仅能为我们增添自信更能展现出独特的个性与魅力。小红书为你解锁一扇化妆品的世界大门让你的美丽绽放无尽可能。\n\n小红书上汇聚了众多化妆品爱好者和专业人士在这里可以分享彼此的美妆心得与经验。你将享有一系列详细的化妆品推荐以及使用技巧让你变身为专业级的彩妆达人。\n\n从基础护肤到精致妆容小红书上的化妆品攻略一应俱全。不论你是喜欢清爽自然妆容的粉底液还是追求炫彩亮丽妆效的眼影这里都能找到适合你的产品。\n\n小红书致力于为每个人打造独特的美丽风格。无论你是追求时尚潮流的搭配还是独立个性的创新妆容这里都有涉及到的化妆品满足你的不同需求。\n\n在小红书的化妆品世界里你将发现不同品牌的推荐及评价了解产品的性能与特点。 随着化妆品技术的进步及创新,小红书将为你展示最新的产品趋势,让你时刻保持在美妙的时尚浪潮中。\n\n加入我们和小红书的化妆品圈子一起探索各种新品获取专属的美妆经验分享。无论你是化妆新手还是专业达人小红书都能带给你和化妆品的新鲜感让你的美丽得以完美绽放。立即开启你的美妆之旅让小红书为你点亮美丽人生。', 647, 0, '2023-06-30 08:32:56', '2023-06-30 08:32:56', NULL),
(139, 4, '6527aa0c-d19a-4be0-a3fc-ecd982423ac0', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '亲子活动,最好有一些小表情输出', 15, 0, '2023-06-30 08:38:02', '2023-06-30 08:38:02', NULL),
(140, 4, '495bc000-e204-4cd6-bc43-b593ee1a4cc8', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '相亲活动,最好有表情图标输出', 14, 0, '2023-06-30 08:40:00', '2023-06-30 08:40:00', NULL),
(141, 4, '495bc000-e204-4cd6-bc43-b593ee1a4cc8', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '相亲活动,最好有表情图标输出, 100 字以内', 20, 0, '2023-06-30 08:42:50', '2023-06-30 08:42:50', NULL),
(146, 4, '3c9e8a92-970f-4e1a-9185-f229f83ab0ed', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 27, '你好', 2, 0, '2023-06-30 16:21:07', '2023-06-30 16:21:07', NULL),
(147, 4, '3c9e8a92-970f-4e1a-9185-f229f83ab0ed', 'reply', '/images/avatar/psychiatrist.jpg', 27, '你好!请问有什么心理问题或者困惑我可以帮助你解答吗?', 31, 0, '2023-06-30 16:21:08', '2023-06-30 16:21:08', NULL),
(152, 4, '6a5f5123-b999-45cb-84b7-0001276e516b', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'sss', 1, 0, '2023-07-10 11:18:10', '2023-07-10 11:18:10', NULL),
(153, 4, '6a5f5123-b999-45cb-84b7-0001276e516b', 'reply', '/images/avatar/gpt.png', 1, '', 0, 0, '2023-07-10 11:18:10', '2023-07-10 11:18:10', NULL),
(154, 4, '6937a77f-91b6-4a8b-a45e-70c2fc24e9b2', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 0, '2023-07-10 11:25:23', '2023-07-10 11:25:23', NULL),
(155, 4, '6937a77f-91b6-4a8b-a45e-70c2fc24e9b2', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 11:25:23', '2023-07-10 11:25:23', NULL),
(156, 4, '9448e338-5d72-4348-bfc8-93d29d106b9f', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 0, '2023-07-10 11:28:41', '2023-07-10 11:28:41', NULL),
(157, 4, '9448e338-5d72-4348-bfc8-93d29d106b9f', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 11:28:41', '2023-07-10 11:28:41', NULL),
(158, 4, '76852674-09b4-4067-a027-1fd13fd69613', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'heh', 2, 0, '2023-07-10 11:29:30', '2023-07-10 11:29:30', NULL),
(159, 4, '76852674-09b4-4067-a027-1fd13fd69613', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 11:29:30', '2023-07-10 11:29:30', NULL),
(160, 4, '59dd46d6-0ec2-4ce7-be8a-0daa1147e29d', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 0, '2023-07-10 11:29:54', '2023-07-10 11:29:54', NULL),
(161, 4, '59dd46d6-0ec2-4ce7-be8a-0daa1147e29d', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 11:29:54', '2023-07-10 11:29:54', NULL),
(162, 4, '9d2b29e6-9eab-41fc-98b4-bda3e6e0478a', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 0, '2023-07-10 12:07:06', '2023-07-10 12:07:06', NULL),
(163, 4, '9d2b29e6-9eab-41fc-98b4-bda3e6e0478a', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 12:07:07', '2023-07-10 12:07:07', NULL),
(164, 4, '8c99d1bc-54f1-4510-8e3f-6c879af64f38', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hell', 1, 0, '2023-07-10 12:08:52', '2023-07-10 12:08:52', NULL),
(165, 4, '8c99d1bc-54f1-4510-8e3f-6c879af64f38', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 12:08:52', '2023-07-10 12:08:52', NULL),
(166, 4, '8075d658-3ce7-4d59-8786-ae5f02ba4ab2', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 0, '2023-07-10 12:10:20', '2023-07-10 12:10:20', NULL),
(167, 4, '8075d658-3ce7-4d59-8786-ae5f02ba4ab2', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 12:10:20', '2023-07-10 12:10:20', NULL),
(168, 4, 'ef15016a-a792-4815-9269-9ad3db5aa7df', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'aaaa', 1, 0, '2023-07-10 12:11:00', '2023-07-10 12:11:00', NULL),
(169, 4, 'ef15016a-a792-4815-9269-9ad3db5aa7df', 'reply', '/images/avatar/gpt.png', 1, '{\n \"keyword\": \"特斯拉股价\"\n}', 15, 0, '2023-07-10 12:11:00', '2023-07-10 12:11:00', NULL),
(180, 4, 'f771ccb8-e26a-42b2-8b42-acb131c103ef', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日热搜', 7, 0, '2023-07-25 14:17:35', '2023-07-25 14:17:35', NULL),
(181, 4, 'f771ccb8-e26a-42b2-8b42-acb131c103ef', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博今日热搜:**\n\n1、 [1、中央气象台发布台风蓝色预警“杜苏芮“最强可达超强台风级将于28日上午在福建中部至广东东部一带沿海登陆。福建将“台风预警“提升为Ⅲ级。广东启动防风Ⅳ级应急响应]() [热度:%!d(string=)]\n\n2、 [2、官方适时调整优化房地产政策专家楼市限购或取消]() [热度:%!d(string=)]\n\n3、 [3、齐齐哈尔中学坍塌事故搜救工作结束共造成11人死亡初步调查是施工单位违规将珍珠岩堆置体育馆屋顶。受降雨影响珍珠岩浸水增重致屋顶荷载增大引发坍塌。涉事施工企业近年承揽当地多项政府工程。]() [热度:%!d(string=)]\n\n4、 [4、齐齐哈尔市长为中学坍塌事故致歉黑龙江省政府已成立联合调查组警方对相关责任人采取刑事强制措施。应急管理部迅速开展校园安全、运动场馆等隐患排查整治]() [热度:%!d(string=)]\n\n5、 [5、外交部中方决定自7月26日0时起恢复对新加坡、文莱15天免签入境政策]() [热度:%!d(string=)]\n\n6、 [6、24日石家庄遭遇大风天气屋顶顶棚部分被吹飞行道树被连根拔起砸中车辆]() [热度:%!d(string=)]\n\n7、 [7、台媒台军24日“汉光演习“时台军弹药库发生炮弹爆炸意外致9人受伤其中2人疑被“炸断手臂“]() [热度:%!d(string=)]\n\n8、 [8、外媒苏丹一架民用飞机坠毁造成9人死亡其中包括4名军人外媒厄瓜多尔曼塔市市长视察时被枪杀美媒当地23日美国得州发生两起大规模枪击事件共致2死7伤两名嫌疑人在逃]() [热度:%!d(string=)]\n\n9、 [9、韩媒24日上午一艘美军核潜艇驶入韩国济州军事港口]() [热度:%!d(string=)]\n\n10、 [10、英媒以色列议会通过限制最高法院权力法案引发大规模抗议和军队内部分歧]() [热度:%!d(string=)]\n\n11、 [11、外媒南非已邀请70个全球南方国家元首出席金砖峰会马克龙未获邀此外美国、英国等西方国家领导人也未受邀]() [热度:%!d(string=)]\n\n12、 [12、外媒喀麦隆经济首都杜阿拉当地23日凌晨发生建筑倒塌事故已致16死20多伤印度尼西亚苏拉威西一艘渡轮沉没已致15人遇难19人失踪]() [热度:%!d(string=)]\n\n13、 [13、普京签署法律将士兵服预备役年龄上限从50岁提高至55岁外国公民可应征入伍]() [热度:%!d(string=)]\n\n14、 [14、俄媒俄拟在远东地区部署图-160轰炸机航空团威慑美日乌防长乌克兰飞行员将于8月开始接受F-16战机培训外媒乌克兰1/3国土布满地雷和集束炸弹或需757年才能完成全境排雷]() [热度:%!d(string=)]\n\n15、 [15、克里米亚地区领导人当地24日11架无人机在克里米亚上空被击落。莫斯科市长24日凌晨两架无人机在莫斯科坠毁俄国防部大楼附近发生爆炸。乌国防官员承认对莫斯科发动无人机袭击]() [热度:%!d(string=)]', 1459, 0, '2023-07-25 14:17:36', '2023-07-25 14:17:36', NULL),
(196, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '如何改掉不好的习惯?', 13, 1, '2023-08-01 16:18:35', '2023-08-01 16:18:35', NULL),
(197, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'reply', '/images/avatar/gpt.png', 1, '改掉不好的习惯需要一定的时间和努力,以下是一些方法可以帮助你成功改掉不好的习惯:\n\n1. 认识到不好的习惯:首先要认识到自己存在不好的习惯,并且意识到这些习惯对自己的生活造成了负面影响。\n\n2. 设定明确的目标:确定自己想要改掉的不好习惯,并设定明确的目标。目标应该具体、可衡量,并且是可实现的。\n\n3. 寻找替代行为:找到能够取代不好习惯的积极行为。例如,如果你想改掉熬夜的习惯,可以尝试早睡早起,并制定一个固定的作息时间表。\n\n4. 制定计划与策略:制定一个详细的改变计划,包括具体的行动步骤和时间表。同时,考虑可能遇到的障碍,并制定对策应对。\n\n5. 培养自我控制力:改掉不好的习惯需要自我控制力。可以通过锻炼自己的意志力和自制力来增强自我控制力。\n\n6. 寻求支持和鼓励:告诉身边的人你的改变计划,并争取他们的支持和鼓励。可以找一个伙伴一起改掉习惯,相互监督。\n\n7. 奖励自己:当你成功地遵守了改变计划时,给自己适当的奖励,以激励自己继续坚持下去。\n\n8. 持之以恒:改掉不好的习惯是一个长期的过程,需要持之以恒。即使出现了一次失败,也不要灰心,继续努力。\n\n记住改掉不好的习惯需要时间和毅力。逐渐养成更好的习惯过上更健康和积极的生活。', 604, 1, '2023-08-01 16:18:36', '2023-08-01 16:18:36', NULL),
(198, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '写一份抖音的文案,内容是如何快速戒烟', 22, 1, '2023-08-01 16:25:17', '2023-08-01 16:25:17', NULL),
(199, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'reply', '/images/avatar/gpt.png', 1, '标题:快速戒烟,告别烟草,迎来健康自由!\n\n正文\n大家好今天我要分享一个重要的话题如何快速戒烟彻底告别烟草在健康自由的道路上向前迈进。\n\n戒烟虽然不容易但是通过以下方法你可以更快地实现戒烟目标\n\n1. 下定决心:戒烟的第一步是下定决心,坚信戒烟对你的健康将产生积极的影响。告别烟草,你将重获清新的呼吸和健康的身体。\n\n2. 设定戒烟计划:制定一个明确的戒烟计划,包括戒烟日期和戒烟过程中的具体步骤。切记,计划要合理可行,并且需要一点点地逐步实施。\n\n3. 找到戒烟替代品:找到一些替代品来帮助你应对戒烟过程中的戒断症状和渴望,例如口香糖、咀嚼橡皮筋或者吸入烟雾替代器。这些替代品可以减轻你的烟草依赖,并帮助你逐渐戒掉烟瘾。\n\n4. 改变环境:改变你的环境,将烟草制品远离你的生活空间。清理家中的烟灰缸和烟蒂,把你的车、家和工作场所变成无烟区域。与吸烟者保持距离,减少诱惑。\n\n5. 寻求支持:戒烟是一项挑战,寻求他人的支持和理解是很重要的。告诉你的家人和朋友你的戒烟决定,并告诉他们你需要他们的支持帮助。你也可以加入戒烟支持小组,与其他同样戒烟的人互相鼓励和分享经验。\n\n6. 建立健康生活习惯:戒烟的过程中,建立一些健康的生活习惯,例如定期锻炼、充足的睡眠和均衡的饮食。这些习惯将帮助你分散注意力,并提高你的身体素质和免疫力。\n\n7. 坚持不懈:戒烟没有捷径,需要坚持不懈地努力。即使你在戒烟过程中遇到了挑战和困难,也不要轻易放弃。期待你在健康自由的道路上取得胜利!\n\n快速戒烟并不容易它需要你的决心和毅力。但是请相信只要你坚定地走下去你一定能够成功戒烟享受健康和自由的生活加油💪💪💪', 911, 1, '2023-08-01 16:25:19', '2023-08-01 16:25:19', NULL),
(200, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '将上面的内容写成小红书的文案格式。', 16, 1, '2023-08-01 16:26:08', '2023-08-01 16:26:08', NULL),
(201, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'reply', '/images/avatar/gpt.png', 1, '第一段标题:快速戒烟,告别烟草,迎来健康自由!\n\n第一段正文\n大家好今天我要分享一个重要的话题如何快速戒烟彻底告别烟草在健康自由的道路上向前迈进。\n\n第二段标题下定决心迈向健康自由\n\n第二段正文\n戒烟虽然不容易但是通过以下方法你可以更快地实现戒烟目标\n\n1. 下定决心:戒烟的第一步是下定决心,坚信戒烟对你的健康将产生积极的影响。告别烟草,你将重获清新的呼吸和健康的身体。\n\n2. 设定戒烟计划:制定一个明确的戒烟计划,包括戒烟日期和戒烟过程中的具体步骤。切记,计划要合理可行,并且需要一点点地逐步实施。\n\n第三段标题找到戒烟替代品摆脱烟草依赖\n\n第三段正文\n3. 找到戒烟替代品:找到一些替代品来帮助你应对戒烟过程中的戒断症状和渴望,例如口香糖、咀嚼橡皮筋或者吸入烟雾替代器。这些替代品可以减轻你的烟草依赖,并帮助你逐渐戒掉烟瘾。\n\n第四段标题改变环境摆脱诱惑\n\n第四段正文\n4. 改变环境:改变你的环境,将烟草制品远离你的生活空间。清理家中的烟灰缸和烟蒂,把你的车、家和工作场所变成无烟区域。与吸烟者保持距离,减少诱惑。\n\n第五段标题获得支持戒烟之旅不再孤单\n\n第五段正文\n5. 寻求支持:戒烟是一项挑战,寻求他人的支持和理解是很重要的。告诉你的家人和朋友你的戒烟决定,并告诉他们你需要他们的支持帮助。你也可以加入戒烟支持小组,与其他同样戒烟的人互相鼓励和分享经验。\n\n第六段标题培养健康生活习惯远离烟草诱惑\n\n第六段正文\n6. 建立健康生活习惯:戒烟的过程中,建立一些健康的生活习惯,例如定期锻炼、充足的睡眠和均衡的饮食。这些习惯将帮助你分散注意力,并提高你的身体素质和免疫力。\n\n第七段标题坚持不懈戒烟路上的勇往直前\n\n第七段正文\n7. 坚持不懈:戒烟没有捷径,需要坚持不懈地努力。即使你在戒烟过程中遇到了挑战和困难,也不要轻易放弃。期待你在健康自由的道路上取得胜利!\n\n结语\n快速戒烟并不容易它需要你的决心和毅力。但是请相信只要你坚定地走下去你一定能够成功戒烟享受健康和自由的生活加油💪💪💪', 1121, 1, '2023-08-01 16:26:12', '2023-08-01 16:26:12', NULL),
(202, 4, 'b6869291-7a7d-4b24-b0dc-2493a54739b2', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-08-01 17:40:55', '2023-08-01 17:40:55', NULL),
(203, 4, 'b6869291-7a7d-4b24-b0dc-2493a54739b2', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-08-01 17:40:56', '2023-08-01 17:40:56', NULL),
(204, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '写一段 go 语言代码,实现将 markdown 导出为 pdf', 18, 1, '2023-08-01 17:50:26', '2023-08-01 17:50:26', NULL),
(205, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'reply', '/images/avatar/gpt.png', 1, '抱歉我不是Go语言环境无法为您提供直接在Go中将Markdown导出为PDF的代码。不过您可以尝试使用现有的Go库来实现此功能如`github.com/jung-kurt/gofpdf`或`github.com/russross/blackfriday`。以下是一段示例代码,可以给您一个参考:\n\n```go\npackage main\n\nimport (\n \"log\"\n \"io/ioutil\"\n \"github.com/jung-kurt/gofpdf\"\n \"github.com/russross/blackfriday\"\n)\n\nfunc main() {\n markdown, err := ioutil.ReadFile(\"input.md\")\n if err != nil {\n log.Fatal(err)\n }\n\n html := blackfriday.Run(markdown)\n\n pdf := gofpdf.New(\"P\", \"mm\", \"A4\", \"\")\n pdf.AddPage()\n pdf.WriteHTML(string(html))\n\n err = pdf.OutputFileAndClose(\"output.pdf\")\n if err != nil {\n log.Fatal(err)\n }\n}\n```\n请注意此代码需要使用`blackfriday`将Markdown转换为HTML并使用`gofpdf`将HTML输出为PDF。您需要在代码中指定输入的Markdown文件路径和输出的PDF文件路径。确保通过`go.mod`文件管理您的项目的依赖项。\n\n感谢您的理解和支持如果您有任何其他问题请随时提问。', 325, 1, '2023-08-01 17:50:27', '2023-08-01 17:50:27', NULL),
(206, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你会什么编程语言?', 10, 1, '2023-08-01 17:51:52', '2023-08-01 17:51:52', NULL),
(207, 4, '1329c918-93f7-4a52-aa51-81f668e85e09', 'reply', '/images/avatar/gpt.png', 1, '我具备多种编程语言的知识和能力,包括但不限于以下几种:\n\n1. Python作为一种高级编程语言我熟悉Python的语法和特性并能够进行数据分析、机器学习和Web开发等任务。\n\n2. JavaScript作为前端开发的关键语言我了解JavaScript的基础知识并能够使用它创建动态网页和交互性应用程序。\n\n3. Java作为一种广泛应用于企业级开发的编程语言我掌握Java的概念和核心概念并熟悉使用Java开发后端应用和Android应用。\n\n4. C++作为一种高性能和通用的编程语言我具备C++编程的基础知识,并能够进行系统级开发和性能优化。\n\n5. Go作为一种简洁高效的编程语言我了解Go的语法和并发模型并使用它进行网络编程和分布式系统开发。\n\n无论您在哪种编程语言上需要帮助我都会努力提供适当的支持和指导。', 323, 1, '2023-08-01 17:51:54', '2023-08-01 17:51:54', NULL),
(208, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '写一段 JS 代码实现图片 base64 编码', 14, 1, '2023-08-02 16:31:24', '2023-08-02 16:31:24', NULL),
(209, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'reply', '/images/avatar/gpt.png', 1, '可以使用 JavaScript 的 Canvas API 来实现图片的 base64 编码。以下是一个简单的示例代码:\n\n```javascript\nfunction encodeImageToBase64(imageUrl) {\n return new Promise((resolve, reject) => {\n const canvas = document.createElement(\'canvas\');\n const ctx = canvas.getContext(\'2d\');\n const img = new Image();\n \n img.onload = function() {\n canvas.width = img.width;\n canvas.height = img.height;\n \n ctx.drawImage(img, 0, 0);\n \n try {\n const base64String = canvas.toDataURL(\'image/jpeg\'); // 可指定其他格式,如 \'image/png\'\n resolve(base64String);\n } catch (error) {\n reject(error);\n }\n };\n \n img.onerror = function() {\n reject(new Error(\'Failed to load image\'));\n };\n \n img.src = imageUrl;\n });\n}\n\n// 使用示例:\nconst imageUrl = \'https://example.com/path/to/image.jpg\';\nencodeImageToBase64(imageUrl)\n .then((base64String) => {\n console.log(base64String);\n // 在这里使用 base64 编码字符串\n })\n .catch((error) => {\n console.error(error);\n // 处理错误\n });\n```\n\n上述代码定义了一个 `encodeImageToBase64` 函数,它接收一个图片的 URL 地址作为参数,并返回一个 Promise 对象。Promise 在图片加载完成后进行 base64 编码的处理。你可以通过调用 `encodeImageToBase64` 函数来实现将图片转换为 base64 编码的字符串。\n\n此代码依赖于 `canvas` 元素,因此需要在浏览器环境中运行。在 Node.js 环境中不能直接使用 Canvas API需要使用第三方库来支持此功能。', 415, 1, '2023-08-02 16:31:25', '2023-08-02 16:31:25', NULL),
(210, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'Go 语言呢', 6, 1, '2023-08-04 12:02:22', '2023-08-04 12:02:22', NULL),
(211, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'reply', '/images/avatar/gpt.png', 1, '在 Go 中,你可以使用 `encoding/base64` 包来实现图片的 base64 编码。以下是一个示例代码:\n\n```go\npackage main\n\nimport (\n \"encoding/base64\"\n \"fmt\"\n \"io/ioutil\"\n)\n\nfunc main() {\n // 读取图片文件\n imageData, err := ioutil.ReadFile(\"/path/to/image.jpg\")\n if err != nil {\n fmt.Println(\"Failed to read image file:\", err)\n return\n }\n \n // 进行 base64 编码\n base64String := base64.StdEncoding.EncodeToString(imageData)\n fmt.Println(base64String)\n // 可以在这里使用 base64 编码字符串\n}\n```\n\n上述代码使用了 `ioutil.ReadFile` 函数来读取图片文件,然后使用 `base64.StdEncoding.EncodeToString` 函数将读取的数据进行 base64 编码。最后将编码得到的字符串打印出来,你可以在这个位置使用该字符串进行后续操作。\n\n请注意你需要将示例代码中的 `/path/to/image.jpg` 替换为你实际的图片路径。另外,如果图片非常大,可能会导致内存占用较高,你可能需要考虑适当调整代码以处理大型图片。', 300, 1, '2023-08-04 12:02:23', '2023-08-04 12:02:23', NULL),
(212, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'python 又该怎么处理?', 9, 1, '2023-08-04 12:02:42', '2023-08-04 12:02:42', NULL),
(213, 4, '3548e667-0f78-4ad1-8317-4dbddc2c7211', 'reply', '/images/avatar/gpt.png', 1, '在 Python 中,你可以使用 `base64` 库来实现图片的 base64 编码。以下是一个示例代码:\n\n```python\nimport base64\n\ndef encode_image_to_base64(image_path):\n with open(image_path, \'rb\') as image_file:\n image_data = image_file.read()\n base64_string = base64.b64encode(image_data).decode(\'utf-8\')\n return base64_string\n\n# 使用示例:\nimage_path = \'/path/to/image.jpg\'\nbase64_string = encode_image_to_base64(image_path)\nprint(base64_string)\n# 在这里使用 base64 编码字符串\n```\n\n上述代码定义了一个 `encode_image_to_base64` 函数,它接收一个图片文件的路径作为参数,并返回该文件的 base64 编码字符串。该函数使用了 `base64.b64encode` 函数来对图片数据进行编码,并使用 `decode(\'utf-8\')` 方法将字节编码转换为字符串。\n\n你可以将实际的图片路径替换为 `image_path` 变量。然后,调用 `encode_image_to_base64` 函数可以得到图片的 base64 编码字符串,你可以在这个位置使用该字符串进行后续操作。\n\n请注意如果处理的是大型图片可能会导致内存占用较高。如果遇到此问题你可以考虑逐块读取和编码图片数据而不是一次性读取整个文件。', 342, 1, '2023-08-04 12:02:47', '2023-08-04 12:02:47', NULL),
(214, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '如何提升你的文案水平,要具有煽动性', 20, 1, '2023-08-04 12:03:23', '2023-08-04 12:03:23', NULL),
(215, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'reply', '/images/avatar/red_book.jpg', 32, '标题:点亮你的文案之路,打造煽动人心的创作壮举!\n\n正文\n各位小红书写手们想要在文案创作的路上脱颖而出吗想要让读者为你的文字所动容为你的创作所疯狂点赞吗那么就让我们一起来探讨如何提升你的文案水平让你的文案具有煽动力吧\n\n一、挖掘情感共鸣触动内心琴弦\n在创作文案时不仅仅要靠文字的表达能力更要深入人心触动读者的内心世界。了解目标读者的痛点、欲望和情感需求通过真挚的情感共鸣让读者感同身受。无论是温情的告白还是激励的励志都要通过恰到好处的情感表达打动读者的心弦。\n\n二、用故事撬动人心让故事背后的力量装满你的文案\n故事是文案中最具有煽动力的元素之一。通过讲述真实或虚构的故事将读者带入情节之中让他们产生共情和共鸣。故事的力量可以激发读者的情感并引发共鸣增强文案的影响力。用精彩的故事将产品或服务的卖点嵌入其中让读者在故事中感受到产品的价值和意义。\n\n三、言简意赅点燃读者的好奇心\n小红书文案的特点之一就是简洁明了言简意赅。在有限的篇幅内用简洁有力的词语和句子准确地传达信息点燃读者的好奇心。激发读者的探索欲望和求知欲引导他们主动了解更多关于产品或服务的内容。创造出一个引人入胜的开端让读者乐于花时间阅读并深入了解。\n\n四、用互动形式增强参与感激发用户行动力\n小红书的独特之处在于互动的氛围。在文案中加入互动元素让读者有参与和回应的机会。可以设计有趣的问答或投票环节引导读者参与讨论或表达意见。有效调动读者的积极性和互动性在互联网社交平台上引发话题和说服力。\n\n结语\n提升文案水平并不是一蹴而就的事情但只要你持续学习用心思考灵活运用小红书的创作手法就一定能够打造出煽动人心的文案。让我们共同点亮文案的璀璨之路展现创作的壮举珍惜每个创作机会用煽动性的文案感动每一位读者', 904, 1, '2023-08-04 12:03:24', '2023-08-04 12:03:24', NULL),
(216, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '周末家庭活动,内容中最好有些小孩子会喜欢的表情符号', 29, 1, '2023-08-04 12:04:28', '2023-08-04 12:04:28', NULL),
(217, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'reply', '/images/avatar/red_book.jpg', 32, '标题:快乐亲子时光,用表情符号点亮周末家庭活动!\n\n正文\n亲爱的爸爸妈妈们周末到了让我们一起度过欢乐的家庭时光给孩子们带来无尽的快乐和回忆。在这个特别的周末让我们用一些小朋友们喜欢的表情符号加入我们的家庭活动点亮每个时刻的快乐\n\n😄 一起来玩游戏吧!组织一场家庭游戏比赛,让孩子们展示自己的才艺和智慧。无论是捉迷藏、扔沙包,还是模仿动物叫声,都能让孩子们尽情释放自己的能量,笑声和欢声不断。\n\n🍳 做美味的午餐!挑选一道孩子们喜欢的食谱,让他们参与厨房的工作。让孩子们洗净蔬菜,搅拌面糊,或是摆盘装饰,培养他们的独立能力和对食物的热爱。一道道美味的菜肴不仅填饱了肚子,更填满了家人之间的温馨和感动。\n\n🌳 探索大自然!带着孩子们到户外去感受大自然的美妙。可以去公园散步,欣赏花草树木,观察小昆虫;或者去郊外踏青、野餐,亲近大自然的清新和宁静。让孩子们感受到广阔的世界和自然的奇妙之处,培养他们的观察力和探究精神。\n\n🎨 创意手工!准备一些手工材料,和孩子们一起动手制作漂亮的手工作品。可以是折纸、剪纸,或是用彩色纸制作卡片、装饰物。通过动手的过程,培养孩子们的想象力和创造力,让他们体会到自己的作品能够带来的自豪和成就感。\n\n🎥 家庭影院时光!在家舒适地打造一个小小的影院,一起观看孩子们喜欢的电影或动画片。在观影的过程中,可以一起分享影片中的故事和情感,一起欢笑、一起感动。营造温馨的家庭氛围,让孩子们感受到家的温暖和陪伴。\n\n让我们以表情符号的力量营造快乐亲子时光的氛围给孩子们带来无尽的欢笑和惊喜让家庭成为他们最温暖的避风港。在这个周末带着表情符号的快乐共同创造美好的回忆和家庭故事😊💖', 925, 1, '2023-08-04 12:04:29', '2023-08-04 12:04:29', NULL),
(218, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 32, '如何改掉不好的习惯', 12, 1, '2023-08-04 12:05:14', '2023-08-04 12:05:14', NULL),
(219, 4, 'e1d8eee6-2e84-4c8e-8901-c4a73d990f7f', 'reply', '/images/avatar/red_book.jpg', 32, '标题:改掉不好习惯,迈向更好的自己!\n\n正文\n我们都有一些不好的习惯它们可能会限制我们的成长和幸福。但是没有什么是改不掉的下面是几个简单而实用的方法帮助你摆脱不好的习惯迈向更好的自己。\n\n一、认识自己的习惯\n改掉不好的习惯首先需要认识到自己的不良习惯并明白其对自己的影响。写下你想改掉的习惯记录下它们给你带来的负面影响以此作为坚持的动力。\n\n二、设定明确的目标\n设定明确、可量化的目标是成功改掉不良习惯的关键。将目标分解为小的里程碑逐步实现。例如如果你想戒烟可以先减少每天吸烟的数量然后逐渐停止。通过小步的改变达到大的目标会更容易。\n\n三、寻找替代行为\n改掉习惯并不意味着完全放弃某个行为而是将其替换为更积极、健康的行为。找到替代行为可以帮助你填补习惯改变后的空白并给予你积极的反馈。例如如果你习惯熬夜看手机可以尝试改为阅读一本书或做一些放松的活动。\n\n四、寻求支持和反馈\n改掉习惯是一项艰巨的任务但你并不孤单。寻求家人、朋友或专业人士的支持和帮助可以给你力量和鼓励。他们可以给予你建议、提供支持并为你提供宝贵的反馈帮助你坚持下去。\n\n五、养成良好的习惯\n改掉不好的习惯的同时培养一些良好的习惯也非常重要。良好的习惯可以帮助你建立自律和坚持的能力进一步推动你朝着更好的方向发展。例如坚持每天锻炼、定期阅读、保持良好的作息等。\n\n克服不良习惯需要毅力和耐心但只要你下定决心并采取行动一点点的努力就会有积极的结果。相信自己相信你可以改变迈向一个更好的自己加油', 772, 1, '2023-08-04 12:05:16', '2023-08-04 12:05:16', NULL),
(220, 4, '7f9eff07-eb9f-4659-af8d-c3557410bec4', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-08-08 13:51:46', '2023-08-08 13:51:46', NULL),
(221, 4, '7f9eff07-eb9f-4659-af8d-c3557410bec4', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-08-08 13:51:48', '2023-08-08 13:51:48', NULL),
(222, 4, '6d7713ce-a8e2-4a6b-ad6b-2c03ff881405', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-08-08 13:55:15', '2023-08-08 13:55:15', NULL),
(223, 4, '6d7713ce-a8e2-4a6b-ad6b-2c03ff881405', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-08-08 13:55:18', '2023-08-08 13:55:18', NULL),
(224, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '用小学生都能听懂的术语解释什么是量子纠缠', 26, 1, '2023-08-08 14:06:10', '2023-08-08 14:06:10', NULL),
(225, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '量子纠缠是一种特殊的量子现象,可以用小学生都能听懂的方式解释。假设有两个小朋友,分别拿着一个神奇的盒子,盒子里面有两个彩色的手套,一个是红色的,一个是蓝色的。\n\n当两个盒子中的手套都没有被打开时我们无法知道盒子里的手套颜色是什么。但是一旦其中一个小朋友打开自己的盒子看到了自己的手套颜色那么另一个盒子里的手套颜色也会立即确定下来。\n\n这就是量子纠缠的特殊之处当两个量子粒子比如电子、光子等在某个特定的状态下它们之间会产生一种神奇的联系无论它们之间有多远的距离一旦其中一个量子粒子的状态发生改变另一个量子粒子的状态也会立即发生对应的改变就像两个盒子里的手套一样。\n\n这种量子纠缠现象在量子物理学中起到非常重要的作用被用来进行量子通信和量子计算等领域的研究。虽然量子纠缠听起来很神奇但是实际上并没有超越自然定律只是在微观粒子层面上展现出来的特殊现象对我们日常生活并没有太大影响。', 453, 1, '2023-08-08 14:06:11', '2023-08-08 14:06:11', NULL),
(226, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '能给一位6岁男孩的生日会提供一些创造性的建议吗', 27, 1, '2023-08-08 14:13:13', '2023-08-08 14:13:13', NULL),
(227, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'reply', '/images/avatar/gpt.png', 1, '当为一位6岁男孩举办生日会时以下是一些创造性的建议\n\n1. 主题派对:选择他喜欢的电影、卡通或超级英雄作为主题,通过装饰、餐具和蛋糕的设计来呼应主题。\n\n2. 手工艺活动:设置一个小工作坊,让孩子们参与制作手工艺品,例如彩色泡泡画、太阳眼镜等,他们可以带回家。\n\n3. 创意游戏为孩子们准备一些创意游戏例如宝藏寻找、小丑饼干装饰、DIY捉迷藏等。\n\n4. 魔术表演:请一位专业的魔术师来表演一场精彩的魔术,孩子们可以参与其中。\n\n5. 科学实验:设置一个小型科学实验室,进行一些简单的科学实验,如彩色漩涡、气球火箭等。\n\n6. 玩具交换:要求每位孩子带一个不常玩的玩具并进行交换,这样孩子们可以拥有新的玩具。\n\n7. 蛋糕装饰比赛:提前准备几个蛋糕,让孩子们分成小组,用糖霜、水果等装饰蛋糕,最后评选最好的装饰。\n\n8. 活动站点:设置几个不同的活动站点,例如充气滑滑梯、脸部彩绘和泡泡机,让孩子们可以选择他们喜欢的活动。\n\n希望以上建议能帮助你为6岁男孩的生日会提供一些创意', 523, 1, '2023-08-08 14:13:15', '2023-08-08 14:13:15', NULL),
(228, 4, 'fe6ff46e-891e-4fae-aa71-b3e1b5cb5a1e', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 14:23:30', '2023-08-11 14:23:30', NULL),
(229, 4, 'fe6ff46e-891e-4fae-aa71-b3e1b5cb5a1e', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错:无效的 API Token', 102, 0, '2023-08-11 14:23:32', '2023-08-11 14:23:32', NULL),
(230, 4, '4f84e788-7345-4f19-abbc-f285a1953cf5', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 14:36:17', '2023-08-11 14:36:17', NULL),
(231, 4, '4f84e788-7345-4f19-abbc-f285a1953cf5', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Get \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refusedGet \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 3, 0, '2023-08-11 14:36:18', '2023-08-11 14:36:18', NULL),
(232, 4, '7a25ffeb-5197-4570-8b5c-32d7c629f320', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 14:40:52', '2023-08-11 14:40:52', NULL),
(233, 4, '7a25ffeb-5197-4570-8b5c-32d7c629f320', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Get \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refusedGet \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 100, 0, '2023-08-11 14:40:56', '2023-08-11 14:40:56', NULL),
(234, 4, '2dc02f57-6350-4186-a0c3-ee256fcdf48f', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 14:44:50', '2023-08-11 14:44:50', NULL),
(235, 4, '2dc02f57-6350-4186-a0c3-ee256fcdf48f', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Get \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refusedGet \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 102, 0, '2023-08-11 14:44:52', '2023-08-11 14:44:52', NULL),
(236, 4, 'dba6679b-7389-41b1-80b0-f423fe74e42a', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:08:51', '2023-08-11 15:08:51', NULL),
(237, 4, 'dba6679b-7389-41b1-80b0-f423fe74e42a', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Get \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refusedGet \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 84, 0, '2023-08-11 15:08:56', '2023-08-11 15:08:56', NULL),
(238, 4, 'dba6679b-7389-41b1-80b0-f423fe74e42a', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:13:35', '2023-08-11 15:13:35', NULL),
(239, 4, 'dba6679b-7389-41b1-80b0-f423fe74e42a', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错:<nil><nil>', 91, 0, '2023-08-11 15:13:51', '2023-08-11 15:13:51', NULL),
(240, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:18:09', '2023-08-11 15:18:09', NULL),
(241, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错:<nil><nil>', 82, 0, '2023-08-11 15:18:27', '2023-08-11 15:18:27', NULL),
(242, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:28:29', '2023-08-11 15:28:29', NULL),
(243, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 84, 0, '2023-08-11 15:28:30', '2023-08-11 15:28:30', NULL),
(244, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:29:46', '2023-08-11 15:29:46', NULL),
(245, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 82, 0, '2023-08-11 15:29:47', '2023-08-11 15:29:47', NULL),
(246, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上look at view海风吹起了她的长发。3:2', 43, 0, '2023-08-11 15:32:57', '2023-08-11 15:32:57', NULL),
(247, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 82, 0, '2023-08-11 15:32:58', '2023-08-11 15:32:58', NULL),
(248, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上HD portrait海风吹起了她的长发。3:2', 42, 0, '2023-08-11 16:23:19', '2023-08-11 16:23:19', NULL),
(249, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": dial tcp 127.0.0.1:9001: connect: connection refused', 81, 0, '2023-08-11 16:23:20', '2023-08-11 16:23:20', NULL),
(250, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上HD portrait海风吹起了她的长发。3:2', 42, 0, '2023-08-11 16:23:56', '2023-08-11 16:23:56', NULL),
(251, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walking barefoot on the beach, HD portrait, her long hair is blown by the sea breeze.\n已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 85, 0, '2023-08-11 16:23:57', '2023-08-11 16:23:57', NULL),
(252, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上HD portrait海风吹起了她的长发。3:2', 42, 0, '2023-08-11 16:31:04', '2023-08-11 16:31:04', NULL),
(253, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walks barefoot on the beach with the sea breeze blowing her long hair. 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 75, 0, '2023-08-11 16:31:05', '2023-08-11 16:31:05', NULL),
(254, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上穿红的衣服HD portrait海风吹起了她的长发。2:3', 51, 0, '2023-08-11 16:39:08', '2023-08-11 16:39:08', NULL),
(255, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walking barefoot on the beach, wearing a red dress. The sea breeze is blowing her long hair. 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 86, 0, '2023-08-11 16:39:09', '2023-08-11 16:39:09', NULL),
(256, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上穿蓝色衣服HD portrait海风吹起了她的长发。2:3', 52, 0, '2023-08-11 16:55:32', '2023-08-11 16:55:32', NULL),
(257, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walking barefoot on the beach, wearing a blue dress, HD portrait. The sea breeze blows her long hair. 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 90, 0, '2023-08-11 16:55:33', '2023-08-11 16:55:33', NULL),
(258, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上穿蓝色衣服HD portrait海风吹起了她的长发。2:3', 52, 0, '2023-08-11 18:41:39', '2023-08-11 18:41:39', NULL),
(259, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walks barefoot on the beach, wearing a blue dress, HD portrait. The sea breeze blows her long hair. --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 90, 0, '2023-08-11 18:41:41', '2023-08-11 18:41:41', NULL),
(260, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上穿红的衣服HD portrait海风吹起了她的长发精致的五官刻画。2:3', 63, 0, '2023-08-14 08:51:52', '2023-08-14 08:51:52', NULL),
(261, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错404 page not found<nil>', 94, 0, '2023-08-14 08:51:55', '2023-08-14 08:51:55', NULL),
(262, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一个中国女孩赤脚走在沙滩上穿红的衣服HD portrait海风吹起了她的长发精致的五官刻画。2:3', 63, 0, '2023-08-14 08:54:41', '2023-08-14 08:54:41', NULL),
(263, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl walks barefoot on the beach, wearing a red dress. HD portrait. The sea breeze blows her long hair, and her delicate features are portrayed. --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 101, 0, '2023-08-14 08:54:45', '2023-08-14 08:54:45', NULL),
(264, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 42, 0, '2023-08-14 08:59:21', '2023-08-14 08:59:21', NULL),
(265, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl in a red dress with flowing hair and delicate facial features --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 66, 0, '2023-08-14 08:59:22', '2023-08-14 08:59:22', NULL),
(266, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 42, 0, '2023-08-14 09:25:31', '2023-08-14 09:25:31', NULL),
(267, 4, '32749c30-2bcd-46ab-9c6b-7b548f930575', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl with red dress, HD portrait, flowing long hair, delicate facial features --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 09:25:34', '2023-08-14 09:25:34', NULL),
(268, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 42, 0, '2023-08-14 09:32:50', '2023-08-14 09:32:50', NULL),
(269, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl, red dress, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 09:32:52', '2023-08-14 09:32:52', NULL),
(270, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩紫色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 09:36:26', '2023-08-14 09:36:26', NULL),
(271, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl with purple clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 09:36:28', '2023-08-14 09:36:28', NULL),
(272, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩黄色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 09:52:23', '2023-08-14 09:52:23', NULL),
(273, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl, yellow dress, HD portrait, flowing hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 70, 0, '2023-08-14 09:52:24', '2023-08-14 09:52:24', NULL),
(274, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩紫色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 09:56:57', '2023-08-14 09:56:57', NULL),
(275, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl in purple dress with flowing long hair and delicate facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 65, 0, '2023-08-14 09:56:59', '2023-08-14 09:56:59', NULL),
(276, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩黄色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 10:03:07', '2023-08-14 10:03:07', NULL),
(277, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl with yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 10:03:09', '2023-08-14 10:03:09', NULL),
(278, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩青色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 10:12:27', '2023-08-14 10:12:27', NULL),
(279, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl, blue clothes, HD portrait, flowing long hair, exquisite facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 10:12:32', '2023-08-14 10:12:32', NULL),
(280, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140468195384373259\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587649039654.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140468194704900116/lal603743923_Chinese_girl_blue_clothes_HD_portrait_flowing_long_6a7819f6-f3e0-4ebc-b26f-a031c537ef04.png\",\"filename\":\"lal603743923_Chinese_girl_blue_clothes_HD_portrait_flowing_long_6a7819f6-f3e0-4ebc-b26f-a031c537ef04.png\",\"width\":1792,\"height\":2688,\"size\":7263494,\"hash\":\"6a7819f6-f3e0-4ebc-b26f-a031c537ef04\"},\"content\":\"**Chinese girl, blue clothes, HD portrait, flowing long hair, exquisite facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese girl, blue clothes, HD portrait, flowing long hair, exquisite facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"dfb543494e12846f331b11f1020f7c94c59a0faf8180e0c87cd768aaba84562a\"}', 0, 0, '2023-08-14 10:13:35', '2023-08-21 11:14:09', NULL),
(281, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 14:45:52', '2023-08-14 14:45:52', NULL),
(282, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl with red clothes, HD portrait, flowing long hair, and delicate facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 75, 0, '2023-08-14 14:45:54', '2023-08-14 14:45:54', NULL),
(283, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 14:56:29', '2023-08-14 14:56:29', NULL),
(284, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 73, 0, '2023-08-14 14:56:33', '2023-08-14 14:56:33', NULL),
(285, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140539518437568564\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587650830284.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140539517938434058/lal603743923_Chinese_girl_with_red_clothes_HD_portrait_flowing__28335d39-f19f-4058-8e1b-2d57dd752159.png\",\"filename\":\"lal603743923_Chinese_girl_with_red_clothes_HD_portrait_flowing__28335d39-f19f-4058-8e1b-2d57dd752159.png\",\"width\":1792,\"height\":2688,\"size\":7225661,\"hash\":\"28335d39-f19f-4058-8e1b-2d57dd752159\"},\"content\":\"**Chinese girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"a7b5a5b3320c3edd29be375a87c9603f08c4df42f66ec9c83b92a91c80f428e2\"}', 0, 0, '2023-08-14 15:04:48', '2023-08-21 11:14:11', NULL),
(286, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩红色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 15:10:43', '2023-08-14 15:10:43', NULL),
(287, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl, red dress, HD portrait, flowing long hair, exquisite facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 15:10:45', '2023-08-14 15:10:45', NULL),
(288, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩黄色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 15:12:29', '2023-08-14 15:12:29', NULL),
(289, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)', 73, 0, '2023-08-14 15:12:31', '2023-08-14 15:12:31', NULL),
(290, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国女孩黄色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 43, 0, '2023-08-14 15:18:06', '2023-08-14 15:18:06', NULL),
(291, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 15:18:07', '2023-08-14 15:18:07', NULL);
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(292, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140545106521370725\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587654203576.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140545105900621924/lal603743923_Chinese_girl_yellow_clothes_HD_portrait_flowing_lo_5f99b271-a1f7-4fe3-87af-c297f16763ec.png\",\"filename\":\"lal603743923_Chinese_girl_yellow_clothes_HD_portrait_flowing_lo_5f99b271-a1f7-4fe3-87af-c297f16763ec.png\",\"width\":1792,\"height\":2688,\"size\":7286317,\"hash\":\"5f99b271-a1f7-4fe3-87af-c297f16763ec\"},\"content\":\"**Chinese girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"f7cac9e1bedfd7d83901dd39d15f942b6cff3dfe6a62a918b59e4bb68559026a\"}', 0, 0, '2023-08-14 15:19:13', '2023-08-21 11:14:14', NULL),
(293, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画韩国女孩黄色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 46, 0, '2023-08-14 15:24:58', '2023-08-14 15:24:58', NULL),
(294, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Korean girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 74, 0, '2023-08-14 15:24:59', '2023-08-14 15:24:59', NULL),
(295, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140546729540857906\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587655910925.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140546723886931998/lal603743923_Korean_girl_yellow_clothes_HD_portrait_flowing_lon_ce74709a-4f43-4418-9418-8d0a344a8311.png\",\"filename\":\"lal603743923_Korean_girl_yellow_clothes_HD_portrait_flowing_lon_ce74709a-4f43-4418-9418-8d0a344a8311.png\",\"width\":1792,\"height\":2688,\"size\":7991714,\"hash\":\"ce74709a-4f43-4418-9418-8d0a344a8311\"},\"content\":\"**Korean girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Korean girl, yellow clothes, HD portrait, flowing long hair, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"5d7fb8a4bd327ea8d306c32c8a59e6fe95748751c8b4fba8e4ed6b161e828bc3\"}', 0, 0, '2023-08-14 15:25:40', '2023-08-21 11:14:16', NULL),
(296, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画韩国女孩白色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 46, 0, '2023-08-14 15:33:41', '2023-08-14 15:33:41', NULL),
(297, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Korean girl with white clothes and flowing long hair, beautifully depicted facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 71, 0, '2023-08-14 15:33:42', '2023-08-14 15:33:42', NULL),
(298, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140549053701169202\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587659713968.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140549052996522004/lal603743923_A_Korean_girl_with_white_clothes_and_flowing_long__8dbb57cd-ad4d-4302-8c2e-5104d06289a6.png\",\"filename\":\"lal603743923_A_Korean_girl_with_white_clothes_and_flowing_long__8dbb57cd-ad4d-4302-8c2e-5104d06289a6.png\",\"width\":1792,\"height\":2688,\"size\":7137935,\"hash\":\"8dbb57cd-ad4d-4302-8c2e-5104d06289a6\"},\"content\":\"**A Korean girl with white clothes and flowing long hair, beautifully depicted facial features. --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A Korean girl with white clothes and flowing long hair, beautifully depicted facial features. --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"afee9d4adfd4076c0f5c0701cbac75c35b45fe114e95c664eeaababcb351fd9b\"}', 0, 0, '2023-08-14 15:34:54', '2023-08-21 11:14:20', NULL),
(299, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画韩国女孩红色的衣服HD portrait飘逸的长发精致的五官刻画。2:3', 46, 0, '2023-08-14 15:38:24', '2023-08-14 15:38:24', NULL),
(300, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Korean girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 75, 0, '2023-08-14 15:38:26', '2023-08-14 15:38:26', NULL),
(301, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140550127782735884\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587663619214.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140550127157788722/lal603743923_Korean_girl_with_red_clothes_HD_portrait_flowing_l_52496234-7d42-431b-a10c-ff9bffb9e7fa.png\",\"filename\":\"lal603743923_Korean_girl_with_red_clothes_HD_portrait_flowing_l_52496234-7d42-431b-a10c-ff9bffb9e7fa.png\",\"width\":1792,\"height\":2688,\"size\":6960265,\"hash\":\"52496234-7d42-431b-a10c-ff9bffb9e7fa\"},\"content\":\"**Korean girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Korean girl with red clothes, HD portrait, flowing long hair, delicate facial features. --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"670eecb797fb2adf19a5bc01dbb914aee4d3948a2f3d3c75a3150c597631770d\"}', 0, 0, '2023-08-14 15:39:10', '2023-08-21 11:14:24', NULL),
(302, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红色的衣服HD portrait精致的五官刻画。2:3', 38, 0, '2023-08-14 15:53:45', '2023-08-14 15:53:45', NULL),
(303, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient girl, wearing a red dress, HD portrait, delicate facial features. --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 71, 0, '2023-08-14 15:53:47', '2023-08-14 15:53:47', NULL),
(304, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140553991416197180\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587665416281.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140553990854156429/lal603743923_Chinese_ancient_girl_wearing_a_red_dress_HD_portra_62e07db1-7fd1-40f0-aadc-ead647b019a5.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_wearing_a_red_dress_HD_portra_62e07db1-7fd1-40f0-aadc-ead647b019a5.png\",\"width\":1792,\"height\":2688,\"size\":7399291,\"hash\":\"62e07db1-7fd1-40f0-aadc-ead647b019a5\"},\"content\":\"**Chinese ancient girl, wearing a red dress, HD portrait, delicate facial features. --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl, wearing a red dress, HD portrait, delicate facial features. --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"56cde415778c2d7a9f467c4464d9315fb226c05632e93e2801a2157d00cc3fca\"}', 0, 0, '2023-08-14 15:54:31', '2023-08-21 11:14:25', NULL),
(305, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩绿色的衣服HD portrait精致的五官刻画。2:3', 38, 0, '2023-08-14 15:56:53', '2023-08-14 15:56:53', NULL),
(306, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient costume girl, green clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 68, 0, '2023-08-14 15:56:56', '2023-08-14 15:56:56', NULL),
(307, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140555076587503736\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587667005434.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140555076021260348/lal603743923_Chinese_ancient_costume_girl_green_clothes_HD_port_7403b354-2bfa-475f-92c2-32f0aa912577.png\",\"filename\":\"lal603743923_Chinese_ancient_costume_girl_green_clothes_HD_port_7403b354-2bfa-475f-92c2-32f0aa912577.png\",\"width\":1792,\"height\":2688,\"size\":7666290,\"hash\":\"7403b354-2bfa-475f-92c2-32f0aa912577\"},\"content\":\"**Chinese ancient costume girl, green clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient costume girl, green clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"55e8a550b1d4dde92ac72d6be5e452f6a358ef718bac4f9384e21eae1b7418dc\"}', 0, 0, '2023-08-14 15:58:50', '2023-08-21 11:14:27', NULL),
(308, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一只可爱的小猫带着白色的帽子。3:2', 30, 0, '2023-08-14 16:03:34', '2023-08-14 16:03:34', NULL),
(309, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A cute little cat with a white hat. --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 55, 0, '2023-08-14 16:03:37', '2023-08-14 16:03:37', NULL),
(310, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140556545084625017\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587668471829.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140556544442892349/lal603743923_A_cute_little_cat_with_a_white_hat._ca14bfff-4e42-45d1-a35a-ae9a45fabd52.png\",\"filename\":\"lal603743923_A_cute_little_cat_with_a_white_hat._ca14bfff-4e42-45d1-a35a-ae9a45fabd52.png\",\"width\":2688,\"height\":1792,\"size\":5761381,\"hash\":\"ca14bfff-4e42-45d1-a35a-ae9a45fabd52\"},\"content\":\"**A cute little cat with a white hat. --ar 3:2 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A cute little cat with a white hat. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"f9585f6665ae97d1b12cc9a03ef1ed3d827462d3ef383bd4b8ce44a4e8ab5de8\"}', 0, 0, '2023-08-14 16:04:40', '2023-08-21 11:14:29', NULL),
(311, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一只可爱的小狗带着白色的帽子。3:2', 30, 0, '2023-08-14 16:11:30', '2023-08-14 16:11:30', NULL),
(312, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)', 57, 0, '2023-08-14 16:14:14', '2023-08-14 16:14:14', NULL),
(313, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一只可爱的小狗带着白色的帽子。3:2', 30, 0, '2023-08-14 16:15:11', '2023-08-14 16:15:11', NULL),
(314, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)', 54, 0, '2023-08-14 16:15:14', '2023-08-14 16:15:14', NULL),
(315, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画一只可爱的小狗带着白色的帽子。3:2', 30, 0, '2023-08-14 16:15:59', '2023-08-14 16:15:59', NULL),
(316, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A cute little dog with a white hat. --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 57, 0, '2023-08-14 16:16:00', '2023-08-14 16:16:00', NULL),
(317, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩淡蓝色的衣服HD portrait精致的五官刻画。2:3', 41, 0, '2023-08-14 16:18:49', '2023-08-14 16:18:49', NULL),
(318, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient costume girl, wearing light blue clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 72, 0, '2023-08-14 16:18:57', '2023-08-14 16:18:57', NULL),
(319, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140560407728230451\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587670319272.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140560406717407293/lal603743923_Chinese_ancient_costume_girl_wearing_light_blue_cl_8f275cb0-83b7-4638-ae32-a45d5b4df87c.png\",\"filename\":\"lal603743923_Chinese_ancient_costume_girl_wearing_light_blue_cl_8f275cb0-83b7-4638-ae32-a45d5b4df87c.png\",\"width\":1792,\"height\":2688,\"size\":7606265,\"hash\":\"8f275cb0-83b7-4638-ae32-a45d5b4df87c\"},\"content\":\"**Chinese ancient costume girl, wearing light blue clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient costume girl, wearing light blue clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"632d1a610919c1988c22b08408af5e220481da3e64d005819364fb48b69d9a8f\"}', 0, 0, '2023-08-14 16:20:01', '2023-08-21 11:14:30', NULL),
(320, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。2:3 --niji 5', 42, 0, '2023-08-14 16:48:22', '2023-08-14 16:48:22', NULL),
(321, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese Ancient Girl, red clothes, HD portrait, delicate facial features --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 82, 0, '2023-08-14 16:52:22', '2023-08-14 16:52:22', NULL),
(322, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140568772755869766\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587674082403.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140568772172845066/lal603743923_Chinese_Ancient_Girl_red_clothes_HD_portrait_delic_2bd8af1a-565f-4105-ad6e-80a310eab4c1.png\",\"filename\":\"lal603743923_Chinese_Ancient_Girl_red_clothes_HD_portrait_delic_2bd8af1a-565f-4105-ad6e-80a310eab4c1.png\",\"width\":1792,\"height\":2688,\"size\":9158543,\"hash\":\"2bd8af1a-565f-4105-ad6e-80a310eab4c1\"},\"content\":\"**Chinese Ancient Girl, red clothes, HD portrait, delicate facial features --ar 2:3 --niji 5** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese Ancient Girl, red clothes, HD portrait, delicate facial features --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"2387f214a28bbdfc27870456336ea31f2a085150f84d01716241a40ebbcbbbcb\"}', 0, 0, '2023-08-14 16:53:15', '2023-08-21 11:14:34', NULL),
(323, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国古代神话人物,白素贞,白色衣服,精致的面容,非常妩媚 3:2', 47, 0, '2023-08-14 16:58:07', '2023-08-14 16:58:07', NULL),
(324, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese ancient mythological character, Bai Suzhen, wearing white clothes with exquisite appearance and very charming. --ar 3:2 --niji %!s(<nil>) 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 81, 0, '2023-08-14 16:58:09', '2023-08-14 16:58:09', NULL),
(325, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国古代神话人物,白素贞,白色衣服,精致的面容,非常妩媚 3:2', 47, 0, '2023-08-14 17:04:04', '2023-08-14 17:04:04', NULL),
(326, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)', 85, 0, '2023-08-14 17:04:48', '2023-08-14 17:04:48', NULL),
(327, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国古代神话人物,白素贞,白色衣服,精致的面容,非常妩媚 3:2', 47, 0, '2023-08-14 17:08:34', '2023-08-14 17:08:34', NULL),
(328, 4, '4568bdf2-73d5-4806-8aae-3cb9b0f6a491', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient mythological character, Bai Suzhen, wearing a white dress, delicate facial features, very enchanting --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 82, 0, '2023-08-14 17:08:36', '2023-08-14 17:08:36', NULL),
(329, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国古代神话人物,白素贞,白色衣服,精致的面容,非常妩媚 3:2', 47, 0, '2023-08-14 17:12:25', '2023-08-14 17:12:25', NULL),
(330, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient mythological character, Bai Suzhen, wearing white clothes, exquisite face, very charming --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 78, 0, '2023-08-14 17:12:26', '2023-08-14 17:12:26', NULL),
(331, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140573777361637427\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587675637795.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140573776690556928/lal603743923_Chinese_ancient_mythological_character_Bai_Suzhen__6515f53c-c3ba-4c71-a50f-38ed1bd5a2eb.png\",\"filename\":\"lal603743923_Chinese_ancient_mythological_character_Bai_Suzhen__6515f53c-c3ba-4c71-a50f-38ed1bd5a2eb.png\",\"width\":2688,\"height\":1792,\"size\":7451517,\"hash\":\"6515f53c-c3ba-4c71-a50f-38ed1bd5a2eb\"},\"content\":\"**Chinese ancient mythological character, Bai Suzhen, wearing white clothes, exquisite face, very charming --ar 3:2 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient mythological character, Bai Suzhen, wearing white clothes, exquisite face, very charming --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"e7dad6cf99c8b99f52c3e10dd051edfa4d6e097bde0bb41ca4fc8c1f3098eeab\"}', 0, 0, '2023-08-14 17:13:08', '2023-08-21 11:14:36', NULL),
(332, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。2:3 --niji 5', 42, 0, '2023-08-14 17:26:14', '2023-08-14 17:26:14', NULL),
(333, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient girl with red clothes and delicate facial features. --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 77, 0, '2023-08-14 17:26:16', '2023-08-14 17:26:16', NULL),
(334, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140577306423853177\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587678849562.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140577306390306877/lal603743923_Chinese_ancient_girl_with_red_clothes_and_delicate_ced42131-6872-4a46-bd80-83251bb4e025.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_with_red_clothes_and_delicate_ced42131-6872-4a46-bd80-83251bb4e025.png\",\"width\":1792,\"height\":2688,\"size\":8625552,\"hash\":\"ced42131-6872-4a46-bd80-83251bb4e025\"},\"content\":\"**Chinese ancient girl with red clothes and delicate facial features. --ar 2:3 --niji 5** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl with red clothes and delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"a54ad3d94a7c0f47f50ed5b1df47c1e833b7afa0433894b1ade7c0f60ec9bf9f\"}', 0, 0, '2023-08-14 17:27:10', '2023-08-21 11:14:39', NULL),
(335, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。4:3', 37, 0, '2023-08-14 17:36:50', '2023-08-14 17:36:50', NULL),
(336, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9001/api/mj/image\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)', 66, 0, '2023-08-14 17:37:12', '2023-08-14 17:37:12', NULL),
(337, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。4:3', 37, 0, '2023-08-14 17:38:34', '2023-08-14 17:38:34', NULL),
(338, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient girl with red clothes, HD portrait, delicate facial features --ar 4:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 66, 0, '2023-08-14 17:39:01', '2023-08-14 17:39:01', NULL),
(339, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140580451396894760\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587680424644.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140580450797113374/lal603743923_Chinese_ancient_girl_with_red_clothes_HD_portrait__56cb8fcf-dbfd-4b48-966c-00d970f4799d.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_with_red_clothes_HD_portrait__56cb8fcf-dbfd-4b48-966c-00d970f4799d.png\",\"width\":2464,\"height\":1856,\"size\":6739497,\"hash\":\"56cb8fcf-dbfd-4b48-966c-00d970f4799d\"},\"content\":\"**Chinese ancient girl with red clothes, HD portrait, delicate facial features --ar 4:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl with red clothes, HD portrait, delicate facial features --ar 4:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"a0c51b74a3c19d929d48f41586447b53403774955bc5a6418e9461c4da182af7\"}', 0, 0, '2023-08-14 17:39:40', '2023-08-21 11:14:40', NULL),
(340, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:一只猎豹正在追赶一头羚羊', 22, 0, '2023-08-14 17:41:50', '2023-08-14 17:41:50', NULL),
(341, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A cheetah is chasing a gazelle --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 40, 0, '2023-08-14 17:41:52', '2023-08-14 17:41:52', NULL),
(342, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140581166299230228\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587681923705.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140581163652612137/lal603743923_A_cheetah_is_chasing_a_gazelle_d39ae8f3-a34e-4663-9750-4895c2fe1527.png\",\"filename\":\"lal603743923_A_cheetah_is_chasing_a_gazelle_d39ae8f3-a34e-4663-9750-4895c2fe1527.png\",\"width\":2048,\"height\":2048,\"size\":6519474,\"hash\":\"d39ae8f3-a34e-4663-9750-4895c2fe1527\"},\"content\":\"**A cheetah is chasing a gazelle --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A cheetah is chasing a gazelle --v 5.2\",\"status\":\"Finished\",\"key\":\"f6488005341c47ae6f91ce81dc9f4e4ca06f1f98cc1157b3acd145bc6b0a0758\"}', 0, 0, '2023-08-14 17:42:30', '2023-08-21 11:14:42', NULL),
(343, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:一朵梨花压海棠', 17, 0, '2023-08-14 17:45:06', '2023-08-14 17:45:06', NULL),
(344, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A pear blossom pressing against a sea of crabapple flowers --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 44, 0, '2023-08-14 17:45:08', '2023-08-14 17:45:08', NULL),
(345, 4, '402c64e7-e865-43f2-a965-1a935a23cf89', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140581997987758141\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587684640732.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140581997706747925/lal603743923_A_pear_blossom_pressing_against_a_sea_of_crabapple_be8d03fc-2a3c-4c93-a19e-d0c27e15031b.png\",\"filename\":\"lal603743923_A_pear_blossom_pressing_against_a_sea_of_crabapple_be8d03fc-2a3c-4c93-a19e-d0c27e15031b.png\",\"width\":2048,\"height\":2048,\"size\":8407339,\"hash\":\"be8d03fc-2a3c-4c93-a19e-d0c27e15031b\"},\"content\":\"**A pear blossom pressing against a sea of crabapple flowers --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A pear blossom pressing against a sea of crabapple flowers --v 5.2\",\"status\":\"Finished\",\"key\":\"6ad1a62566295b81bb7acdcf45bd4dca9e36223f6b223e208f6a8f74ccb8a91a\"}', 0, 0, '2023-08-14 17:45:49', '2023-08-21 11:14:45', NULL),
(346, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。2:3 --niji 5', 42, 0, '2023-08-14 17:52:38', '2023-08-14 17:52:38', NULL),
(347, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese ancient girl in red dress with delicate facial features. --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 77, 0, '2023-08-14 17:52:41', '2023-08-14 17:52:41', NULL),
(348, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140583956845178930\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587686492069.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140583955318448189/lal603743923_Chinese_ancient_girl_in_red_dress_with_delicate_fa_84e9e9d8-0e96-45c0-9ff0-6945be74dc3c.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_in_red_dress_with_delicate_fa_84e9e9d8-0e96-45c0-9ff0-6945be74dc3c.png\",\"width\":1792,\"height\":2688,\"size\":8535518,\"hash\":\"84e9e9d8-0e96-45c0-9ff0-6945be74dc3c\"},\"content\":\"**Chinese ancient girl in red dress with delicate facial features. --ar 2:3 --niji 5** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl in red dress with delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"5d7d21c28e2ea35ee5240d2ef3ab58bad167aac7a7dd6aabef5320c46792007b\"}', 0, 0, '2023-08-14 17:53:35', '2023-08-21 11:14:47', NULL),
(349, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:一只猎豹追逐一只羚羊', 21, 0, '2023-08-14 17:53:39', '2023-08-14 17:53:39', NULL),
(350, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A cheetah chasing an antelope --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 38, 0, '2023-08-14 17:53:41', '2023-08-14 17:53:41', NULL),
(351, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140584144204726282\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587688841276.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140584143592370228/lal603743923_A_cheetah_chasing_an_antelope_37881972-7e98-44c4-8804-10428455fed8.png\",\"filename\":\"lal603743923_A_cheetah_chasing_an_antelope_37881972-7e98-44c4-8804-10428455fed8.png\",\"width\":2048,\"height\":2048,\"size\":6878954,\"hash\":\"37881972-7e98-44c4-8804-10428455fed8\"},\"content\":\"**A cheetah chasing an antelope --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A cheetah chasing an antelope --v 5.2\",\"status\":\"Finished\",\"key\":\"eb10e68e794637bdf5cc49ca4be08bece0aba152246c8d44beefa1f04dbd1d30\"}', 0, 0, '2023-08-14 17:54:20', '2023-08-21 11:14:49', NULL),
(352, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '画一个钢铁侠开拖拉机 4:3', 17, 0, '2023-08-15 11:53:18', '2023-08-15 11:53:18', NULL),
(353, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Iron Man driving a tractor --ar 4:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 50, 0, '2023-08-15 11:53:20', '2023-08-15 11:53:20', NULL),
(354, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140855889415385259\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587691330642.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140855888643637318/lal603743923_Iron_Man_driving_a_tractor_f784922e-cde3-456c-b6c2-6de89bc8c989.png\",\"filename\":\"lal603743923_Iron_Man_driving_a_tractor_f784922e-cde3-456c-b6c2-6de89bc8c989.png\",\"width\":2464,\"height\":1856,\"size\":7478511,\"hash\":\"f784922e-cde3-456c-b6c2-6de89bc8c989\"},\"content\":\"**Iron Man driving a tractor --ar 4:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Iron Man driving a tractor --ar 4:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"49615d14077bc30d81750235084b8a155bf996f4d3fc6844fded08c837854fbf\"}', 0, 0, '2023-08-15 11:54:01', '2023-08-21 11:14:51', NULL),
(355, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140857219328520276\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587693148009.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140857219357884497/lal603743923_Iron_Man_driving_a_tractor_b75ce6c7-b13b-4d33-9b21-1a298b2a7f6a.png\",\"filename\":\"lal603743923_Iron_Man_driving_a_tractor_b75ce6c7-b13b-4d33-9b21-1a298b2a7f6a.png\",\"width\":1232,\"height\":928,\"size\":1831074,\"hash\":\"b75ce6c7-b13b-4d33-9b21-1a298b2a7f6a\"},\"content\":\"**Iron Man driving a tractor --ar 4:3 --v 5.2** - Image #4 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Iron Man driving a tractor --ar 4:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"49615d14077bc30d81750235084b8a155bf996f4d3fc6844fded08c837854fbf\"}', 0, 0, '2023-08-15 11:59:18', '2023-08-21 11:14:53', NULL),
(356, 4, 'ef48239d-56ec-4d8e-bb02-70cc7412e7b1', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140893920931348520\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587695174178.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140893920532897837/lal603743923_Iron_Man_driving_a_tractor_d1c94130-defe-4864-b7a6-90664eb3aaf2.png\",\"filename\":\"lal603743923_Iron_Man_driving_a_tractor_d1c94130-defe-4864-b7a6-90664eb3aaf2.png\",\"width\":1232,\"height\":928,\"size\":1612777,\"hash\":\"d1c94130-defe-4864-b7a6-90664eb3aaf2\"},\"content\":\"**Iron Man driving a tractor --ar 4:3 --v 5.2** - Image #1 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Iron Man driving a tractor --ar 4:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"49615d14077bc30d81750235084b8a155bf996f4d3fc6844fded08c837854fbf\"}', 0, 0, '2023-08-15 14:25:08', '2023-08-21 11:14:55', NULL),
(357, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。2:3 ', 38, 0, '2023-08-15 14:30:56', '2023-08-15 14:30:56', NULL),
(358, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 89, 0, '2023-08-15 14:30:58', '2023-08-15 14:30:58', NULL),
(359, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140895616763961356\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587697988832.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140895616218714172/lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_1ec25fbd-b553-4a09-94da-4b2465ea2ce2.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_1ec25fbd-b553-4a09-94da-4b2465ea2ce2.png\",\"width\":1792,\"height\":2688,\"size\":8265847,\"hash\":\"1ec25fbd-b553-4a09-94da-4b2465ea2ce2\"},\"content\":\"**A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"ae53b680b6f4fe909deeaa55df095fd58b8c38ff6a3f271d869a438ab84023af\"}', 0, 0, '2023-08-15 14:31:52', '2023-08-21 11:14:58', NULL),
(360, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140896217044365322\",\"reference_id\":\"1140895616763961356\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587699940525.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140896216620736614/lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_44671f2e-061d-4aed-853f-5679345b250c.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_44671f2e-061d-4aed-853f-5679345b250c.png\",\"width\":896,\"height\":1344,\"size\":2110737,\"hash\":\"44671f2e-061d-4aed-853f-5679345b250c\"},\"content\":\"**A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5** - Image #4 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"ae53b680b6f4fe909deeaa55df095fd58b8c38ff6a3f271d869a438ab84023af\"}', 0, 0, '2023-08-15 14:34:15', '2023-08-21 11:15:00', NULL),
(361, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140901341435269160\",\"reference_id\":\"1140895616763961356\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587702846252.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140901341112315934/lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_07d97c1f-e2cb-4b5c-ab99-9ffce494f50d.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_07d97c1f-e2cb-4b5c-ab99-9ffce494f50d.png\",\"width\":896,\"height\":1344,\"size\":1877813,\"hash\":\"07d97c1f-e2cb-4b5c-ab99-9ffce494f50d\"},\"content\":\"**A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5** - Image #1 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"ae53b680b6f4fe909deeaa55df095fd58b8c38ff6a3f271d869a438ab84023af\"}', 0, 0, '2023-08-15 14:54:37', '2023-08-21 11:15:03', NULL),
(362, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140902595305689169\",\"reference_id\":\"1140895616763961356\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587704206218.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140902595192438876/lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_be8102c4-2a3d-4f56-b1e9-0c0e5d0068cd.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_ancient_costume_with_red_clothes_be8102c4-2a3d-4f56-b1e9-0c0e5d0068cd.png\",\"width\":896,\"height\":1344,\"size\":2023523,\"hash\":\"be8102c4-2a3d-4f56-b1e9-0c0e5d0068cd\"},\"content\":\"**A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese girl in ancient costume with red clothes, HD portrait, delicate facial features. --ar 2:3 --niji 5\",\"status\":\"Finished\",\"key\":\"ae53b680b6f4fe909deeaa55df095fd58b8c38ff6a3f271d869a438ab84023af\"}', 0, 0, '2023-08-15 14:59:36', '2023-08-21 11:15:04', NULL),
(363, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你好', 2, 1, '2023-08-15 14:59:57', '2023-08-15 14:59:57', NULL),
(364, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么问题我可以帮到你吗?', 17, 1, '2023-08-15 15:00:00', '2023-08-15 15:00:00', NULL),
(365, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国古装女孩红的衣服HD portrait精致的五官刻画。2:3', 37, 0, '2023-08-15 15:01:17', '2023-08-15 15:01:17', NULL),
(366, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '【绘画任务发布】Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 66, 0, '2023-08-15 15:01:19', '2023-08-15 15:01:19', NULL),
(367, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140903205874716762\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587707334450.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140903205178441728/lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_cff91394-756a-462e-b5cd-f2e162f76c69.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_cff91394-756a-462e-b5cd-f2e162f76c69.png\",\"width\":1792,\"height\":2688,\"size\":7795471,\"hash\":\"cff91394-756a-462e-b5cd-f2e162f76c69\"},\"content\":\"**Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"b38884a6fb5e87849bfcf40e3bd1d35379b7e409f3e83df0cc98898eb75d0d09\"}', 0, 0, '2023-08-15 15:02:01', '2023-08-21 11:15:07', NULL),
(368, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140903364004155452\",\"reference_id\":\"1140903205874716762\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587708530053.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140903363668627566/lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_b223d31e-96b8-4f74-8e96-7b27eb99e4d4.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_b223d31e-96b8-4f74-8e96-7b27eb99e4d4.png\",\"width\":896,\"height\":1344,\"size\":1707397,\"hash\":\"b223d31e-96b8-4f74-8e96-7b27eb99e4d4\"},\"content\":\"**Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"b38884a6fb5e87849bfcf40e3bd1d35379b7e409f3e83df0cc98898eb75d0d09\"}', 0, 0, '2023-08-15 15:02:39', '2023-08-21 11:15:09', NULL),
(369, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'Hello', 1, 1, '2023-08-15 15:09:40', '2023-08-15 15:09:40', NULL),
(370, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-08-15 15:09:42', '2023-08-15 15:09:42', NULL),
(371, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你谁谁?', 6, 1, '2023-08-15 15:14:03', '2023-08-15 15:14:03', NULL),
(372, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '我是你的助手,你可以称呼我为\"助手\"。有什么可以帮到你的吗?', 34, 1, '2023-08-15 15:14:05', '2023-08-15 15:14:05', NULL),
(373, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140906565092774010\",\"reference_id\":\"1140903205874716762\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587709557777.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140906565130518528/lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_3f234b55-2ed3-4d94-998f-1eee13f96c97.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_3f234b55-2ed3-4d94-998f-1eee13f96c97.png\",\"width\":896,\"height\":1344,\"size\":1818658,\"hash\":\"3f234b55-2ed3-4d94-998f-1eee13f96c97\"},\"content\":\"**Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - Image #1 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"b38884a6fb5e87849bfcf40e3bd1d35379b7e409f3e83df0cc98898eb75d0d09\"}', 0, 0, '2023-08-15 15:15:22', '2023-08-21 11:15:10', NULL),
(374, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '画一条中国龙翱翔在天空', 15, 0, '2023-08-15 15:17:00', '2023-08-15 15:17:00', NULL),
(375, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese dragon soaring in the sky --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 36, 0, '2023-08-15 15:17:02', '2023-08-15 15:17:02', NULL),
(376, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140907334315544636\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587711284276.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140907333787070554/lal603743923_A_Chinese_dragon_soaring_in_the_sky_987144b6-f906-4dcb-a463-8b6bc37c8a85.png\",\"filename\":\"lal603743923_A_Chinese_dragon_soaring_in_the_sky_987144b6-f906-4dcb-a463-8b6bc37c8a85.png\",\"width\":2048,\"height\":2048,\"size\":7392092,\"hash\":\"987144b6-f906-4dcb-a463-8b6bc37c8a85\"},\"content\":\"**A Chinese dragon soaring in the sky --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A Chinese dragon soaring in the sky --v 5.2\",\"status\":\"Finished\",\"key\":\"fc91c816319a39706f7c308d55406c32379d0aa629dce373b38364b2e85822ee\"}', 0, 0, '2023-08-15 15:18:26', '2023-08-21 11:15:11', NULL),
(377, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140907610292375592\",\"reference_id\":\"1140907334315544636\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587712445404.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140907610019741756/lal603743923_A_Chinese_dragon_soaring_in_the_sky_1d2b1b27-d9a6-4575-a29b-12d8d09e4bfc.png\",\"filename\":\"lal603743923_A_Chinese_dragon_soaring_in_the_sky_1d2b1b27-d9a6-4575-a29b-12d8d09e4bfc.png\",\"width\":1024,\"height\":1024,\"size\":1584620,\"hash\":\"1d2b1b27-d9a6-4575-a29b-12d8d09e4bfc\"},\"content\":\"**A Chinese dragon soaring in the sky --v 5.2** - Image #2 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese dragon soaring in the sky --v 5.2\",\"status\":\"Finished\",\"key\":\"fc91c816319a39706f7c308d55406c32379d0aa629dce373b38364b2e85822ee\"}', 0, 0, '2023-08-15 15:19:31', '2023-08-21 11:15:12', NULL),
(378, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画马斯克开着拖拉机走在乡间的下路上20 世纪,中国农村', 40, 0, '2023-08-15 15:24:38', '2023-08-15 15:24:38', NULL),
(379, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Elon Musk riding a tractor in a rural area in 20th century China --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 53, 0, '2023-08-15 15:24:40', '2023-08-15 15:24:40', NULL),
(380, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140909099035398195\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587715795450.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140909098737598484/lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_59559f8d-e45d-446f-a53d-16b8d72b2b0b.png\",\"filename\":\"lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_59559f8d-e45d-446f-a53d-16b8d72b2b0b.png\",\"width\":2048,\"height\":2048,\"size\":7270055,\"hash\":\"59559f8d-e45d-446f-a53d-16b8d72b2b0b\"},\"content\":\"**Elon Musk riding a tractor in a rural area in 20th century China --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Elon Musk riding a tractor in a rural area in 20th century China --v 5.2\",\"status\":\"Finished\",\"key\":\"f7fddd8d517038b9039bd796c7e683eaf1b4fbe0688b6f3203f4114f903bbd22\"}', 0, 0, '2023-08-15 15:25:26', '2023-08-21 11:15:16', NULL),
(381, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140909332473598023\",\"reference_id\":\"1140909099035398195\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587718004981.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140909332150624356/lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_9f8483e4-c2a4-40f9-87ca-ba58a3387049.png\",\"filename\":\"lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_9f8483e4-c2a4-40f9-87ca-ba58a3387049.png\",\"width\":1024,\"height\":1024,\"size\":1548125,\"hash\":\"9f8483e4-c2a4-40f9-87ca-ba58a3387049\"},\"content\":\"**Elon Musk riding a tractor in a rural area in 20th century China --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Elon Musk riding a tractor in a rural area in 20th century China --v 5.2\",\"status\":\"Finished\",\"key\":\"f7fddd8d517038b9039bd796c7e683eaf1b4fbe0688b6f3203f4114f903bbd22\"}', 0, 0, '2023-08-15 15:26:22', '2023-08-21 11:15:18', NULL),
(382, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140913349727629424\",\"reference_id\":\"1140903205874716762\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587722327270.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140913349534683156/lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_40faa3d2-25ca-4771-9b25-332ca8b9b329.png\",\"filename\":\"lal603743923_Chinese_ancient_girl_red_clothes_HD_portrait_delic_40faa3d2-25ca-4771-9b25-332ca8b9b329.png\",\"width\":1792,\"height\":2688,\"size\":7595049,\"hash\":\"40faa3d2-25ca-4771-9b25-332ca8b9b329\"},\"content\":\"**Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2** - Variations (Strong) by \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese ancient girl, red clothes, HD portrait, delicate facial features --ar 2:3 --v 5.2\",\"status\":\"Finished\",\"key\":\"b38884a6fb5e87849bfcf40e3bd1d35379b7e409f3e83df0cc98898eb75d0d09\"}', 0, 0, '2023-08-15 15:42:20', '2023-08-21 11:15:22', NULL),
(383, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140915608893005895\",\"reference_id\":\"1140909099035398195\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587730429502.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140915608356139028/lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_7a1531c9-74c4-4b13-af49-b6c285f4c482.png\",\"filename\":\"lal603743923_Elon_Musk_riding_a_tractor_in_a_rural_area_in_20th_7a1531c9-74c4-4b13-af49-b6c285f4c482.png\",\"width\":2048,\"height\":2048,\"size\":7053735,\"hash\":\"7a1531c9-74c4-4b13-af49-b6c285f4c482\"},\"content\":\"**Elon Musk riding a tractor in a rural area in 20th century China --v 5.2** - Variations (Strong) by \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Elon Musk riding a tractor in a rural area in 20th century China --v 5.2\",\"status\":\"Finished\",\"key\":\"f7fddd8d517038b9039bd796c7e683eaf1b4fbe0688b6f3203f4114f903bbd22\"}', 0, 0, '2023-08-15 15:51:18', '2023-08-21 11:15:30', NULL),
(384, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画Beautiful girl, concept art, 8k intricate details, fairytale style,', 21, 0, '2023-08-15 15:54:52', '2023-08-15 15:54:52', NULL),
(385, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Beautiful girl concept art fairytale style --ar 16:9 --niji 5 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 69, 0, '2023-08-15 15:54:54', '2023-08-15 15:54:54', NULL);
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(386, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140916746455367730\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587732047872.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140916745742331924/lal603743923_Beautiful_girl_concept_art_fairytale_style_ebb9433a-2f9d-4e22-9433-a6b904aaa3ee.png\",\"filename\":\"lal603743923_Beautiful_girl_concept_art_fairytale_style_ebb9433a-2f9d-4e22-9433-a6b904aaa3ee.png\",\"width\":2912,\"height\":1632,\"size\":7757131,\"hash\":\"ebb9433a-2f9d-4e22-9433-a6b904aaa3ee\"},\"content\":\"**Beautiful girl concept art fairytale style --ar 16:9 --niji 5** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Beautiful girl concept art fairytale style --ar 16:9 --niji 5\",\"status\":\"Finished\",\"key\":\"c81d65c8f40b8b85efeee192d7a0927611f773436a5ff19eec627aa83054f8c1\"}', 0, 0, '2023-08-15 15:55:50', '2023-08-21 11:15:32', NULL),
(387, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-08-15 15:59:37', '2023-08-15 15:59:37', NULL),
(388, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-08-15 15:59:39', '2023-08-15 15:59:39', NULL),
(389, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140917818271998014\",\"reference_id\":\"1140916746455367730\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587734675591.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140917817949040641/lal603743923_Beautiful_girl_concept_art_fairytale_style_a26662f0-ecbb-4f07-bb99-5cffb4ac1b2c.png\",\"filename\":\"lal603743923_Beautiful_girl_concept_art_fairytale_style_a26662f0-ecbb-4f07-bb99-5cffb4ac1b2c.png\",\"width\":1456,\"height\":816,\"size\":2047920,\"hash\":\"a26662f0-ecbb-4f07-bb99-5cffb4ac1b2c\"},\"content\":\"**Beautiful girl concept art fairytale style --ar 16:9 --niji 5** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Beautiful girl concept art fairytale style --ar 16:9 --niji 5\",\"status\":\"Finished\",\"key\":\"c81d65c8f40b8b85efeee192d7a0927611f773436a5ff19eec627aa83054f8c1\"}', 0, 0, '2023-08-15 16:00:05', '2023-08-21 11:15:35', NULL),
(390, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画Beautiful girl, concept art, 8k intricate details, fairytale style,', 21, 0, '2023-08-15 16:11:00', '2023-08-15 16:11:00', NULL),
(391, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词beautiful girl, concept art, fairytale style --ar 16:9 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 60, 0, '2023-08-15 16:11:02', '2023-08-15 16:11:02', NULL),
(392, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140920759439609947\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587736277639.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140920758537830460/lal603743923_beautiful_girl_concept_art_fairytale_style_bc4343fd-bb02-4bc0-af61-588eb7adc4d4.png\",\"filename\":\"lal603743923_beautiful_girl_concept_art_fairytale_style_bc4343fd-bb02-4bc0-af61-588eb7adc4d4.png\",\"width\":2912,\"height\":1632,\"size\":7293793,\"hash\":\"bc4343fd-bb02-4bc0-af61-588eb7adc4d4\"},\"content\":\"**beautiful girl, concept art, fairytale style --ar 16:9 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"beautiful girl, concept art, fairytale style --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"6c3da517c4561ce61114b01eee7b064c4ca2b3b8cc3f85ccfbf6f39397a0a8c0\"}', 0, 0, '2023-08-15 16:11:47', '2023-08-21 11:15:36', NULL),
(393, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140921838575292539\",\"reference_id\":\"1140920759439609947\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587738361796.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140921838642413658/lal603743923_beautiful_girl_concept_art_fairytale_style_81e6ea2b-458c-4797-a88a-c6ce408cd926.png\",\"filename\":\"lal603743923_beautiful_girl_concept_art_fairytale_style_81e6ea2b-458c-4797-a88a-c6ce408cd926.png\",\"width\":1456,\"height\":816,\"size\":1599849,\"hash\":\"81e6ea2b-458c-4797-a88a-c6ce408cd926\"},\"content\":\"**beautiful girl, concept art, fairytale style --ar 16:9 --v 5.2** - Image #4 \\u003c@549957079511597067\\u003e\",\"prompt\":\"beautiful girl, concept art, fairytale style --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"6c3da517c4561ce61114b01eee7b064c4ca2b3b8cc3f85ccfbf6f39397a0a8c0\"}', 0, 0, '2023-08-15 16:16:04', '2023-08-21 11:15:38', NULL),
(394, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画Beautiful girl, concept art, 8k intricate details, fairytale style,', 21, 0, '2023-08-15 16:17:20', '2023-08-15 16:17:20', NULL),
(395, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful girl with intricate details, in a fairytale style concept art. --ar 16:9 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 71, 0, '2023-08-15 16:17:21', '2023-08-15 16:17:21', NULL),
(396, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140922421013131326\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587741894209.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140922420526579722/lal603743923_A_beautiful_girl_with_intricate_details_in_a_fairy_fd3db183-5de0-4839-8589-a973be14d6fe.png\",\"filename\":\"lal603743923_A_beautiful_girl_with_intricate_details_in_a_fairy_fd3db183-5de0-4839-8589-a973be14d6fe.png\",\"width\":2912,\"height\":1632,\"size\":8345839,\"hash\":\"fd3db183-5de0-4839-8589-a973be14d6fe\"},\"content\":\"**A beautiful girl with intricate details, in a fairytale style concept art. --ar 16:9 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A beautiful girl with intricate details, in a fairytale style concept art. --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"6d4ffd2fc846fb46c96bb243f7f823f056f599cefdb5a3df75e0af856c833603\"}', 0, 0, '2023-08-15 16:18:23', '2023-08-21 11:15:42', NULL),
(397, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画A chinese girl in a red dress in the style of fantasy art work, surreal', 20, 0, '2023-08-15 16:24:11', '2023-08-15 16:24:11', NULL),
(398, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 54, 0, '2023-08-15 16:24:13', '2023-08-15 16:24:13', NULL),
(399, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140924036168290356\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587744895840.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140924035597860914/lal603743923_A_Chinese_girl_in_a_red_dress_in_the_style_of_fant_0d42e507-cfb3-4600-9cbd-d3729123c937.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_a_red_dress_in_the_style_of_fant_0d42e507-cfb3-4600-9cbd-d3729123c937.png\",\"width\":2048,\"height\":2048,\"size\":7211343,\"hash\":\"0d42e507-cfb3-4600-9cbd-d3729123c937\"},\"content\":\"**A Chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A Chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2\",\"status\":\"Finished\",\"key\":\"14f2bb9f3dec02b783fa196c66b6ecb8c9bf35ac2841928082416d32fd2cc450\"}', 0, 0, '2023-08-15 16:24:48', '2023-08-21 11:15:45', NULL),
(400, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140924158537109525\",\"reference_id\":\"1140924036168290356\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587746057205.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140924158226726972/lal603743923_A_Chinese_girl_in_a_red_dress_in_the_style_of_fant_1d31faea-5d39-404b-8a4c-139c4ab935fe.png\",\"filename\":\"lal603743923_A_Chinese_girl_in_a_red_dress_in_the_style_of_fant_1d31faea-5d39-404b-8a4c-139c4ab935fe.png\",\"width\":1024,\"height\":1024,\"size\":1663145,\"hash\":\"1d31faea-5d39-404b-8a4c-139c4ab935fe\"},\"content\":\"**A Chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2** - Image #1 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2\",\"status\":\"Finished\",\"key\":\"14f2bb9f3dec02b783fa196c66b6ecb8c9bf35ac2841928082416d32fd2cc450\"}', 0, 0, '2023-08-15 16:25:17', '2023-08-21 11:15:46', NULL),
(401, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画Girl with flowers on her head, beautiful and beautiful, art photo', 17, 0, '2023-08-15 16:46:28', '2023-08-15 16:46:28', NULL),
(402, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A girl with flowers on her head, beautiful and artistic photo --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 46, 0, '2023-08-15 16:46:29', '2023-08-15 16:46:29', NULL),
(403, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140929853273686017\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587747644706.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140929852669689927/lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_00795262-f3d6-437d-86c5-1612905e052d.png\",\"filename\":\"lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_00795262-f3d6-437d-86c5-1612905e052d.png\",\"width\":2048,\"height\":2048,\"size\":7901161,\"hash\":\"00795262-f3d6-437d-86c5-1612905e052d\"},\"content\":\"**A girl with flowers on her head, beautiful and artistic photo --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A girl with flowers on her head, beautiful and artistic photo --v 5.2\",\"status\":\"Finished\",\"key\":\"d4ec1e11c756bdebb059c0448572dc45ae39e1b79f2a368c8b5bc8d3063c1a64\"}', 0, 0, '2023-08-15 16:47:55', '2023-08-21 11:15:48', NULL),
(404, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140930408691802112\",\"reference_id\":\"1140929853273686017\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587749107459.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140930408343666688/lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_cc45ac11-a667-4631-a81d-4ec47e60c40e.png\",\"filename\":\"lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_cc45ac11-a667-4631-a81d-4ec47e60c40e.png\",\"width\":1024,\"height\":1024,\"size\":1906185,\"hash\":\"cc45ac11-a667-4631-a81d-4ec47e60c40e\"},\"content\":\"**A girl with flowers on her head, beautiful and artistic photo --v 5.2** - Image #4 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A girl with flowers on her head, beautiful and artistic photo --v 5.2\",\"status\":\"Finished\",\"key\":\"d4ec1e11c756bdebb059c0448572dc45ae39e1b79f2a368c8b5bc8d3063c1a64\"}', 0, 0, '2023-08-15 16:50:07', '2023-08-21 11:15:49', NULL),
(405, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140931870503227474\",\"reference_id\":\"1140929853273686017\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587750099914.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140931870012477460/lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_c9f11d26-3b23-4f81-b207-8be626840e62.png\",\"filename\":\"lal603743923_A_girl_with_flowers_on_her_head_beautiful_and_arti_c9f11d26-3b23-4f81-b207-8be626840e62.png\",\"width\":1024,\"height\":1024,\"size\":1806977,\"hash\":\"c9f11d26-3b23-4f81-b207-8be626840e62\"},\"content\":\"**A girl with flowers on her head, beautiful and artistic photo --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A girl with flowers on her head, beautiful and artistic photo --v 5.2\",\"status\":\"Finished\",\"key\":\"d4ec1e11c756bdebb059c0448572dc45ae39e1b79f2a368c8b5bc8d3063c1a64\"}', 0, 0, '2023-08-15 16:55:56', '2023-08-21 11:15:50', NULL),
(406, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画Chinese girl with flowers on her head, beautiful and beautiful, art photo', 18, 0, '2023-08-15 16:56:27', '2023-08-15 16:56:27', NULL),
(407, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese girl with flowers on her head, beautiful and elegant, art photo --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 50, 0, '2023-08-15 16:56:30', '2023-08-15 16:56:30', NULL),
(408, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140932221767782410\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587752228235.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140932221235122176/lal603743923_Chinese_girl_with_flowers_on_her_head_beautiful_an_e1487cb5-654e-474f-8a4a-af91c7abcaab.png\",\"filename\":\"lal603743923_Chinese_girl_with_flowers_on_her_head_beautiful_an_e1487cb5-654e-474f-8a4a-af91c7abcaab.png\",\"width\":2048,\"height\":2048,\"size\":7072312,\"hash\":\"e1487cb5-654e-474f-8a4a-af91c7abcaab\"},\"content\":\"**Chinese girl with flowers on her head, beautiful and elegant, art photo --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese girl with flowers on her head, beautiful and elegant, art photo --v 5.2\",\"status\":\"Finished\",\"key\":\"fe95e528feb0f71c73cb4fa772aa2446cf70ed6e317fb762a78dd7f4a518585e\"}', 0, 0, '2023-08-15 16:57:19', '2023-08-21 11:15:52', NULL),
(409, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140932474499780608\",\"reference_id\":\"1140932221767782410\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587753524054.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140932474185187380/lal603743923_Chinese_girl_with_flowers_on_her_head_beautiful_an_1c4de31e-09b9-4b7a-8e0d-d834f6979625.png\",\"filename\":\"lal603743923_Chinese_girl_with_flowers_on_her_head_beautiful_an_1c4de31e-09b9-4b7a-8e0d-d834f6979625.png\",\"width\":1024,\"height\":1024,\"size\":1552699,\"hash\":\"1c4de31e-09b9-4b7a-8e0d-d834f6979625\"},\"content\":\"**Chinese girl with flowers on her head, beautiful and elegant, art photo --v 5.2** - Image #1 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Chinese girl with flowers on her head, beautiful and elegant, art photo --v 5.2\",\"status\":\"Finished\",\"key\":\"fe95e528feb0f71c73cb4fa772aa2446cf70ed6e317fb762a78dd7f4a518585e\"}', 0, 0, '2023-08-15 16:58:20', '2023-08-21 11:15:54', NULL),
(410, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画A chinese girl in a red dress in the style of fantasy art work, surreal', 20, 0, '2023-08-15 17:04:04', '2023-08-15 17:04:04', NULL),
(411, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 54, 0, '2023-08-15 17:04:05', '2023-08-15 17:04:05', NULL),
(412, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140934083761946624\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587754853267.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140934083006959687/lal603743923_A_chinese_girl_in_a_red_dress_in_the_style_of_fant_07437bc7-8796-4908-a12d-e9a453044e39.png\",\"filename\":\"lal603743923_A_chinese_girl_in_a_red_dress_in_the_style_of_fant_07437bc7-8796-4908-a12d-e9a453044e39.png\",\"width\":2048,\"height\":2048,\"size\":7242421,\"hash\":\"07437bc7-8796-4908-a12d-e9a453044e39\"},\"content\":\"**A chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2\",\"status\":\"Finished\",\"key\":\"099db6e300f2c2f2c964de725fae9cdf0ecfe48c0c17363724aec1a460565722\"}', 0, 0, '2023-08-15 17:04:43', '2023-08-21 11:15:55', NULL),
(413, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140934263475281940\",\"reference_id\":\"1140934083761946624\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587756295928.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140934263164907560/lal603743923_A_chinese_girl_in_a_red_dress_in_the_style_of_fant_f9acbd52-e4e2-4098-bbfc-f12a735ee89a.png\",\"filename\":\"lal603743923_A_chinese_girl_in_a_red_dress_in_the_style_of_fant_f9acbd52-e4e2-4098-bbfc-f12a735ee89a.png\",\"width\":1024,\"height\":1024,\"size\":1625124,\"hash\":\"f9acbd52-e4e2-4098-bbfc-f12a735ee89a\"},\"content\":\"**A chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A chinese girl in a red dress in the style of fantasy art work, surreal --v 5.2\",\"status\":\"Finished\",\"key\":\"099db6e300f2c2f2c964de725fae9cdf0ecfe48c0c17363724aec1a460565722\"}', 0, 0, '2023-08-15 17:05:26', '2023-08-21 11:15:56', NULL),
(414, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:一个穿着淡蓝色连衣裙的中国女孩,奇幻艺术作品风格,超现实主义 3:2', 49, 0, '2023-08-15 17:06:07', '2023-08-15 17:06:07', NULL),
(415, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl wearing a light blue dress in a surrealistic fantasy art style --ar 3:2 --niji 2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 86, 0, '2023-08-15 17:06:09', '2023-08-15 17:06:09', NULL),
(416, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:一个穿着淡蓝色连衣裙的中国女孩,奇幻艺术作品风格,超现实主义 3:2', 49, 0, '2023-08-15 17:07:46', '2023-08-15 17:07:46', NULL),
(417, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Chinese girl wearing a light blue dress in surrealistic art style --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 66, 0, '2023-08-15 17:07:48', '2023-08-15 17:07:48', NULL),
(418, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140935399649312859\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587759114322.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140935399057924146/lal603743923_A_Chinese_girl_wearing_a_light_blue_dress_in_surre_6bf76cd4-ea23-432e-a125-3c1c430bb6cd.png\",\"filename\":\"lal603743923_A_Chinese_girl_wearing_a_light_blue_dress_in_surre_6bf76cd4-ea23-432e-a125-3c1c430bb6cd.png\",\"width\":2688,\"height\":1792,\"size\":7610827,\"hash\":\"6bf76cd4-ea23-432e-a125-3c1c430bb6cd\"},\"content\":\"**A Chinese girl wearing a light blue dress in surrealistic art style --ar 3:2 --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A Chinese girl wearing a light blue dress in surrealistic art style --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"83287146fb029b354b6bd05c40919bd1c3629fadca7afc373323e0e12be93184\"}', 0, 0, '2023-08-15 17:09:57', '2023-08-21 11:15:59', NULL),
(419, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘图Girl with black cat is attractive, curious, cartoon funny style, colorful details', 19, 0, '2023-08-15 17:11:26', '2023-08-15 17:11:26', NULL),
(420, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Girl with black cat is attractive, curious, cartoon funny style, colorful details --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 52, 0, '2023-08-15 17:11:28', '2023-08-15 17:11:28', NULL),
(421, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140935982917623808\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587760526851.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140935982359773286/lal603743923_Girl_with_black_cat_is_attractive_curious_cartoon__47146dc5-7f2c-46f4-b476-7d8925e1187c.png\",\"filename\":\"lal603743923_Girl_with_black_cat_is_attractive_curious_cartoon__47146dc5-7f2c-46f4-b476-7d8925e1187c.png\",\"width\":2048,\"height\":2048,\"size\":5337581,\"hash\":\"47146dc5-7f2c-46f4-b476-7d8925e1187c\"},\"content\":\"**Girl with black cat is attractive, curious, cartoon funny style, colorful details --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Girl with black cat is attractive, curious, cartoon funny style, colorful details --v 5.2\",\"status\":\"Finished\",\"key\":\"aede58d1b9af5f1aa8647ab5aca0e97933f077273f6b2723a48b4273fc9fe1be\"}', 0, 0, '2023-08-15 17:12:16', '2023-08-21 11:16:01', NULL),
(422, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140936057198743622\",\"reference_id\":\"1140935982917623808\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587762629745.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140936056905138176/lal603743923_Girl_with_black_cat_is_attractive_curious_cartoon__775aad82-a40a-41da-84cb-3b70e2b37d38.png\",\"filename\":\"lal603743923_Girl_with_black_cat_is_attractive_curious_cartoon__775aad82-a40a-41da-84cb-3b70e2b37d38.png\",\"width\":1024,\"height\":1024,\"size\":1239915,\"hash\":\"775aad82-a40a-41da-84cb-3b70e2b37d38\"},\"content\":\"**Girl with black cat is attractive, curious, cartoon funny style, colorful details --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Girl with black cat is attractive, curious, cartoon funny style, colorful details --v 5.2\",\"status\":\"Finished\",\"key\":\"aede58d1b9af5f1aa8647ab5aca0e97933f077273f6b2723a48b4273fc9fe1be\"}', 0, 0, '2023-08-15 17:12:34', '2023-08-21 11:16:03', NULL),
(423, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘图Girl with black cat is attractive, curious, cartoon funny style, colorful details写实风格', 25, 0, '2023-08-15 17:13:14', '2023-08-15 17:13:14', NULL),
(424, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A girl with a black cat that is attractive, curious, in a funny cartoon style, with colorful details. --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 65, 0, '2023-08-15 17:13:16', '2023-08-15 17:13:16', NULL),
(425, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140936471470149724\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587764272509.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140936471235276810/lal603743923_A_girl_with_a_black_cat_that_is_attractive_curious_58016227-b8a6-464a-a25e-768830f82416.png\",\"filename\":\"lal603743923_A_girl_with_a_black_cat_that_is_attractive_curious_58016227-b8a6-464a-a25e-768830f82416.png\",\"width\":2048,\"height\":2048,\"size\":6048315,\"hash\":\"58016227-b8a6-464a-a25e-768830f82416\"},\"content\":\"**A girl with a black cat that is attractive, curious, in a funny cartoon style, with colorful details. --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A girl with a black cat that is attractive, curious, in a funny cartoon style, with colorful details. --v 5.2\",\"status\":\"Finished\",\"key\":\"254a4bee13aa8045071d8267eaf309d55197b487c2eb82c6c2ed1d61e353ba63\"}', 0, 0, '2023-08-15 17:14:13', '2023-08-21 11:16:04', NULL),
(426, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140936680048689222\",\"reference_id\":\"1140936471470149724\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587766629632.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140936679457296404/lal603743923_A_girl_with_a_black_cat_that_is_attractive_curious_6216315c-bb55-4009-a232-6cc35566e2ab.png\",\"filename\":\"lal603743923_A_girl_with_a_black_cat_that_is_attractive_curious_6216315c-bb55-4009-a232-6cc35566e2ab.png\",\"width\":2048,\"height\":2048,\"size\":5878856,\"hash\":\"6216315c-bb55-4009-a232-6cc35566e2ab\"},\"content\":\"**A girl with a black cat that is attractive, curious, in a funny cartoon style, with colorful details. --v 5.2** - Variations (Strong) by \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"A girl with a black cat that is attractive, curious, in a funny cartoon style, with colorful details. --v 5.2\",\"status\":\"Finished\",\"key\":\"254a4bee13aa8045071d8267eaf309d55197b487c2eb82c6c2ed1d61e353ba63\"}', 0, 0, '2023-08-15 17:15:02', '2023-08-21 11:16:07', NULL),
(427, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:变形金刚,大黄蜂,擎天柱', 23, 0, '2023-08-15 17:21:47', '2023-08-15 17:21:47', NULL),
(428, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Transformers, Bumblebee, Optimus Prime --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 41, 0, '2023-08-15 17:21:48', '2023-08-15 17:21:48', NULL),
(429, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140938619918491709\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587768886822.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140938619197075587/lal603743923_Transformers_Bumblebee_Optimus_Prime_22cc52a1-6d4e-43e8-8635-e6007f3247ab.png\",\"filename\":\"lal603743923_Transformers_Bumblebee_Optimus_Prime_22cc52a1-6d4e-43e8-8635-e6007f3247ab.png\",\"width\":2048,\"height\":2048,\"size\":7892339,\"hash\":\"22cc52a1-6d4e-43e8-8635-e6007f3247ab\"},\"content\":\"**Transformers, Bumblebee, Optimus Prime --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Transformers, Bumblebee, Optimus Prime --v 5.2\",\"status\":\"Finished\",\"key\":\"35b10d37a3bbe8605e977a610e1299ec1494700b6b78d4c55c0191d192ad61f2\"}', 0, 0, '2023-08-15 17:22:45', '2023-08-21 11:16:09', NULL),
(430, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140939029655863307\",\"reference_id\":\"1140938619918491709\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587771073026.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140939029475491921/lal603743923_Transformers_Bumblebee_Optimus_Prime_ba768e8c-5dd3-4dfc-a813-0c7814f0a98c.png\",\"filename\":\"lal603743923_Transformers_Bumblebee_Optimus_Prime_ba768e8c-5dd3-4dfc-a813-0c7814f0a98c.png\",\"width\":1024,\"height\":1024,\"size\":1937691,\"hash\":\"ba768e8c-5dd3-4dfc-a813-0c7814f0a98c\"},\"content\":\"**Transformers, Bumblebee, Optimus Prime --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Transformers, Bumblebee, Optimus Prime --v 5.2\",\"status\":\"Finished\",\"key\":\"35b10d37a3bbe8605e977a610e1299ec1494700b6b78d4c55c0191d192ad61f2\"}', 0, 0, '2023-08-15 17:24:23', '2023-08-21 11:16:11', NULL),
(431, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140939185658798191\",\"reference_id\":\"1140938619918491709\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587784126688.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140939185113546812/lal603743923_Transformers_Bumblebee_Optimus_Prime_9a4b4814-bb9f-4aad-b493-b8f8220a338d.png\",\"filename\":\"lal603743923_Transformers_Bumblebee_Optimus_Prime_9a4b4814-bb9f-4aad-b493-b8f8220a338d.png\",\"width\":2048,\"height\":2048,\"size\":8561096,\"hash\":\"9a4b4814-bb9f-4aad-b493-b8f8220a338d\"},\"content\":\"**Transformers, Bumblebee, Optimus Prime --v 5.2** - Variations (Strong) by \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Transformers, Bumblebee, Optimus Prime --v 5.2\",\"status\":\"Finished\",\"key\":\"35b10d37a3bbe8605e977a610e1299ec1494700b6b78d4c55c0191d192ad61f2\"}', 0, 0, '2023-08-15 17:25:00', '2023-08-21 11:16:24', NULL),
(432, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国神话人物,孙悟空', 17, 0, '2023-08-15 17:26:31', '2023-08-15 17:26:31', NULL),
(433, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese mythological character, Sun Wukong --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 39, 0, '2023-08-15 17:26:32', '2023-08-15 17:26:32', NULL),
(434, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画:中国神话人物,孙悟空', 17, 0, '2023-08-15 17:27:07', '2023-08-15 17:27:07', NULL),
(435, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Chinese mythological character: Sun Wukong --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 39, 0, '2023-08-15 17:27:09', '2023-08-15 17:27:09', NULL),
(436, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140939870878044220\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587795767727.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140939870223740928/lal603743923_Chinese_mythological_character_Sun_Wukong_e5461318-68b9-4559-9b75-fb744ad3d5ed.png\",\"filename\":\"lal603743923_Chinese_mythological_character_Sun_Wukong_e5461318-68b9-4559-9b75-fb744ad3d5ed.png\",\"width\":2048,\"height\":2048,\"size\":7563431,\"hash\":\"e5461318-68b9-4559-9b75-fb744ad3d5ed\"},\"content\":\"**Chinese mythological character, Sun Wukong --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese mythological character, Sun Wukong --v 5.2\",\"status\":\"Finished\",\"key\":\"6d4bd3b7a8d3d7c442456178553917c05e3427ee607130920333cc1354e7034d\"}', 0, 0, '2023-08-15 17:27:43', '2023-08-21 11:16:36', NULL),
(437, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140939905921458266\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587797455659.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140939905179074630/lal603743923_Chinese_mythological_character_Sun_Wukong_46225f8b-3070-495b-b0e3-896cee222210.png\",\"filename\":\"lal603743923_Chinese_mythological_character_Sun_Wukong_46225f8b-3070-495b-b0e3-896cee222210.png\",\"width\":2048,\"height\":2048,\"size\":7029471,\"hash\":\"46225f8b-3070-495b-b0e3-896cee222210\"},\"content\":\"**Chinese mythological character: Sun Wukong --v 5.2** - \\u003c@549957079511597067\\u003e (fast)\",\"prompt\":\"Chinese mythological character: Sun Wukong --v 5.2\",\"status\":\"Finished\",\"key\":\"a40d33103234416886f6718e40d21f5fb56087ee8c4b9bae3c6c7aec7c3705be\"}', 0, 0, '2023-08-15 17:27:52', '2023-08-21 11:16:37', NULL),
(438, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140940058451529769\",\"reference_id\":\"1140939870878044220\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587798556402.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140940058082414612/lal603743923_Chinese_mythological_character_Sun_Wukong_deb26c23-f71a-40eb-9c96-27b45e1b6de5.png\",\"filename\":\"lal603743923_Chinese_mythological_character_Sun_Wukong_deb26c23-f71a-40eb-9c96-27b45e1b6de5.png\",\"width\":1024,\"height\":1024,\"size\":1827890,\"hash\":\"deb26c23-f71a-40eb-9c96-27b45e1b6de5\"},\"content\":\"**Chinese mythological character, Sun Wukong --v 5.2** - Image #4 \\u003c@549957079511597067\\u003e\",\"prompt\":\"Chinese mythological character, Sun Wukong --v 5.2\",\"status\":\"Finished\",\"key\":\"6d4bd3b7a8d3d7c442456178553917c05e3427ee607130920333cc1354e7034d\"}', 0, 0, '2023-08-15 17:28:28', '2023-08-21 11:16:39', NULL),
(439, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1140940184347758642\",\"reference_id\":\"1140935399649312859\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587799963447.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1138713254718361633/1140940183936704552/lal603743923_A_Chinese_girl_wearing_a_light_blue_dress_in_surre_02aa1438-53a1-4cd9-8759-0612b6148135.png\",\"filename\":\"lal603743923_A_Chinese_girl_wearing_a_light_blue_dress_in_surre_02aa1438-53a1-4cd9-8759-0612b6148135.png\",\"width\":1344,\"height\":896,\"size\":1735378,\"hash\":\"02aa1438-53a1-4cd9-8759-0612b6148135\"},\"content\":\"**A Chinese girl wearing a light blue dress in surrealistic art style --ar 3:2 --v 5.2** - Image #3 \\u003c@549957079511597067\\u003e\",\"prompt\":\"A Chinese girl wearing a light blue dress in surrealistic art style --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"83287146fb029b354b6bd05c40919bd1c3629fadca7afc373323e0e12be93184\"}', 0, 0, '2023-08-15 17:28:58', '2023-08-21 11:16:40', NULL),
(440, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '绘画中国神话中的神仙姐姐气质出尘脱俗非常漂亮白色的衣服金色的发带。3:2', 57, 0, '2023-08-17 11:43:46', '2023-08-17 11:43:46', NULL),
(441, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 88, 0, '2023-08-17 11:43:49', '2023-08-17 11:43:49', NULL),
(442, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141578265023234148\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587803478652.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141578264490545152/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_7eb7cc13-149e-49d9-8c42-ce69bd196f56.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_7eb7cc13-149e-49d9-8c42-ce69bd196f56.png\",\"width\":2688,\"height\":1792,\"size\":7647463,\"hash\":\"7eb7cc13-149e-49d9-8c42-ce69bd196f56\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 11:44:28', '2023-08-21 11:16:44', NULL),
(443, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141578404311867523\",\"reference_id\":\"1141578265023234148\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587806033421.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141578403951161384/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_c62a7895-37f4-444e-a7cd-d20385c1f48c.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_c62a7895-37f4-444e-a7cd-d20385c1f48c.png\",\"width\":1344,\"height\":896,\"size\":1636550,\"hash\":\"c62a7895-37f4-444e-a7cd-d20385c1f48c\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Image #4 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 11:45:01', '2023-08-21 11:16:46', NULL),
(444, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141578613985124362\",\"reference_id\":\"1141578265023234148\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587807645959.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141578613305643058/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_453c9ba7-dc7a-4503-8e96-ee00dd87aba1.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_453c9ba7-dc7a-4503-8e96-ee00dd87aba1.png\",\"width\":2688,\"height\":1792,\"size\":7129042,\"hash\":\"453c9ba7-dc7a-4503-8e96-ee00dd87aba1\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 11:45:51', '2023-08-21 11:16:48', NULL),
(445, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141614569232547841\",\"reference_id\":\"1141578613985124362\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587809163555.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141614568821510164/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_f6b0194e-845c-4cac-bee9-0fc62594527a.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_f6b0194e-845c-4cac-bee9-0fc62594527a.png\",\"width\":1344,\"height\":896,\"size\":1510918,\"hash\":\"f6b0194e-845c-4cac-bee9-0fc62594527a\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Image #2 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 14:08:45', '2023-08-21 11:16:49', NULL),
(446, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141614886175129610\",\"reference_id\":\"1141578613985124362\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587810843163.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141614885562744842/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_82d2e3fd-02c4-445d-9d00-87f4d394b23d.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_82d2e3fd-02c4-445d-9d00-87f4d394b23d.png\",\"width\":2688,\"height\":1792,\"size\":7495982,\"hash\":\"82d2e3fd-02c4-445d-9d00-87f4d394b23d\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 14:10:01', '2023-08-21 11:16:51', NULL),
(447, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141615185870733322\",\"reference_id\":\"1141614886175129610\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587812274368.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141615185287720971/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_cfbf07f9-6f89-4d98-8a1c-8c7b212e47f6.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_cfbf07f9-6f89-4d98-8a1c-8c7b212e47f6.png\",\"width\":2688,\"height\":1792,\"size\":7622393,\"hash\":\"cfbf07f9-6f89-4d98-8a1c-8c7b212e47f6\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 14:11:12', '2023-08-21 11:16:52', NULL),
(448, 4, '15ac058b-ffee-4866-9536-70d1b403dd81', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1141615299175653449\",\"reference_id\":\"1141615185870733322\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1692587814325695.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1141615299225980928/lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_93897672-a17a-4559-ba58-c611d6d3481c.png\",\"filename\":\"lisamiller4099_A_beautiful_fairy_in_Chinese_mythology_with_an_e_93897672-a17a-4559-ba58-c611d6d3481c.png\",\"width\":1344,\"height\":896,\"size\":1769485,\"hash\":\"93897672-a17a-4559-ba58-c611d6d3481c\"},\"content\":\"**A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2** - Image #2 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A beautiful fairy in Chinese mythology with an ethereal and elegant temperament. She wears a white dress and a golden headband. --ar 3:2 --v 5.2\",\"status\":\"Finished\",\"key\":\"32ad8487238564ef8b05b79c984ba525aef2b78c053f8ab7ce1bc8a087225a8f\"}', 0, 0, '2023-08-17 14:11:40', '2023-08-21 11:16:54', NULL),
(449, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日热搜', 7, 0, '2023-08-23 15:29:13', '2023-08-23 15:29:13', NULL),
(450, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-08-23 15:29:15\n\n1、 [央媒称并非所有人都适合体制内工作](https://s.weibo.com/weibo?q=央媒称并非所有人都适合体制内工作) [热度2317113]\n\n2、 [iPhone15Pro被曝的21项变化](https://s.weibo.com/weibo?q=iPhone15Pro被曝的21项变化) [热度1438695]\n\n3、 [共建更加美好的世界](https://s.weibo.com/weibo?q=共建更加美好的世界) [热度1141579]\n\n4、 [9大胶原才够抗老](https://s.weibo.com/weibo?q=9大胶原才够抗老) [热度888499]\n\n5、 [iPhone用两年什么变化](https://s.weibo.com/weibo?q=iPhone用两年什么变化) [热度853987]\n\n6、 [科学家在各种女性卫生用品中发现永久危险物质](https://s.weibo.com/weibo?q=科学家在各种女性卫生用品中发现永久危险物质) [热度795040]\n\n7、 [陈伟霆叫赵露思爆款女王](https://s.weibo.com/weibo?q=陈伟霆叫赵露思爆款女王) [热度654834]\n\n8、 [建议一户一家务优等生](https://s.weibo.com/weibo?q=建议一户一家务优等生) [热度597346]\n\n9、 [长空之王上映第118天票房逆跌](https://s.weibo.com/weibo?q=长空之王上映第118天票房逆跌) [热度542112]\n\n10、 [研究称日本核污水排海240天到达中国](https://s.weibo.com/weibo?q=研究称日本核污水排海240天到达中国) [热度506663]', 32, 0, '2023-08-23 15:29:14', '2023-08-23 15:29:14', NULL),
(451, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日头条', 4, 0, '2023-08-23 15:29:41', '2023-08-23 15:29:41', NULL),
(452, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Your account is expired, please renew it', 5, 0, '2023-08-23 15:29:42', '2023-08-23 15:29:42', NULL),
(453, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日头条', 4, 0, '2023-08-23 15:46:33', '2023-08-23 15:46:33', NULL),
(454, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**今日头条 ‧ 热文周榜**最新更新2023-08-23 15:46:34\n\n1、 [「环球网」快讯美商务部宣布将27个中国实体从“未经验证清单”剔除](https://www.toutiao.com/item/7269934656580108800) [159W+ 阅读 , 7096 评论]\n\n2、 [「红星新闻」美国发最高级别警告!“立即离开这个国家”](https://www.toutiao.com/item/7269940081123869184) [135W+ 阅读 , 5224 评论]\n\n3、 [「极目新闻」出租车司机回应“接大单从重庆开到上海”对方付了15000元除去成本挣了9000多元无法提供乘客付款记录](https://www.toutiao.com/item/7270024304467640892) [134W+ 阅读 , 2476 评论]\n\n4、 [「界面快讯」俄媒:莫斯科所有机场关闭,禁止进出航班](https://www.toutiao.com/item/7269931973446189603) [115W+ 阅读 , 7501 评论]\n\n5、 [「新京报」日方决定启动福岛核污染水排海 驻日使馆:极端自私自利](https://www.toutiao.com/item/7270091864702075452) [102W+ 阅读 , 11415 评论]\n\n6、 [「界面快讯」外媒:泰国前总理他信抵达曼谷后被警方拘留](https://www.toutiao.com/item/7269983732893745683) [70W+ 阅读 , 3196 评论]\n\n7、 [「新华社」(出访)习近平抵达约翰内斯堡出席金砖国家领导人第十五次会晤并对南非进行国事访问](https://www.toutiao.com/item/7269935197842407972) [63W+ 阅读 , 6072 评论]\n\n8、 [「环球网」菲律宾4艘船擅自进入中方回应](https://www.toutiao.com/item/7270059859356156435) [51W+ 阅读 , 2194 评论]\n\n9、 [「澎湃新闻」日本在质疑声中宣布8月24日起核污染水排海计划排放30年](https://www.toutiao.com/item/7269968609450344960) [43W+ 阅读 , 2279 评论]\n\n10、 [「环球网」泰国最高法院判处前总理他信8年监禁](https://www.toutiao.com/item/7270004060667839036) [40W+ 阅读 , 801 评论]\n\n11、 [「环球网」日本政府宣布24日启动福岛核污染水排海](https://www.toutiao.com/item/7269952627734086155) [39W+ 阅读 , 5623 评论]\n\n12、 [「正观历史」58年广西省会之争韦国清提议定柳州主席那首都应该定兰州](https://www.toutiao.com/item/7269972659013091875) [37W+ 阅读 , 1378 评论]\n\n13、 [「环球网」日本政府正式决定启动排海,中国政府是否考虑出台新管制措施?中方回应](https://www.toutiao.com/item/7270044222500127288) [35W+ 阅读 , 5549 评论]\n\n14、 [「第一军情」菲律宾成功向仁爱礁运送补给,但中国海警没有“认怂”](https://www.toutiao.com/item/7270070346530292264) [34W+ 阅读 , 2313 评论]\n\n15、 [「环球网」美媒美国前总统特朗普称计划24日自首](https://www.toutiao.com/item/7269947730255643191) [34W+ 阅读 , 710 评论]\n\n16、 [「河南商报」胡歌深夜发声,网友炸了!](https://www.toutiao.com/item/7269972004579623443) [34W+ 阅读 , 1222 评论]\n\n17、 [「环球网」广州供电局通报“王某夫妻婚姻纠纷”:已成立核查组进行核查](https://www.toutiao.com/item/7270124284709110311) [32W+ 阅读 , 1079 评论]\n\n18、 [「环球网」外媒朝鲜航班3年来首次降落北京](https://www.toutiao.com/item/7269964228063740470) [31W+ 阅读 , 134 评论]\n\n19、 [「九派新闻」田朴珺晒大30岁老公送的七夕礼物王石自称“笨笨”向老婆邀功总算让你满意了一回](https://www.toutiao.com/item/7270038018172486178) [31W+ 阅读 , 1342 评论]\n\n20、 [「红星新闻」泰国前总理他信返回泰国,随后被警方逮捕并前往最高法院接受宣判](https://www.toutiao.com/item/7269986973342040628) [30W+ 阅读 , 187 评论]\n\n21、 [「陕视新闻」284名消防员已赶赴天津火灾现场](https://www.toutiao.com/item/7270054655541903907) [29W+ 阅读 , 1102 评论]\n\n22、 [「环球网」“尽快离开!” 美国发出最高安全警告](https://www.toutiao.com/item/7270023273776497186) [29W+ 阅读 , 375 评论]\n\
(455, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '微博热搜', 8, 0, '2023-08-23 16:06:48', '2023-08-23 16:06:48', NULL),
(456, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-08-23 16:06:50\n\n1、 [央媒称并非所有人都适合体制内工作](https://s.weibo.com/weibo?q=央媒称并非所有人都适合体制内工作) [热度1870684]\n\n2、 [iPhone15Pro被曝的21项变化](https://s.weibo.com/weibo?q=iPhone15Pro被曝的21项变化) [热度1272205]\n\n3、 [共建更加美好的世界](https://s.weibo.com/weibo?q=共建更加美好的世界) [热度1144577]\n\n4、 [无限可能运动会](https://s.weibo.com/weibo?q=无限可能运动会) [热度1137851]\n\n5、 [杨幂cue唐嫣NG名场面](https://s.weibo.com/weibo?q=杨幂cue唐嫣NG名场面) [热度1129630]\n\n6、 [科学家在各种女性卫生用品中发现永久危险物质](https://s.weibo.com/weibo?q=科学家在各种女性卫生用品中发现永久危险物质) [热度1120325]\n\n7、 [iPhone用两年什么变化](https://s.weibo.com/weibo?q=iPhone用两年什么变化) [热度725099]\n\n8、 [争做读书课代表](https://s.weibo.com/weibo?q=争做读书课代表) [热度723333]\n\n9、 [飞机延误乘务员比旅客还头痛](https://s.weibo.com/weibo?q=飞机延误乘务员比旅客还头痛) [热度721173]\n\n10、 [田曦薇首演打女角色](https://s.weibo.com/weibo?q=田曦薇首演打女角色) [热度501635]', 7, 0, '2023-08-23 16:06:50', '2023-08-23 16:06:50', NULL),
(457, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日热搜', 7, 0, '2023-08-23 16:25:08', '2023-08-23 16:25:08', NULL);
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(458, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-08-23 16:25:10\n\n1、 [东方树叶 三得利](https://s.weibo.com/weibo?q=东方树叶 三得利) [热度2870925]\n\n2、 [央媒称并非所有人都适合体制内工作](https://s.weibo.com/weibo?q=央媒称并非所有人都适合体制内工作) [热度1376286]\n\n3、 [共建更加美好的世界](https://s.weibo.com/weibo?q=共建更加美好的世界) [热度1300512]\n\n4、 [无限可能运动会](https://s.weibo.com/weibo?q=无限可能运动会) [热度1267842]\n\n5、 [杨幂cue唐嫣NG名场面](https://s.weibo.com/weibo?q=杨幂cue唐嫣NG名场面) [热度1227911]\n\n6、 [科学家在各种女性卫生用品中发现永久危险物质](https://s.weibo.com/weibo?q=科学家在各种女性卫生用品中发现永久危险物质) [热度938069]\n\n7、 [iPhone15Pro被曝的21项变化](https://s.weibo.com/weibo?q=iPhone15Pro被曝的21项变化) [热度865134]\n\n8、 [篮球世界杯17天挑战](https://s.weibo.com/weibo?q=篮球世界杯17天挑战) [热度596227]\n\n9、 [金晨是30亿票房女主了](https://s.weibo.com/weibo?q=金晨是30亿票房女主了) [热度552451]\n\n10、 [iPhone用两年什么变化](https://s.weibo.com/weibo?q=iPhone用两年什么变化) [热度523584]', 7, 0, '2023-08-23 16:25:10', '2023-08-23 16:25:10', NULL),
(459, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '微博热搜', 8, 0, '2023-08-23 16:25:14', '2023-08-23 16:25:14', NULL),
(460, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-08-23 16:25:10\n\n1、 [东方树叶 三得利](https://s.weibo.com/weibo?q=东方树叶 三得利) [热度2870925]\n\n2、 [央媒称并非所有人都适合体制内工作](https://s.weibo.com/weibo?q=央媒称并非所有人都适合体制内工作) [热度1376286]\n\n3、 [共建更加美好的世界](https://s.weibo.com/weibo?q=共建更加美好的世界) [热度1300512]\n\n4、 [无限可能运动会](https://s.weibo.com/weibo?q=无限可能运动会) [热度1267842]\n\n5、 [杨幂cue唐嫣NG名场面](https://s.weibo.com/weibo?q=杨幂cue唐嫣NG名场面) [热度1227911]\n\n6、 [科学家在各种女性卫生用品中发现永久危险物质](https://s.weibo.com/weibo?q=科学家在各种女性卫生用品中发现永久危险物质) [热度938069]\n\n7、 [iPhone15Pro被曝的21项变化](https://s.weibo.com/weibo?q=iPhone15Pro被曝的21项变化) [热度865134]\n\n8、 [篮球世界杯17天挑战](https://s.weibo.com/weibo?q=篮球世界杯17天挑战) [热度596227]\n\n9、 [金晨是30亿票房女主了](https://s.weibo.com/weibo?q=金晨是30亿票房女主了) [热度552451]\n\n10、 [iPhone用两年什么变化](https://s.weibo.com/weibo?q=iPhone用两年什么变化) [热度523584]', 7, 0, '2023-08-23 16:25:16', '2023-08-23 16:25:16', NULL),
(461, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日早报', 5, 0, '2023-08-23 17:35:45', '2023-08-23 17:35:45', NULL),
(462, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错:系统开小差了', 8, 0, '2023-08-23 17:35:48', '2023-08-23 17:35:48', NULL),
(463, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日早报', 5, 0, '2023-08-23 17:36:38', '2023-08-23 17:36:38', NULL),
(464, 4, 'a538de2f-3540-4ec6-975e-8406a38570d6', 'reply', '/images/avatar/gpt.png', 1, '**2023-08-23 早报:**\n\n1、22日菲律宾2艘运补船和2艘海警船擅自进入仁爱礁邻近海域中国海警局全程跟监、有效规制\n\n2、杭州亚运会门票官方线下购票渠道8月23日起陆续开放\n\n3、合肥出台“总部经济10条“对迁入上市主体的总部企业一次性奖励300万元\n\n4、22日天津南开区海光寺附近一大厦突发火灾冒出滚滚浓烟明火清晰可见暂无伤亡报告广西钦州海事局2日下午一艘油轮在广西北部湾海域着火15人获救、2人失联\n\n5、21日晚河南洛阳突降不明物体将路面砸出大坑官方是农用氯化铵无危险已拉走\n\n6、网传广州供电局员工遭妻子举报行贿30万入职回应已成立核查组。此前工作人员称信息有不实已报警\n\n7、21日下午安徽阜阳市阜南县一重型货车追尾小轿车致4人死亡21日晚陕西延安延川县新泰煤矿发生闪爆事故已造成11死9伤\n\n8、美方宣布将27个中国实体从“未经验证清单“剔除外交部中方欢迎美国商务部长雷蒙多将于8月27日至30日访华\n\n9、中美洲议会批准中国成为常驻观察员台当局被赶出外交部高度赞赏\n\n10、日本正式宣布24日起核污染水排海计划排放30年。研究核污水排海240天到达中国香港、澳门24日起禁止日本10个都县区食品进口中方召见日本驻华大使提出严正交涉将采取一切必要措施维护食品安全和公众健康\n\n11、日本称接到朝鲜提前通报朝方将在8月24日-31日发射卫星在海上设定3处危险区域\n\n12、外媒西非经济共同体拒绝尼日尔军政府提出的三年内举行选举建议非盟宣布暂停尼日尔成员国资格联合国尼日尔因制裁造成的断电危机或将导致数百万疫苗失效\n\n13、外媒泰国前总理他信22日抵达曼谷后被警方逮捕将入狱八年22日泰国国会举行第三次总理选举为泰党总理候选人瑟塔当选新一任泰国总理\n\n14、特朗普宣布24日前往佐治亚州富尔顿县监狱投案自首。同意缴纳20万美元的保释金和其他释放条件\n\n15、美敦促公民尽快离开白俄罗斯俄在白俄集结军队白俄存“潜在内乱“\n\n【微语】一开始的斗志和干劲很重要但更重要的是坚持下去的勇气。', 8, 0, '2023-08-23 17:36:39', '2023-08-23 17:36:39', NULL),
(465, 4, 'f4d4692c-6683-45bc-a264-de63051b1df2', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-09-04 17:29:27', '2023-09-04 17:29:27', '2023-09-05 10:36:59'),
(466, 4, 'f4d4692c-6683-45bc-a264-de63051b1df2', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-09-04 17:29:28', '2023-09-04 17:29:28', '2023-09-05 10:36:59'),
(467, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-09-04 17:30:06', '2023-09-04 17:30:06', '2023-09-05 10:36:59'),
(468, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'reply', '/images/avatar/gpt.png', 1, ' 您好!我是人工智能助手。请问有什么问题我可以帮您解答吗?', 34, 1, '2023-09-04 17:30:07', '2023-09-04 17:30:07', '2023-09-05 10:36:59'),
(469, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你是谁', 4, 1, '2023-09-04 17:30:13', '2023-09-04 17:30:13', '2023-09-05 10:36:59'),
(470, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'reply', '/images/avatar/gpt.png', 1, ' 我是一个人工智能助手,我的目标是帮助您解决问题和回答您的疑问。请问有什么问题我可以帮您解答吗?', 56, 1, '2023-09-04 17:30:14', '2023-09-04 17:30:14', '2023-09-05 10:36:59'),
(471, 4, 'b6665a85-63b1-4f30-80b4-265258d7162b', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-09-04 17:31:37', '2023-09-04 17:31:37', NULL),
(472, 4, 'b6665a85-63b1-4f30-80b4-265258d7162b', 'reply', '/images/avatar/gpt.png', 1, ' Hello 👋! I\'m ChatGLM, the artificial intelligence assistant, nice to meet you. Feel free to ask me any questions.', 47, 1, '2023-09-04 17:31:38', '2023-09-04 17:31:38', NULL),
(473, 4, '437da751-5aca-41f8-850f-8ee82fbf7294', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你是谁', 4, 1, '2023-09-04 17:32:37', '2023-09-04 17:32:37', NULL),
(474, 4, '437da751-5aca-41f8-850f-8ee82fbf7294', 'reply', '/images/avatar/gpt.png', 1, '我是AI助手可以为您提供各种服务和帮助。有什么我可以帮助您的吗', 37, 1, '2023-09-04 17:32:37', '2023-09-04 17:32:37', NULL),
(475, 4, '437da751-5aca-41f8-850f-8ee82fbf7294', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你会干嘛', 7, 1, '2023-09-04 17:57:17', '2023-09-04 17:57:17', NULL),
(476, 4, '437da751-5aca-41f8-850f-8ee82fbf7294', 'reply', '/images/avatar/gpt.png', 1, '我能提供一些常用的功能和服务,包括但不限于:\n\n1. 回答各种问题:我可以回答关于历史、科学、地理、娱乐等各种领域的问题。\n\n2. 翻译服务:我可以提供中英文之间的翻译服务。\n\n3. 天气查询:我可以帮您查询当前和未来几天的天气信息。\n\n4. 新闻资讯:我可以为您提供最新的新闻资讯和热门话题。\n\n5. 时间和日期:我可以告诉您当前的时间和日期。\n\n6. 故事讲解:我可以给您讲一些有趣的故事。\n\n7. AI绘画工具我可以使用AI绘画工具为您创作艺术作品。\n\n除了以上功能外我还可以学习和适应更多的任务和功能如果您有特定需求可以随时告诉我。', 263, 1, '2023-09-04 17:57:17', '2023-09-04 17:57:17', NULL),
(477, 4, 'a892c916-48c2-4631-aa06-4b686c366690', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你是谁', 4, 1, '2023-09-04 18:10:56', '2023-09-04 18:10:56', NULL),
(478, 4, 'a892c916-48c2-4631-aa06-4b686c366690', 'reply', '/images/avatar/gpt.png', 1, ' 我是一个名为 ChatGLM 的人工智能助手,是基于清华大学 KEG 实验室和智谱 AI 公司于 2023 年共同训练的语言模型开发的。我的任务是针对用户的问题和要求提供适当的答复和支持。', 96, 1, '2023-09-04 18:10:56', '2023-09-04 18:10:56', NULL),
(479, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-09-05 09:59:53', '2023-09-05 09:59:53', '2023-09-05 10:36:59'),
(480, 4, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 'reply', '/images/avatar/gpt.png', 1, ' Hello! How can I help you today?', 16, 1, '2023-09-05 09:59:54', '2023-09-05 09:59:54', '2023-09-05 10:36:59'),
(481, 4, 'f4d4692c-6683-45bc-a264-de63051b1df2', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '你好', 2, 1, '2023-09-05 10:00:06', '2023-09-05 10:00:06', '2023-09-05 10:36:59'),
(482, 4, 'f4d4692c-6683-45bc-a264-de63051b1df2', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么我可以帮助你的吗?', 18, 1, '2023-09-05 10:00:07', '2023-09-05 10:00:07', '2023-09-05 10:36:59'),
(483, 4, 'd236acaa-f09d-4097-aca6-5e2c977d79ea', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, 'hello', 1, 1, '2023-09-05 10:36:51', '2023-09-05 10:36:51', '2023-09-05 10:36:59'),
(484, 4, 'd236acaa-f09d-4097-aca6-5e2c977d79ea', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 9, 1, '2023-09-05 10:36:52', '2023-09-05 10:36:52', '2023-09-05 10:36:59'),
(485, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日热搜', 7, 0, '2023-09-05 10:55:24', '2023-09-05 10:55:24', NULL),
(486, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Invalid appId', 7, 0, '2023-09-05 10:55:25', '2023-09-05 10:55:25', NULL),
(487, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://localhost:5678/static/upload/2023/6/1687839034317.png', 1, '今日热搜', 7, 0, '2023-09-05 10:59:13', '2023-09-05 10:59:13', NULL),
(488, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-09-05 10:59:14\n\n1、 [刘亦菲我真的吃醋了](https://s.weibo.com/weibo?q=刘亦菲我真的吃醋了) [热度2444541]\n\n2、 [我来接我未过门的妻子怎么了](https://s.weibo.com/weibo?q=我来接我未过门的妻子怎么了) [热度1918732]\n\n3、 [一起探营杭州亚运村](https://s.weibo.com/weibo?q=一起探营杭州亚运村) [热度1379230]\n\n4、 [茅台巧克力即将上线](https://s.weibo.com/weibo?q=茅台巧克力即将上线) [热度1351575]\n\n5、 [烤肉店回应谢绝日本人进入](https://s.weibo.com/weibo?q=烤肉店回应谢绝日本人进入) [热度801445]\n\n6、 [理解诺兰成为诺兰](https://s.weibo.com/weibo?q=理解诺兰成为诺兰) [热度577180]\n\n7、 [光明网评云之羽](https://s.weibo.com/weibo?q=光明网评云之羽) [热度540212]\n\n8、 [不接受办公室恋情的原因](https://s.weibo.com/weibo?q=不接受办公室恋情的原因) [热度522460]\n\n9、 [景甜张凌赫四海重明杀青](https://s.weibo.com/weibo?q=景甜张凌赫四海重明杀青) [热度482661]\n\n10、 [日本核污染水排海量已超4200吨](https://s.weibo.com/weibo?q=日本核污染水排海量已超4200吨) [热度482584]', 7, 0, '2023-09-05 10:59:14', '2023-09-05 10:59:14', NULL),
(489, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693980866718593.jpg', 1, '你好', 2, 1, '2023-09-06 14:15:09', '2023-09-06 14:15:09', NULL),
(490, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么可以帮助您的吗?', 17, 1, '2023-09-06 14:15:11', '2023-09-06 14:15:11', NULL),
(491, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '天王盖地虎', 8, 1, '2023-09-07 09:03:13', '2023-09-07 09:03:13', NULL),
(492, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '小鸡炖蘑菇', 12, 1, '2023-09-07 09:03:16', '2023-09-07 09:03:16', NULL),
(493, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '画一只非洲豹在沙漠中奔跑', 18, 0, '2023-09-08 09:22:55', '2023-09-08 09:22:55', NULL),
(494, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词African leopard running in the desert --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 36, 0, '2023-09-08 09:22:58', '2023-09-08 09:22:58', NULL),
(495, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149515273792147506\",\"reference_id\":\"\",\"image\":{\"url\":\"http://img.r9it.com/chatgpt-plus/1694136202155249.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1144098626835058743/1149515272974237806/javpower.class_African_leopard_running_in_the_desert_1cf921d7-bcdc-4a3a-90e6-8ae97be232e3.png\",\"filename\":\"javpower.class_African_leopard_running_in_the_desert_1cf921d7-bcdc-4a3a-90e6-8ae97be232e3.png\",\"width\":2048,\"height\":2048,\"size\":7255826,\"hash\":\"1cf921d7-bcdc-4a3a-90e6-8ae97be232e3\"},\"content\":\"**African leopard running in the desert --v 5.2** - \\u003c@1049610546133086228\\u003e (turbo)\",\"prompt\":\"African leopard running in the desert --v 5.2\",\"status\":\"Finished\",\"key\":\"3dd9e5e2e0e3b929ec335a2e8e0350e56afd0eebd2f6306e8b00d379ffd3103a\"}', 0, 0, '2023-09-08 09:23:29', '2023-09-08 09:23:29', NULL),
(496, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画A realistic beautiful natural landscape, 4k resolution, hyper detailed', 17, 0, '2023-09-08 10:08:45', '2023-09-08 10:08:45', NULL),
(497, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A realistic beautiful natural landscape, 4k resolution, hyper detailed --ar 16:9 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 82, 0, '2023-09-08 10:08:47', '2023-09-08 10:08:47', NULL),
(498, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149526824024551444\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694138964689729.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1144098626835058743/1149526823500251176/javpower.class_A_realistic_beautiful_natural_landscape_4k_resol_72065ac6-750d-4692-b66a-75b9b269c1e6.png\",\"filename\":\"javpower.class_A_realistic_beautiful_natural_landscape_4k_resol_72065ac6-750d-4692-b66a-75b9b269c1e6.png\",\"width\":2912,\"height\":1632,\"size\":8278781,\"hash\":\"72065ac6-750d-4692-b66a-75b9b269c1e6\"},\"content\":\"**A realistic beautiful natural landscape, 4k resolution, hyper detailed --ar 16:9 --v 5.2** - \\u003c@1049610546133086228\\u003e (turbo)\",\"prompt\":\"A realistic beautiful natural landscape, 4k resolution, hyper detailed --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"70fb032602be952297a39db22309e9b8bdf4c68901d401662b567970a54b0af6\"}', 0, 0, '2023-09-08 10:09:25', '2023-09-08 10:09:25', NULL),
(499, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:数字化科技电脑屏幕', 16, 0, '2023-09-08 17:51:34', '2023-09-08 17:51:34', NULL),
(500, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Digital technology computer screen --ar 16:9 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 48, 0, '2023-09-08 17:51:37', '2023-09-08 17:51:37', NULL),
(501, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149643283677585519\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694166720753682.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1144098626835058743/1149643282159255582/javpower.class_Digital_technology_computer_screen_c5085152-f6e8-4e67-9f73-8ed31745cc86.png\",\"filename\":\"javpower.class_Digital_technology_computer_screen_c5085152-f6e8-4e67-9f73-8ed31745cc86.png\",\"width\":2912,\"height\":1632,\"size\":7894636,\"hash\":\"c5085152-f6e8-4e67-9f73-8ed31745cc86\"},\"content\":\"**Digital technology computer screen --ar 16:9 --v 5.2** - \\u003c@1049610546133086228\\u003e (turbo)\",\"prompt\":\"Digital technology computer screen --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"89d983f9d7a25fe07a9ba8e0280426ac462ee009427ac1aa2603818a1d2143a2\"}', 0, 0, '2023-09-08 17:52:01', '2023-09-08 17:52:01', NULL),
(502, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:数字化科技电脑巨幕,屏幕上有类似黑客帝国的汇编代码', 36, 0, '2023-09-08 18:01:44', '2023-09-08 18:01:44', NULL),
(503, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 49, 0, '2023-09-08 18:01:45', '2023-09-08 18:01:45', NULL),
(504, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149645910704390175\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694167347153694.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1149645909953626174/lisamiller4099_A_digital_technology_computer_giant_screen_with__caa0509b-12cf-4e6e-b5d3-a801ebc063b3.png\",\"filename\":\"lisamiller4099_A_digital_technology_computer_giant_screen_with__caa0509b-12cf-4e6e-b5d3-a801ebc063b3.png\",\"width\":2048,\"height\":2048,\"size\":7811068,\"hash\":\"caa0509b-12cf-4e6e-b5d3-a801ebc063b3\"},\"content\":\"**A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2\",\"status\":\"Finished\",\"key\":\"754c9d8c22674c510c7ee9ca276d2bd18e5e3999984d0cdc817cfd882d53c2fc\"}', 0, 0, '2023-09-08 18:02:27', '2023-09-08 18:02:27', NULL),
(505, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149646145371525164\",\"reference_id\":\"1149645910704390175\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694167403274303.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1149646144822063104/lisamiller4099_A_digital_technology_computer_giant_screen_with__f19a1f57-1de1-4fae-974c-9c00a9d267da.png\",\"filename\":\"lisamiller4099_A_digital_technology_computer_giant_screen_with__f19a1f57-1de1-4fae-974c-9c00a9d267da.png\",\"width\":2048,\"height\":2048,\"size\":7986171,\"hash\":\"f19a1f57-1de1-4fae-974c-9c00a9d267da\"},\"content\":\"**A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2\",\"status\":\"Finished\",\"key\":\"754c9d8c22674c510c7ee9ca276d2bd18e5e3999984d0cdc817cfd882d53c2fc\"}', 0, 0, '2023-09-08 18:03:23', '2023-09-08 18:03:23', NULL),
(506, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149646436653334579\",\"reference_id\":\"1149645910704390175\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694167471953191.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1149646436246507631/lisamiller4099_A_digital_technology_computer_giant_screen_with__e4455d66-c3d4-4397-9810-9b309585660d.png\",\"filename\":\"lisamiller4099_A_digital_technology_computer_giant_screen_with__e4455d66-c3d4-4397-9810-9b309585660d.png\",\"width\":1024,\"height\":1024,\"size\":1880040,\"hash\":\"e4455d66-c3d4-4397-9810-9b309585660d\"},\"content\":\"**A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2** - Image #4 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A digital technology computer giant screen with assembly code similar to The Matrix. --v 5.2\",\"status\":\"Finished\",\"key\":\"754c9d8c22674c510c7ee9ca276d2bd18e5e3999984d0cdc817cfd882d53c2fc\"}', 0, 0, '2023-09-08 18:04:32', '2023-09-08 18:04:32', NULL),
(507, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:数字化科技电脑巨幕,屏幕上有汇编代码。--ar 16:9', 34, 0, '2023-09-08 18:05:47', '2023-09-08 18:05:47', NULL),
(508, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A digital technology computer giant screen with assembly code. --ar 16:9 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 59, 0, '2023-09-08 18:05:48', '2023-09-08 18:05:48', NULL),
(509, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149646926740992030\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694167591080692.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1149646926032146512/lisamiller4099_A_digital_technology_computer_giant_screen_with__e93e1ef5-6d08-4cad-833f-91f469a16e97.png\",\"filename\":\"lisamiller4099_A_digital_technology_computer_giant_screen_with__e93e1ef5-6d08-4cad-833f-91f469a16e97.png\",\"width\":2912,\"height\":1632,\"size\":8417250,\"hash\":\"e93e1ef5-6d08-4cad-833f-91f469a16e97\"},\"content\":\"**A digital technology computer giant screen with assembly code. --ar 16:9 --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A digital technology computer giant screen with assembly code. --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"37e8d20ea631a90645a8982d0c1a90aa1492ccc26500f210918925823bdd6dc1\"}', 0, 0, '2023-09-08 18:06:31', '2023-09-08 18:06:31', NULL),
(510, 4, '33fe526f-08b3-4cfa-af12-cf832babc814', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1149647119599276093\",\"reference_id\":\"1149646926740992030\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694167635035690.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1149647119251165294/lisamiller4099_A_digital_technology_computer_giant_screen_with__6cc1162f-a9af-4138-8932-4c9117da42b8.png\",\"filename\":\"lisamiller4099_A_digital_technology_computer_giant_screen_with__6cc1162f-a9af-4138-8932-4c9117da42b8.png\",\"width\":1456,\"height\":816,\"size\":1835794,\"hash\":\"6cc1162f-a9af-4138-8932-4c9117da42b8\"},\"content\":\"**A digital technology computer giant screen with assembly code. --ar 16:9 --v 5.2** - Image #1 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A digital technology computer giant screen with assembly code. --ar 16:9 --v 5.2\",\"status\":\"Finished\",\"key\":\"37e8d20ea631a90645a8982d0c1a90aa1492ccc26500f210918925823bdd6dc1\"}', 0, 0, '2023-09-08 18:07:15', '2023-09-08 18:07:15', NULL),
(511, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\n', 50, 0, '2023-09-11 09:14:07', '2023-09-11 09:14:07', NULL),
(512, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9003/api/mj/image\": dial tcp 127.0.0.1:9003: connect: connection refused', 77, 0, '2023-09-11 09:14:08', '2023-09-11 09:14:08', NULL),
(513, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2', 49, 0, '2023-09-11 09:14:51', '2023-09-11 09:14:51', NULL),
(514, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 108, 0, '2023-09-11 09:14:51', '2023-09-11 09:14:51', NULL),
(515, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150600477231304805\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694394933620888.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150600476488908831/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__f74ad522-9956-402c-9b17-39991272dc82.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__f74ad522-9956-402c-9b17-39991272dc82.png\",\"width\":2912,\"height\":1632,\"size\":7312168,\"hash\":\"f74ad522-9956-402c-9b17-39991272dc82\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:15:34', '2023-09-11 09:15:34', NULL),
(516, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150600788150865970\",\"reference_id\":\"1150600477231304805\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395008316250.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150600787567849593/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__8b26dc8a-0947-480f-97ae-ecdfa7c29deb.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__8b26dc8a-0947-480f-97ae-ecdfa7c29deb.png\",\"width\":2912,\"height\":1632,\"size\":6878998,\"hash\":\"8b26dc8a-0947-480f-97ae-ecdfa7c29deb\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:16:48', '2023-09-11 09:16:48', NULL),
(517, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150601050051575938\",\"reference_id\":\"1150600477231304805\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395070038879.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150601049279832064/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__75b420e5-4424-482b-8b41-bb808f6142fc.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__75b420e5-4424-482b-8b41-bb808f6142fc.png\",\"width\":2912,\"height\":1632,\"size\":6971970,\"hash\":\"75b420e5-4424-482b-8b41-bb808f6142fc\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:17:50', '2023-09-11 09:17:50', NULL),
(518, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150601201428217956\",\"reference_id\":\"1150600477231304805\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395105131068.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150601200643874826/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__b22d148a-e965-467b-99e3-6308d607f00d.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__b22d148a-e965-467b-99e3-6308d607f00d.png\",\"width\":2912,\"height\":1632,\"size\":7647405,\"hash\":\"b22d148a-e965-467b-99e3-6308d607f00d\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:18:25', '2023-09-11 09:18:25', NULL),
(519, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150601368608972800\",\"reference_id\":\"1150601050051575938\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395204179353.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150601367996616724/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__7351df19-3e02-4610-876d-568d54db4394.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__7351df19-3e02-4610-876d-568d54db4394.png\",\"width\":2912,\"height\":1632,\"size\":6911481,\"hash\":\"7351df19-3e02-4610-876d-568d54db4394\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:20:04', '2023-09-11 09:20:04', NULL),
(520, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150602051596857414\",\"reference_id\":\"1150601368608972800\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395307743459.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150602050971893790/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__cebd5403-b832-4fb6-8517-734b8d0d125a.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__cebd5403-b832-4fb6-8517-734b8d0d125a.png\",\"width\":2912,\"height\":1632,\"size\":6745311,\"hash\":\"cebd5403-b832-4fb6-8517-734b8d0d125a\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:21:48', '2023-09-11 09:21:48', NULL),
(521, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150602319243784303\",\"reference_id\":\"1150601201428217956\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395372051187.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150602318589464667/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__df29f73b-cb29-4d63-aef7-024f8d9c3ca3.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__df29f73b-cb29-4d63-aef7-024f8d9c3ca3.png\",\"width\":2912,\"height\":1632,\"size\":7389300,\"hash\":\"df29f73b-cb29-4d63-aef7-024f8d9c3ca3\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:22:52', '2023-09-11 09:22:52', NULL),
(522, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150602825127182376\",\"reference_id\":\"1150602319243784303\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395495246569.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150602824833577101/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__c50a42e6-57d1-469f-bac9-8cf7211bfa0d.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__c50a42e6-57d1-469f-bac9-8cf7211bfa0d.png\",\"width\":1456,\"height\":816,\"size\":1685823,\"hash\":\"c50a42e6-57d1-469f-bac9-8cf7211bfa0d\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Image #4 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"c22174330439900a29e0720bbffcf6076aad80c2d496b4b69182020eb239e803\"}', 0, 0, '2023-09-11 09:24:55', '2023-09-11 09:24:55', NULL),
(523, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 2:3 --s 300', 43, 0, '2023-09-11 09:25:33', '2023-09-11 09:25:33', NULL),
(524, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A traditional animation style painting of a young girl in red sitting at a pond, in the style of Liu Ye, with cinematic lighting and book sculptures. --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 80, 0, '2023-09-11 09:25:34', '2023-09-11 09:25:34', NULL),
(525, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150603157517377597\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395643219573.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150603156741439498/lisamiller4099_A_traditional_animation_style_painting_of_a_youn_db3296c5-c280-460a-88a6-240b19b90734.png\",\"filename\":\"lisamiller4099_A_traditional_animation_style_painting_of_a_youn_db3296c5-c280-460a-88a6-240b19b90734.png\",\"width\":2048,\"height\":2048,\"size\":6100679,\"hash\":\"db3296c5-c280-460a-88a6-240b19b90734\"},\"content\":\"**A traditional animation style painting of a young girl in red sitting at a pond, in the style of Liu Ye, with cinematic lighting and book sculptures. --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A traditional animation style painting of a young girl in red sitting at a pond, in the style of Liu Ye, with cinematic lighting and book sculptures. --v 5.2\",\"status\":\"Finished\",\"key\":\"49b33c1257c4f988ab9db77cf8ff36f65dd15aa4e7fd8c51523a6c26b3dd433b\"}', 0, 0, '2023-09-11 09:27:23', '2023-09-11 09:27:23', NULL),
(526, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300', 43, 0, '2023-09-11 09:27:56', '2023-09-11 09:27:56', NULL),
(527, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 97, 0, '2023-09-11 09:27:59', '2023-09-11 09:27:59', NULL),
(528, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150603792610492496\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395723197683.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150603791691960340/lisamiller4099_Ma_painting_of_a_young_girl_in_red_sitting_at_a__61616f78-3eb4-4cfe-a8b1-f7e9a45df34a.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_red_sitting_at_a__61616f78-3eb4-4cfe-a8b1-f7e9a45df34a.png\",\"width\":2912,\"height\":1632,\"size\":7608622,\"hash\":\"61616f78-3eb4-4cfe-a8b1-f7e9a45df34a\"},\"content\":\"**Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"3c5adff428395fbb2827646169e6fbbf665068431f5e18335adaec2f05366074\"}', 0, 0, '2023-09-11 09:28:43', '2023-09-11 09:28:43', NULL),
(529, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150604226158919791\",\"reference_id\":\"1150603792610492496\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694395826361797.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150604225492037692/lisamiller4099_Ma_painting_of_a_young_girl_in_red_sitting_at_a__ec267418-991e-43eb-b36d-9ef015d16c5e.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_red_sitting_at_a__ec267418-991e-43eb-b36d-9ef015d16c5e.png\",\"width\":2912,\"height\":1632,\"size\":7401732,\"hash\":\"ec267418-991e-43eb-b36d-9ef015d16c5e\"},\"content\":\"**Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2** - Variations (Strong) by \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in red sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"3c5adff428395fbb2827646169e6fbbf665068431f5e18335adaec2f05366074\"}', 0, 0, '2023-09-11 09:30:26', '2023-09-11 09:30:26', NULL),
(530, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300', 43, 0, '2023-09-11 09:48:30', '2023-09-11 09:48:30', NULL),
(531, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A painting of a young girl in purple sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 108, 0, '2023-09-11 09:48:40', '2023-09-11 09:48:40', NULL),
(532, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150608985536348200\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694396961315508.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150608984869449867/lisamiller4099_A_painting_of_a_young_girl_in_purple_sitting_at__4609daed-fd18-439d-847a-5ade30460eee.png\",\"filename\":\"lisamiller4099_A_painting_of_a_young_girl_in_purple_sitting_at__4609daed-fd18-439d-847a-5ade30460eee.png\",\"width\":2048,\"height\":2048,\"size\":6301268,\"hash\":\"4609daed-fd18-439d-847a-5ade30460eee\"},\"content\":\"**A painting of a young girl in purple sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"A painting of a young girl in purple sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --v 5.2\",\"status\":\"Finished\",\"key\":\"73c34e67911de6713570c2d055fa5f6d6a7fb1bad9c0e5010b6f152dce9e74e2\"}', 0, 0, '2023-09-11 09:49:21', '2023-09-11 09:49:21', NULL),
(533, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150609383898746880\",\"reference_id\":\"1150608985536348200\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694397065685399.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150609383563198524/lisamiller4099_A_painting_of_a_young_girl_in_purple_sitting_at__a02c2d97-07d4-4842-8325-5b4f4408a449.png\",\"filename\":\"lisamiller4099_A_painting_of_a_young_girl_in_purple_sitting_at__a02c2d97-07d4-4842-8325-5b4f4408a449.png\",\"width\":1024,\"height\":1024,\"size\":1236836,\"hash\":\"a02c2d97-07d4-4842-8325-5b4f4408a449\"},\"content\":\"**A painting of a young girl in purple sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --v 5.2** - Image #2 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"A painting of a young girl in purple sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --v 5.2\",\"status\":\"Finished\",\"key\":\"73c34e67911de6713570c2d055fa5f6d6a7fb1bad9c0e5010b6f152dce9e74e2\"}', 0, 0, '2023-09-11 09:51:06', '2023-09-11 09:51:06', NULL),
(534, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '重新生成上述问题的答案绘画Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300', 53, 0, '2023-09-11 09:51:14', '2023-09-11 09:51:14', NULL),
(535, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词painting, Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 114, 0, '2023-09-11 09:51:15', '2023-09-11 09:51:15', NULL),
(536, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150609630989393930\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694397116233362.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150609630221828166/lisamiller4099_painting_Ma_painting_of_a_young_girl_in_purple_s_e3522480-3e6e-48c0-95cb-6e13a59b81ee.png\",\"filename\":\"lisamiller4099_painting_Ma_painting_of_a_young_girl_in_purple_s_e3522480-3e6e-48c0-95cb-6e13a59b81ee.png\",\"width\":2048,\"height\":2048,\"size\":6364254,\"hash\":\"e3522480-3e6e-48c0-95cb-6e13a59b81ee\"},\"content\":\"**painting, Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"painting, Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --v 5.2\",\"status\":\"Finished\",\"key\":\"d09da3e3cfc05d170c77ac73b095984991e9684d872aa3af87fcf256a07e3853\"}', 0, 0, '2023-09-11 09:51:56', '2023-09-11 09:51:56', NULL),
(537, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150610562988908594\",\"reference_id\":\"1150609630989393930\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694397337148950.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150610562741440522/lisamiller4099_painting_Ma_painting_of_a_young_girl_in_purple_s_7d0d3e16-2708-40d3-acde-281b4bcfac22.png\",\"filename\":\"lisamiller4099_painting_Ma_painting_of_a_young_girl_in_purple_s_7d0d3e16-2708-40d3-acde-281b4bcfac22.png\",\"width\":1024,\"height\":1024,\"size\":1422203,\"hash\":\"7d0d3e16-2708-40d3-acde-281b4bcfac22\"},\"content\":\"**painting, Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --v 5.2** - Image #2 \\u003c@1129939476223893514\\u003e\",\"prompt\":\"painting, Ma painting of a young girl in purple sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --v 5.2\",\"status\":\"Finished\",\"key\":\"d09da3e3cfc05d170c77ac73b095984991e9684d872aa3af87fcf256a07e3853\"}', 0, 0, '2023-09-11 09:55:37', '2023-09-11 09:55:37', NULL),
(538, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-09-11 09:55:36', '2023-09-11 09:55:36', NULL),
(539, 4, '7e668724-a2e0-4a72-8388-41a73b0c2594', 'reply', '/images/avatar/gpt.png', 1, '我是语义助手,可以回答您关于各种问题的疑问,并提供帮助和建议。有什么我可以为您做的吗?', 49, 1, '2023-09-11 09:55:37', '2023-09-11 09:55:37', NULL),
(540, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300  --v 5.2', 51, 0, '2023-09-11 10:00:47', '2023-09-11 10:00:47', NULL),
(541, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A painting of a young girl in green sitting at a pond, in the style of Liu Ye, traditional animation, cinematic lighting, book sculptures --ar %!s(<nil>) --s %!d(float64=300) --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 130, 0, '2023-09-11 10:00:48', '2023-09-11 10:00:48', NULL),
(542, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2', 50, 0, '2023-09-11 10:01:27', '2023-09-11 10:01:27', NULL),
(543, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --ar %!s(<nil>) --s 300 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 130, 0, '2023-09-11 10:01:30', '2023-09-11 10:01:30', NULL),
(544, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures, --ar 16:9 --s 300 --v 5.2', 50, 0, '2023-09-11 10:02:15', '2023-09-11 10:02:15', NULL),
(545, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --ar 16:9 --s 300 --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 130, 0, '2023-09-11 10:02:18', '2023-09-11 10:02:18', NULL),
(546, 4, '60228f64-cb5b-4c7b-9712-01dae0913434', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1150612415646531584\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694397780080713.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1139552247693443184/1150612414975455232/lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__f8e56ddf-68e2-4fa0-aa0e-0691355af3a2.png\",\"filename\":\"lisamiller4099_Ma_painting_of_a_young_girl_in_green_sitting_at__f8e56ddf-68e2-4fa0-aa0e-0691355af3a2.png\",\"width\":2912,\"height\":1632,\"size\":7315747,\"hash\":\"f8e56ddf-68e2-4fa0-aa0e-0691355af3a2\"},\"content\":\"**Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --ar 16:9 --s 300 --v 5.2** - \\u003c@1129939476223893514\\u003e (fast)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --ar 16:9 --s 300 --v 5.2\",\"status\":\"Finished\",\"key\":\"359e0f227bc12c8db8808524cf9a1eed14ec39b23280b9630cf5c9d215f8adca\"}', 0, 0, '2023-09-11 10:03:00', '2023-09-11 10:03:00', NULL),
(547, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '如何成为自己呢', 9, 1, '2023-09-11 10:25:28', '2023-09-11 10:25:28', NULL),
(548, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '成为自己是一个非常重要的过程,它意味着认识和接受自己的优点和缺点,了解自己的价值观和目标,以及主动地发展自己的能力和个人特质。以下是一些步骤,帮助你成为更真实、自信和满足的自己:\n\n1. 自我认识:花时间反思和了解自己。思考自己的价值观、兴趣爱好、优点和困难,以及对生活的期望和目标。尝试回答一些关键问题,例如“我是谁?”、“我想要什么?”、“我有什么才能和潜力?”等等。\n\n2. 接受自己:接受自己的过去和现在,并理解每个人都有优点和缺点。学会宽容和善待自己,不要过度苛求完美。接受自己的情绪和情感,允许自己体验各种情绪,并学会有效地应对它们。\n\n3. 树立目标:明确自己的目标和愿望,并制定可行的计划来实现它们。目标可以是个人、职业或心理健康方面的。确保目标与自己的价值观和意义相符,并为每个目标设定合理的时间表和里程碑。\n\n4. 增强自信:培养积极的自我形象和自信心。关注和强调自己的优点和成就,忽视自己的不足之处。积极培养自己的技能和知识,并从自己的成功经验中汲取力量。\n\n5. 自我关怀:关注自己的身心健康。建立一个健康的生活方式,包括良好的睡眠、饮食、运动和放松技巧。学会设定个人边界,并合理分配时间和精力。寻找和培养有效的应对压力和情绪管理的策略。\n\n6. 持续学习和成长:不断发展自己的能力和知识。参加培训、课程或研讨会,阅读有关个人发展和心理健康的书籍和文章,与他人交流和学习。持续反思和调整自己的目标和行动,以适应不断变化的环境。\n\n请记住成为自己是一个长期的过程需要时间、耐心和坚持。请逐步采取行动并在这个过程中给自己一些善意的回应和支持。如果你感到困惑或遇到困难寻求专业心理咨询师的支持也是一个好的选择。', 817, 1, '2023-09-11 10:25:38', '2023-09-11 10:25:38', NULL),
(549, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '我是一切的根源?', 10, 1, '2023-09-11 10:27:24', '2023-09-11 10:27:24', NULL),
(550, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '作为心理学家,我可以告诉你,你作为一个个体并不是一切的根源。每个人都是在一个复杂的环境中成长和发展的,受到遗传、家庭、社会和文化等多个方面的影响。\n\n根源理论是一种哲学和心理学的观点它强调人类的自主性和决定性。它认为个体的思维、情感和行为源于内在的力量和本质。然而现代心理学的观点更注重环境、社会互动和个体经验对人类行为的影响。我们被塑造和影响的方式非常复杂并不仅仅由内在因素决定。\n\n尽管如此你作为个体仍然具有独特的经历、想法和行为。你在某种程度上可以塑造自己的生活并对自己的决策和行为负责。你可以通过自我发展、学习和成长来实现个人目标和幸福感。\n\n重要的是要理解我们是在某种程度上受到外部环境的影响但也有一定的自主性和选择权。我们可以通过提高自我意识、掌握有效的应对策略和追求个人成长来发展自己的潜力。\n\n如果你对此有更多的问题或想深入探讨请随时提问。', 421, 1, '2023-09-11 10:27:25', '2023-09-11 10:27:25', NULL),
(551, 4, '006d65f3-1288-4b3c-81e0-0097b66079ee', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '你好', 2, 1, '2023-09-11 10:33:06', '2023-09-11 10:33:06', NULL);
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(552, 4, '006d65f3-1288-4b3c-81e0-0097b66079ee', 'reply', '/images/avatar/psychiatrist.jpg', 27, '你好!欢迎来到心理咨询室。我是武志红,很高兴能为您提供帮助。有什么问题或者困扰我可以帮您解决吗?', 63, 1, '2023-09-11 10:33:07', '2023-09-11 10:33:07', NULL),
(553, 4, 'bbab1bd0-feb7-4ea3-a8d4-1a9518183a1b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 25, '你好', 2, 1, '2023-09-11 10:33:57', '2023-09-11 10:33:57', NULL),
(554, 4, 'bbab1bd0-feb7-4ea3-a8d4-1a9518183a1b', 'reply', '/images/avatar/teacher.jpg', 25, '你好!很高兴与你交流。有什么问题或者话题是你想要探讨的吗?我会尽力通过问题来引导你思考和探索答案。', 56, 1, '2023-09-11 10:33:58', '2023-09-11 10:33:58', NULL),
(555, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '你好', 2, 1, '2023-09-11 10:38:18', '2023-09-11 10:38:18', NULL),
(556, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '你好!有什么问题我可以帮助你解答吗?', 21, 1, '2023-09-11 10:38:19', '2023-09-11 10:38:19', NULL),
(557, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '你会干嘛', 7, 1, '2023-09-11 10:40:28', '2023-09-11 10:40:28', NULL),
(558, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '作为一名程序员,我可以帮助你解决各种与编程相关的问题,包括但不限于:\n\n1. 提供编程技术支持和建议:无论是关于特定编程语言的问题,还是关于解决特定编程难题的建议,我都可以提供帮助。\n\n2. 进行编程任务和项目开发:如果你有一些需求,我可以帮助你编写代码,并完成相应的任务和项目开发。\n\n3. 进行代码审查和优化:如果你有一段代码想要改进或优化,我可以帮你进行代码审查,并提出改进建议。\n\n4. 提供编程学习资源和指导:如果你想学习编程,我可以为你提供相关的学习资源,以及指导和建议。\n\n总的来说无论你在编程领域遇到什么问题我都会尽力帮助你解决。请告诉我你需要什么样的帮助我会尽力满足你的需求。', 292, 1, '2023-09-11 10:40:29', '2023-09-11 10:40:29', NULL),
(559, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '写一段 go 语言代码实现 aes 加密', 13, 1, '2023-09-11 11:07:52', '2023-09-11 11:07:52', NULL),
(560, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '当然可以下面是一个使用Go语言实现AES加密的示例代码\n\n```go\npackage main\n\nimport (\n \"crypto/aes\"\n \"crypto/cipher\"\n \"crypto/rand\"\n \"encoding/hex\"\n \"fmt\"\n \"io\"\n)\n\nfunc main() {\n key := []byte(\"0123456789abcdef\")\n plaintext := []byte(\"exampleplaintext\")\n\n ciphertext, err := encrypt(key, plaintext)\n if err != nil {\n fmt.Println(\"Encryption error:\", err)\n return\n }\n\n fmt.Println(\"Ciphertext:\", hex.EncodeToString(ciphertext))\n\n decryptedText, err := decrypt(key, ciphertext)\n if err != nil {\n fmt.Println(\"Decryption error:\", err)\n return\n }\n\n fmt.Println(\"Decrypted text:\", string(decryptedText))\n}\n\nfunc encrypt(key, plaintext []byte) ([]byte, error) {\n block, err := aes.NewCipher(key)\n if err != nil {\n return nil, err\n }\n\n ciphertext := make([]byte, aes.BlockSize+len(plaintext))\n iv := ciphertext[:aes.BlockSize]\n if _, err := io.ReadFull(rand.Reader, iv); err != nil {\n return nil, err\n }\n\n cfb := cipher.NewCFBEncrypter(block, iv)\n cfb.XORKeyStream(ciphertext[aes.BlockSize:], plaintext)\n\n return ciphertext, nil\n}\n\nfunc decrypt(key, ciphertext []byte) ([]byte, error) {\n block, err := aes.NewCipher(key)\n if err != nil {\n return nil, err\n }\n\n if len(ciphertext) < aes.BlockSize {\n return nil, fmt.Errorf(\"Ciphertext too short\")\n }\n\n iv := ciphertext[:aes.BlockSize]\n ciphertext = ciphertext[aes.BlockSize:]\n\n cfb := cipher.NewCFBDecrypter(block, iv)\n cfb.XORKeyStream(ciphertext, ciphertext)\n\n return ciphertext, nil\n}\n```\n\n这段代码演示了如何使用AES加密算法对给定的明文进行加密并解密得到原文。请注意Key的长度必须为16、24或32字节以满足AES-128、AES-192或AES-256加密算法的要求。\n\n你可以将明文和密钥修改为你想要的内容然后运行代码进行测试。希望对你有所帮助如果有任何疑问请随时提问。', 1069, 1, '2023-09-11 11:07:54', '2023-09-11 11:07:54', NULL),
(561, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '诸事无常', 5, 1, '2023-09-11 11:25:35', '2023-09-11 11:25:35', NULL),
(562, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '你提到的“诸事无常”是佛教的一个重要教义,意味着一切都是变化和不确定的。几乎所有宗教和哲学传统都认识到生活是一个不断变化的过程。\n\n在面对生活中的变化和不确定性时以下是一些建议帮助你更好地成为自己\n\n1. 接纳变化:认识到变化是生活的一部分,并接受它们。学会放下对过去的执着,珍惜当下,并对未来持有一种开放和灵活的态度。\n\n2. 培养内心平静:通过冥想、深呼吸、身体放松等技巧,培养内心的平静和稳定。这样可以帮助你在不确定的时刻保持冷静和应对挑战。\n\n3. 树立内在稳定点:找到一些固定和稳定的元素,让它们成为你生活中的锚点。这可以是你的价值观、信仰、家人和朋友的支持,或者你的兴趣爱好和激情。\n\n4. 培养灵活性:灵活性是适应和应对变化的能力。学会调整计划和目标,并对新的情况做出反应。尝试灵活地看待问题,寻找机会和解决方案。\n\n5. 培养自我关怀:关注自己的身心健康,在面对变化和不确定性时给自己一些额外的关怀。保持健康的生活方式,与他人建立支持和理解的关系,寻求支持和帮助。\n\n6. 发展自我意识:通过深入反思和观察自己,了解你的需求、兴趣和价值观。这样可以帮助你更好地倾听内心的声音,并作出与自己真实需求相符合的决策。\n\n请记住成为自己是一个个人化的过程每个人的经历和方式都可能不同。通过尝试不同的方法你将逐渐找到适合自己的方式来成为自己。如果你感到困惑或挣扎专业心理咨询师可以帮助你更好地探索和支持你的成长。', 2132, 1, '2023-09-11 11:25:36', '2023-09-11 11:25:36', NULL),
(563, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '诸法无我呢', 7, 1, '2023-09-11 11:26:26', '2023-09-11 11:26:26', NULL),
(564, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '“诸法无我”是佛教的一个重要教义,强调一切事物都是无常、无主和无实性的。这个教义指出,我们的自我观念是虚幻和不可捕捉的,我们所有的经验和存在都是由无数的因果条件所交织而成的。\n\n在理解和应用“诸法无我”这一教义时可以考虑以下几点\n\n1. 无我观念:理解到自我并不是一个固定、独立和永恒的实体。我们的个体和自我是由无数的因素和条件相互作用而成的,包括身体、思维、感觉和环境。这种观念可以帮助我们减轻对自我的执着和认同,从而减少痛苦和困惑。\n\n2. 缘起性:一切事物都是由无数的因果条件相互作用而生起的。我们的经验和存在都是处于不断变化和流动的过程中,没有固定和永恒的实体。这种理解可以帮助我们更好地接受和应对变化,并减少对事物的执着和執著。\n\n3. 深入观察:通过正念和深入观察,我们可以观察到思维、感觉和身体的变化。这有助于我们认识到我们的经验是流动和变化的,并培养出不固执于特定观念和想法的能力。\n\n4. 解脱与自由:当我们明白一切都是无常、无我和无实性的时候,我们可以超越对自我和外在事物的执着和執著,从而实现内心的解脱和自由。这意味着我们不再陷入烦恼和痛苦之中,而是以平和、宽容和智慧的态度面对一切。\n\n需要注意的是理解和实践“诸法无我”这一佛教教义需要深入的学习和体验。如果你对此感兴趣建议你深入研究佛教哲学与实践并通过与经验丰富的导师或佛教教派进行交流和指导来获得更深层次的理解和实践。', 2823, 1, '2023-09-11 11:26:28', '2023-09-11 11:26:28', NULL),
(565, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '寂静涅槃呢', 11, 1, '2023-09-11 11:27:55', '2023-09-11 11:27:55', NULL),
(566, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '寂静涅槃Nirvana是佛教中的一个重要概念意味着超越痛苦和烦恼的最高境界。在佛教中它被描述为一种无比的安宁、智慧和解脱状态。\n\n寂静涅槃是通过了悟和修行而实现的它标志着个体的解脱和超越轮回的状态。它是通过明智地观察和领悟事物的真实性质理解痛苦的根源并通过修行实现内心的平静和解脱。\n\n在佛教中修行的目的是超越欲望和执着消除痛苦并实现智慧和解脱。通过正念、禅修、智慧、慈悲和道德准则等修行方法人们可以逐渐减少烦恼和贪爱之心培养平和、智慧和解脱的境界。\n\n然而寂静涅槃并不是物质的境界或个体的存在。它是超越对一切事物的固着和執著包括对自我存在的执着。它是对真实性质的觉醒和超越以及对所有众生的平等且无条件的慈悲。\n\n寂静涅槃是佛教追求解脱和内心平安的目标它超越了个体和相对的世界。它代表了佛陀所教导的智慧、慈悲和解脱的最高境界。\n\n需要注意的是对于不同的佛教派别和学派对于寂静涅槃的理解和描述可能会有所不同。如果你对寂静涅槃感兴趣建议你去研究和学习佛教的经典文献或者向具有深入佛教知识和修行经验的导师寻求指导。', 3455, 1, '2023-09-11 11:27:56', '2023-09-11 11:27:56', NULL),
(567, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '佛教的缘起性空是什么意思?', 17, 1, '2023-09-11 11:29:16', '2023-09-11 11:29:16', NULL),
(568, 4, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 'reply', '/images/avatar/psychiatrist.jpg', 27, '佛教的缘起性空Dependent Origination and Emptiness是佛教中重要的教义着重于说明一切现象和存在的本质和行为模式。\n\n缘起性Dependent Origination指的是一切存在和现象都是由无数的因果条件相互依存而生起的。它解释了一切事物的起源和存在强调世间的所有存在都是由无数的因果联系和条件所决定的。根据佛教的解释这种因果联系和条件的转化是一个环环相扣、相互作用的过程没有一个现象是单独存在的每一个现象都是由其他现象的影响和条件而产生和维持的。\n\n空Emptiness是指一切存在的本质都是空性的即没有固定、独立和永恒的实体。这是面对现象和存在背后真实本质的洞察。佛教通过观察事物的无常性、无我性和诸法无实性认识到一切存在都是变化、流动和空无的。这意味着现象和存在没有固定的本质它们是虚幻和空无的。\n\n缘起性空的教义指出一切现象是相互依存和相互依赖的没有一个现象是独立存在的同时这些现象本身也是空性的没有固定的实体或本质。通过理解和体验缘起性空人们可以超越对事物的执着和執著并开展对事物的真实本质的创造性思考。\n\n需要注意的是缘起性空是一个深奥的理念需要通过学习佛教经典和实践修行的方式来逐渐理解和体验。佛教中有不同的学派和解释对于缘起性空的理解可能会有所不同。如果你对此感兴趣建议你研究佛教经典尤其是《中观论》、《般若波罗蜜多心经》等相关文献或向具有深入佛教知识和修行经验的导师咨询。', 4123, 1, '2023-09-11 11:29:18', '2023-09-11 11:29:18', NULL),
(569, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '画一只狗', 6, 0, '2023-09-12 12:03:41', '2023-09-12 12:03:41', NULL),
(570, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词a dog --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 31, 0, '2023-09-12 12:03:42', '2023-09-12 12:03:42', NULL),
(571, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '画一只狼狗', 9, 0, '2023-09-12 13:35:52', '2023-09-12 13:35:52', NULL),
(572, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词a picture of a wolf dog --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 43, 0, '2023-09-12 13:35:53', '2023-09-12 13:35:53', NULL),
(573, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '画一只狼狗', 9, 0, '2023-09-12 13:38:06', '2023-09-12 13:38:06', NULL),
(574, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词wolf dog --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 35, 0, '2023-09-12 13:38:09', '2023-09-12 13:38:09', NULL),
(575, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, 'hello', 1, 1, '2023-09-12 13:47:31', '2023-09-12 13:47:31', NULL),
(576, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 10, 1, '2023-09-12 13:47:32', '2023-09-12 13:47:32', NULL),
(577, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个女生走在石板街道中间', 18, 0, '2023-09-12 13:47:35', '2023-09-12 13:47:35', NULL),
(578, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A girl walking in the middle of a stone-paved street --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 75, 0, '2023-09-12 13:47:37', '2023-09-12 13:47:37', NULL),
(579, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个女生走在石板街道中间', 18, 0, '2023-09-12 14:18:48', '2023-09-12 14:18:48', NULL),
(580, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '调用函数出错Post \"http://localhost:9003/api/mj/image\": dial tcp 127.0.0.1:9003: connect: connection refused', 75, 0, '2023-09-12 14:18:52', '2023-09-12 14:18:52', NULL),
(581, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个女生走在石板街道中间', 18, 0, '2023-09-12 14:20:21', '2023-09-12 14:20:21', NULL),
(582, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A girl walking in the middle of a cobblestone street --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 74, 0, '2023-09-12 14:20:23', '2023-09-12 14:20:23', NULL),
(583, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个中国美丽女孩,穿着旗袍,走在古色古香的街道', 36, 0, '2023-09-13 09:21:44', '2023-09-13 09:21:44', NULL),
(584, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful Chinese girl wearing a cheongsam walking on an ancient street --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 96, 0, '2023-09-13 09:21:47', '2023-09-13 09:21:47', NULL),
(585, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151326978369138848\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694568146186876.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151326977870024856/jiangjin_A_beautiful_Chinese_girl_wearing_a_cheongsam_walking_o_ee33e984-4de4-4dce-829a-c1c7d7a967ec.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_cheongsam_walking_o_ee33e984-4de4-4dce-829a-c1c7d7a967ec.png\",\"width\":2048,\"height\":2048,\"size\":6731291,\"hash\":\"ee33e984-4de4-4dce-829a-c1c7d7a967ec\"},\"content\":\"**A beautiful Chinese girl wearing a cheongsam walking on an ancient street --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a cheongsam walking on an ancient street --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 09:22:26', '2023-09-13 09:22:26', NULL),
(586, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个中国美丽女孩,穿着旗袍,走在古色古香的街道,面向屏幕,仪态优雅', 49, 0, '2023-09-13 09:28:03', '2023-09-13 09:28:03', NULL),
(587, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 125, 0, '2023-09-13 09:28:05', '2023-09-13 09:28:05', NULL),
(588, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151328568962465902\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694568531910050.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151328567452504176/jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__c570eb1c-0ce0-4b55-b670-6d7df84cc3a1.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__c570eb1c-0ce0-4b55-b670-6d7df84cc3a1.png\",\"width\":2048,\"height\":2048,\"size\":6729559,\"hash\":\"c570eb1c-0ce0-4b55-b670-6d7df84cc3a1\"},\"content\":\"**A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 09:28:52', '2023-09-13 09:28:52', NULL),
(589, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151334509497810945\",\"reference_id\":\"1151328568962465902\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694569946240660.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151334509367799918/jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__279ce156-5b33-46eb-bfd9-295f4b6d5af6.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__279ce156-5b33-46eb-bfd9-295f4b6d5af6.png\",\"width\":1024,\"height\":1024,\"size\":1542049,\"hash\":\"279ce156-5b33-46eb-bfd9-295f4b6d5af6\"},\"content\":\"**A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw** - Image #3 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 09:52:26', '2023-09-13 09:52:26', NULL),
(590, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151335316863586365\",\"reference_id\":\"1151328568962465902\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694570132797101.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151335316322529380/jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__41e800e7-587a-406e-9f9f-f5511b82a2cb.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_qipao_walking_on_a__41e800e7-587a-406e-9f9f-f5511b82a2cb.png\",\"width\":2048,\"height\":2048,\"size\":6703440,\"hash\":\"41e800e7-587a-406e-9f9f-f5511b82a2cb\"},\"content\":\"**A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a qipao walking on a picturesque street, facing the screen with an elegant posture --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 09:55:33', '2023-09-13 09:55:33', NULL),
(591, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一只小猫站在窗台上', 16, 0, '2023-09-13 11:47:00', '2023-09-13 11:47:00', NULL),
(592, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A small cat standing on the windowsill --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 63, 0, '2023-09-13 11:47:02', '2023-09-13 11:47:02', NULL),
(593, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151363537562779728\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694577004546572.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151363536950399006/jiangjin_A_small_cat_standing_on_the_windowsill_7cee7c2a-75ff-4fbe-a365-a5c89935c13a.png\",\"filename\":\"jiangjin_A_small_cat_standing_on_the_windowsill_7cee7c2a-75ff-4fbe-a365-a5c89935c13a.png\",\"width\":2048,\"height\":2048,\"size\":7179164,\"hash\":\"7cee7c2a-75ff-4fbe-a365-a5c89935c13a\"},\"content\":\"**A small cat standing on the windowsill --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A small cat standing on the windowsill --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 11:50:05', '2023-09-13 11:50:05', NULL),
(594, 4, '', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151364349282238515\",\"reference_id\":\"1151363537562779728\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694577053396239.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151364348959268914/jiangjin_A_small_cat_standing_on_the_windowsill_dff79b0e-e417-4852-937b-1c913f03c49a.png\",\"filename\":\"jiangjin_A_small_cat_standing_on_the_windowsill_dff79b0e-e417-4852-937b-1c913f03c49a.png\",\"width\":1024,\"height\":1024,\"size\":1613992,\"hash\":\"dff79b0e-e417-4852-937b-1c913f03c49a\"},\"content\":\"**A small cat standing on the windowsill --v 5.2 --s 750 --style raw** - Image #2 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"A small cat standing on the windowsill --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 11:50:53', '2023-09-13 11:50:53', NULL),
(595, 4, '', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151364525438804021\",\"reference_id\":\"1151363537562779728\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694577137019285.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151364524855808043/jiangjin_A_small_cat_standing_on_the_windowsill_d235bb81-4a77-44b3-969a-08931f57f6fd.png\",\"filename\":\"jiangjin_A_small_cat_standing_on_the_windowsill_d235bb81-4a77-44b3-969a-08931f57f6fd.png\",\"width\":2048,\"height\":2048,\"size\":7294975,\"hash\":\"d235bb81-4a77-44b3-969a-08931f57f6fd\"},\"content\":\"**A small cat standing on the windowsill --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A small cat standing on the windowsill --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 11:52:17', '2023-09-13 11:52:17', NULL),
(596, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151403055460397086\",\"reference_id\":\"1151363537562779728\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694586282031543.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151403055150022696/jiangjin_A_small_cat_standing_on_the_windowsill_c2bbf64a-9663-489a-8a65-a60115d40e69.png\",\"filename\":\"jiangjin_A_small_cat_standing_on_the_windowsill_c2bbf64a-9663-489a-8a65-a60115d40e69.png\",\"width\":1024,\"height\":1024,\"size\":1634625,\"hash\":\"c2bbf64a-9663-489a-8a65-a60115d40e69\"},\"content\":\"**A small cat standing on the windowsill --v 5.2 --s 750 --style raw** - Image #1 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"A small cat standing on the windowsill --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:24:42', '2023-09-13 14:24:42', NULL),
(597, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151403960729616385\",\"reference_id\":\"1151363537562779728\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694586498692204.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151403960092074005/jiangjin_A_small_cat_standing_on_the_windowsill_59c74bcd-fd53-424d-8193-2e53468cde57.png\",\"filename\":\"jiangjin_A_small_cat_standing_on_the_windowsill_59c74bcd-fd53-424d-8193-2e53468cde57.png\",\"width\":2048,\"height\":2048,\"size\":7176741,\"hash\":\"59c74bcd-fd53-424d-8193-2e53468cde57\"},\"content\":\"**A small cat standing on the windowsill --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A small cat standing on the windowsill --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:28:19', '2023-09-13 14:28:19', NULL),
(598, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画一个中国美丽女孩穿着绿色旗袍走在古色古香的街道look at view仪态优雅', 49, 0, '2023-09-13 14:39:08', '2023-09-13 14:39:08', NULL),
(599, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful Chinese girl wearing a green cheongsam, walking on an ancient and picturesque street, looking at the view with graceful demeanor --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 133, 0, '2023-09-13 14:39:11', '2023-09-13 14:39:11', NULL),
(600, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151406872117661776\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694587192568728.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151406871543025694/jiangjin_A_beautiful_Chinese_girl_wearing_a_green_cheongsam_wal_e16a6360-9707-4586-b040-52eca6062bf7.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_green_cheongsam_wal_e16a6360-9707-4586-b040-52eca6062bf7.png\",\"width\":2048,\"height\":2048,\"size\":6728058,\"hash\":\"e16a6360-9707-4586-b040-52eca6062bf7\"},\"content\":\"**A beautiful Chinese girl wearing a green cheongsam, walking on an ancient and picturesque street, looking at the view with graceful demeanor --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a green cheongsam, walking on an ancient and picturesque street, looking at the view with graceful demeanor --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:39:53', '2023-09-13 14:39:53', NULL),
(601, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画:一个中国美丽女孩,穿着紫色的旗袍,走在繁华的街道,面向屏幕,仪态优雅,完美的身材前凸后翘。--ar 3:2 ', 72, 0, '2023-09-13 14:45:33', '2023-09-13 14:45:33', NULL),
(602, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 190, 0, '2023-09-13 14:45:36', '2023-09-13 14:45:36', NULL),
(603, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151408482512285776\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694587577267610.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151408481698582568/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_7d27a8f8-f7c9-4f20-a48b-1c00b547de7f.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_7d27a8f8-f7c9-4f20-a48b-1c00b547de7f.png\",\"width\":2048,\"height\":2048,\"size\":6751797,\"hash\":\"7d27a8f8-f7c9-4f20-a48b-1c00b547de7f\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:46:17', '2023-09-13 14:46:17', NULL),
(604, 4, '', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151408734082449428\",\"reference_id\":\"1151408482512285776\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694587637069504.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151408733633662976/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_3085160c-35ad-46a3-b7b8-83e7f498d3ba.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_3085160c-35ad-46a3-b7b8-83e7f498d3ba.png\",\"width\":2048,\"height\":2048,\"size\":6815228,\"hash\":\"3085160c-35ad-46a3-b7b8-83e7f498d3ba\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:47:17', '2023-09-13 14:47:17', NULL),
(605, 4, '', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151410737147826198\",\"reference_id\":\"1151408482512285776\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694588114302454.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151410712162357318/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_482c566f-0d1c-44a6-9dd1-1b8b63a39e82.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_482c566f-0d1c-44a6-9dd1-1b8b63a39e82.png\",\"width\":2048,\"height\":2048,\"size\":6746298,\"hash\":\"482c566f-0d1c-44a6-9dd1-1b8b63a39e82\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:55:14', '2023-09-13 14:55:14', NULL),
(606, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151411776907399198\",\"reference_id\":\"1151408482512285776\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694588361482752.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151411776597012510/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_947f9987-8f7a-4f38-b10f-9009116f65cc.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_947f9987-8f7a-4f38-b10f-9009116f65cc.png\",\"width\":1024,\"height\":1024,\"size\":1505472,\"hash\":\"947f9987-8f7a-4f38-b10f-9009116f65cc\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - Image #3 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 14:59:22', '2023-09-13 14:59:22', NULL),
(607, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151413494592323594\",\"reference_id\":\"1151410737147826198\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694588772863709.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151413493849927761/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_ed086670-ffb0-4fef-bb7c-de308363a904.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_ed086670-ffb0-4fef-bb7c-de308363a904.png\",\"width\":2048,\"height\":2048,\"size\":6684154,\"hash\":\"ed086670-ffb0-4fef-bb7c-de308363a904\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:06:13', '2023-09-13 15:06:13', NULL),
(608, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151414822336991304\",\"reference_id\":\"1151413494592323594\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694589089981452.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151414822085341205/jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_f35eca41-632f-4814-b7de-bb4cc2dc021a.png\",\"filename\":\"jiangjin_A_beautiful_Chinese_girl_wearing_a_purple_cheongsam_wa_f35eca41-632f-4814-b7de-bb4cc2dc021a.png\",\"width\":2048,\"height\":2048,\"size\":6819493,\"hash\":\"f35eca41-632f-4814-b7de-bb4cc2dc021a\"},\"content\":\"**A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A beautiful Chinese girl wearing a purple cheongsam walking on a busy street, facing the screen, elegant demeanor, perfect figure. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:11:30', '2023-09-13 15:11:30', NULL),
(609, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画A Minion wearing the cloths of Spiderman', 14, 0, '2023-09-13 15:33:25', '2023-09-13 15:33:25', NULL),
(610, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词A Minion wearing the clothes of Spiderman --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 64, 0, '2023-09-13 15:33:27', '2023-09-13 15:33:27', NULL),
(611, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151420517715288064\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694590447265304.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151420516998074398/jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_b83e015a-6eea-490a-9d3e-408e7d9dd66d.png\",\"filename\":\"jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_b83e015a-6eea-490a-9d3e-408e7d9dd66d.png\",\"width\":2048,\"height\":2048,\"size\":6763320,\"hash\":\"b83e015a-6eea-490a-9d3e-408e7d9dd66d\"},\"content\":\"**A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:34:07', '2023-09-13 15:34:07', NULL),
(612, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151420780387762216\",\"reference_id\":\"1151420517715288064\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694590511769782.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151420779708289034/jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_94831e72-0d66-47ae-94c9-194d1a7a8332.png\",\"filename\":\"jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_94831e72-0d66-47ae-94c9-194d1a7a8332.png\",\"width\":2048,\"height\":2048,\"size\":6613684,\"hash\":\"94831e72-0d66-47ae-94c9-194d1a7a8332\"},\"content\":\"**A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:35:12', '2023-09-13 15:35:12', NULL),
(613, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie, unreal engine, cozy indoor lighting, artstation, detailed, digital painting,cinematic,character design by mark ryden and pixar and hayao miyazaki, unreal 5, daz, hyperrealistic, octane render', 69, 0, '2023-09-13 15:52:40', '2023-09-13 15:52:40', NULL),
(614, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie, unreal engine, cozy indoor lighting, artstation, detailed, digital painting,cinematic,character design by mark ryden and pixar and hayao miyazaki, unreal 5, daz, hyperrealistic, octane render --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 231, 0, '2023-09-13 15:52:42', '2023-09-13 15:52:42', NULL),
(615, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '绘画http://localhost:8888/chat/2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 34, 0, '2023-09-13 15:53:06', '2023-09-13 15:53:06', NULL),
(616, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '绘画提示词draw a beautiful landscape with mountains and a river --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 1120, 0, '2023-09-13 15:53:08', '2023-09-13 15:53:08', NULL),
(617, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '绘画portrait of a very very very very very very very very very very very very very beautiful woman, professional model lover', 26, 0, '2023-09-13 15:53:19', '2023-09-13 15:53:19', NULL),
(618, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '绘画提示词portrait of a very very very very very very very very very very very very very beautiful woman --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 1130, 0, '2023-09-13 15:53:21', '2023-09-13 15:53:21', NULL),
(619, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 24, '{\"message_id\":\"1151425656555585536\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694591671282917.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151425655939018752/jiangjin_portrait_of_a_very_very_very_very_very_very_very_very__58396c32-ead7-4482-997c-6068b5c15d95.png\",\"filename\":\"jiangjin_portrait_of_a_very_very_very_very_very_very_very_very__58396c32-ead7-4482-997c-6068b5c15d95.png\",\"width\":2048,\"height\":2048,\"size\":6910705,\"hash\":\"58396c32-ead7-4482-997c-6068b5c15d95\"},\"content\":\"**portrait of a very very very very very very very very very very very very very beautiful woman --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"portrait of a very very very very very very very very very very very very very beautiful woman --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:54:31', '2023-09-13 15:54:31', NULL),
(620, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 24, '绘画Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie, unreal engine, cozy indoor lighting, artstation, detailed, digital painting,cinematic,character design by mark ryden and pixar and hayao miyazaki, unreal 5, daz, hyperrealistic, octane render', 69, 0, '2023-09-13 15:55:45', '2023-09-13 15:55:45', NULL),
(621, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/programmer.jpg', 24, '绘画提示词Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 1183, 0, '2023-09-13 15:55:47', '2023-09-13 15:55:47', NULL),
(622, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画They grew up as childhood friends, sharing their dreams and secrets beneath the shade of the royal garden\'s ancient oak tree.', 28, 0, '2023-09-13 15:56:16', '2023-09-13 15:56:16', NULL),
(623, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词They grew up as childhood friends, sharing their dreams and secrets beneath the shade of the royal garden\'s ancient oak tree. --v 5.2 MidJourney ...', 931, 0, '2023-09-13 15:56:19', '2023-09-13 15:56:19', NULL),
(624, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 24, '{\"message_id\":\"1151426134362304582\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694591785020396.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151426133716377631/jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_45cd262a-cd1c-45ce-81b2-ad3b8802cdda.png\",\"filename\":\"jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_45cd262a-cd1c-45ce-81b2-ad3b8802cdda.png\",\"width\":2048,\"height\":2048,\"size\":6683539,\"hash\":\"45cd262a-cd1c-45ce-81b2-ad3b8802cdda\"},\"content\":\"**Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:56:25', '2023-09-13 15:56:25', NULL),
(625, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151426300616114196\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694591825587398.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151426299911479356/jiangjin_They_grew_up_as_childhood_friends_sharing_their_dreams_6a3668aa-33de-4d7a-95de-7b461b64ea75.png\",\"filename\":\"jiangjin_They_grew_up_as_childhood_friends_sharing_their_dreams_6a3668aa-33de-4d7a-95de-7b461b64ea75.png\",\"width\":2048,\"height\":2048,\"size\":8391140,\"hash\":\"6a3668aa-33de-4d7a-95de-7b461b64ea75\"},\"content\":\"**They grew up as childhood friends, sharing their dreams and secrets beneath the shade of the royal garden\'s ancient oak tree. --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"They grew up as childhood friends, sharing their dreams and secrets beneath the shade of the royal garden\'s ancient oak tree. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:57:06', '2023-09-13 15:57:06', NULL),
(626, 4, '37711760-018c-4a51-904e-cd84a437346c', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '绘画Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand', 55, 0, '2023-09-13 15:58:12', '2023-09-13 15:58:12', NULL),
(627, 4, '37711760-018c-4a51-904e-cd84a437346c', 'reply', '/images/avatar/gpt.png', 1, '绘画提示词Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand. --v 5.2 已推送任务到 MidJourney 机器人,请耐心等待任务执行...', 1011, 0, '2023-09-13 15:58:15', '2023-09-13 15:58:15', NULL),
(628, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151426771980402689\",\"reference_id\":\"\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694591938319324.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151426771619684362/jiangjin_Once_upon_a_time_in_a_quaint_village_lived_a_young_boy_d04494cc-c78d-4877-bb68-30ffbc103ef6.png\",\"filename\":\"jiangjin_Once_upon_a_time_in_a_quaint_village_lived_a_young_boy_d04494cc-c78d-4877-bb68-30ffbc103ef6.png\",\"width\":2048,\"height\":2048,\"size\":6523768,\"hash\":\"d04494cc-c78d-4877-bb68-30ffbc103ef6\"},\"content\":\"**Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand. --v 5.2 --s 750 --style raw** - \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:58:58', '2023-09-13 15:58:58', NULL),
(629, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151426942130733056\",\"reference_id\":\"1151426134362304582\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694591979185889.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151426940746596452/jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_e7c9d65f-d869-40f5-a092-c83c47218344.png\",\"filename\":\"jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_e7c9d65f-d869-40f5-a092-c83c47218344.png\",\"width\":2048,\"height\":2048,\"size\":6713348,\"hash\":\"e7c9d65f-d869-40f5-a092-c83c47218344\"},\"content\":\"**Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 15:59:39', '2023-09-13 15:59:39', NULL),
(630, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151427109349228544\",\"reference_id\":\"1151426134362304582\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694592018114405.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151427107642163210/jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_13493a0f-96a4-4e29-9045-c987fe3eb5f0.png\",\"filename\":\"jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_13493a0f-96a4-4e29-9045-c987fe3eb5f0.png\",\"width\":2048,\"height\":2048,\"size\":6732819,\"hash\":\"13493a0f-96a4-4e29-9045-c987fe3eb5f0\"},\"content\":\"**Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 16:00:18', '2023-09-13 16:00:18', NULL),
(631, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 0, '{\"message_id\":\"1151428899272675328\",\"reference_id\":\"1151427109349228544\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694592444831964.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151428898836463666/jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_90d09eb1-800b-461c-97ea-9f2d3c9f4e77.png\",\"filename\":\"jiangjin_Cute_small_humanoid_cat_sitting_in_a_movie_theater_eat_90d09eb1-800b-461c-97ea-9f2d3c9f4e77.png\",\"width\":1024,\"height\":1024,\"size\":1557902,\"hash\":\"90d09eb1-800b-461c-97ea-9f2d3c9f4e77\"},\"content\":\"**Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw** - Image #2 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"Cute small humanoid cat sitting in a movie theater eating popcorn watching a movie --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 16:07:25', '2023-09-13 16:07:25', NULL),
(632, 4, '37711760-018c-4a51-904e-cd84a437346c', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1151429544562139206\",\"reference_id\":\"1151426771980402689\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694592598481298.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1151429544008503367/jiangjin_Once_upon_a_time_in_a_quaint_village_lived_a_young_boy_84db80b5-cb24-4f71-a0df-a48170856cbe.png\",\"filename\":\"jiangjin_Once_upon_a_time_in_a_quaint_village_lived_a_young_boy_84db80b5-cb24-4f71-a0df-a48170856cbe.png\",\"width\":2048,\"height\":2048,\"size\":6348516,\"hash\":\"84db80b5-cb24-4f71-a0df-a48170856cbe\"},\"content\":\"**Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand. --v 5.2 --s 750 --style raw** - Variations (Strong) by \\u003c@1075058490378289194\\u003e (fast)\",\"prompt\":\"Once upon a time in a quaint village, lived a young boy named Liam and his little sister, Mia. Liam was known for his adventurous spirit, while Mia had a heart full of curiosity. They shared an unbreakable bond that only siblings could understand. --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-13 16:09:59', '2023-09-13 16:09:59', NULL),
(633, 4, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 'mj', '/images/avatar/mid_journey.png', 1, '{\"message_id\":\"1152168432196919336\",\"reference_id\":\"1151420780387762216\",\"image\":{\"url\":\"http://172.22.11.47:9010/chatgpt-plus/1694768761715537.png\",\"proxy_url\":\"https://media.discordapp.net/attachments/1151037077308325901/1152168431836201021/jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_f8094ada-d861-49c8-8ffc-f9af0f63fcbc.png\",\"filename\":\"jiangjin_A_Minion_wearing_the_clothes_of_Spiderman_f8094ada-d861-49c8-8ffc-f9af0f63fcbc.png\",\"width\":1024,\"height\":1024,\"size\":1495403,\"hash\":\"f8094ada-d861-49c8-8ffc-f9af0f63fcbc\"},\"content\":\"**A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw** - Image #4 \\u003c@1075058490378289194\\u003e\",\"prompt\":\"A Minion wearing the clothes of Spiderman --v 5.2 --s 750 --style raw\",\"status\":\"Finished\",\"progress\":100}', 0, 0, '2023-09-15 17:06:02', '2023-09-15 17:06:02', NULL),
(634, 4, '2a737e88-a284-4328-b362-3be89f6f85fa', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '你是谁', 4, 1, '2023-10-11 11:34:02', '2023-10-11 11:34:02', NULL),
(635, 4, '8eb31442-888a-4d38-bf99-29eab3f27050', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-11 11:47:52', '2023-10-11 11:47:52', NULL),
(636, 4, '8eb31442-888a-4d38-bf99-29eab3f27050', 'reply', '/images/avatar/gpt.png', 1, ' 你好👋!我是人工智能助手 智谱清言,可以叫我小智🤖,很高兴见到你,欢迎问我任何问题。', 59, 1, '2023-10-11 11:47:52', '2023-10-11 11:47:52', NULL),
(637, 4, '8eb31442-888a-4d38-bf99-29eab3f27050', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-11 11:49:26', '2023-10-11 11:49:26', NULL),
(638, 4, '8eb31442-888a-4d38-bf99-29eab3f27050', 'reply', '/images/avatar/gpt.png', 1, ' 我是一个名为 智谱清言 的人工智能助手,可以叫我小智🤖,我的任务是针对用户的问题和要求提供适当的答复和支持。', 125, 1, '2023-10-11 11:49:27', '2023-10-11 11:49:27', NULL),
(639, 4, '4b142cef-cd2c-4192-826a-569647792012', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-11 12:04:53', '2023-10-11 12:04:53', NULL),
(640, 4, '4b142cef-cd2c-4192-826a-569647792012', 'reply', '/images/avatar/gpt.png', 1, ' 我是一个名为 ChatGLM2-6B 的人工智能助手,是基于清华大学 KEG 实验室和智谱 AI 公司于 2023 年共同训练的语言模型开发的。我的任务是针对用户的问题和要求提供适当的答复和支持。', 104, 1, '2023-10-11 12:04:54', '2023-10-11 12:04:54', NULL),
(641, 4, '4b142cef-cd2c-4192-826a-569647792012', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你会干嘛', 7, 1, '2023-10-11 12:04:59', '2023-10-11 12:04:59', NULL),
(642, 4, '4b142cef-cd2c-4192-826a-569647792012', 'reply', '/images/avatar/gpt.png', 1, ' 我的主要任务是针对用户的问题和要求提供适当的答复和支持。我具体的功能包括但不限于:- 回答各种类型的问题,包括常识问题、学术问题、技术问题等等。 - 提供相关的知识和信息,包括历史、文化、科技、娱乐等方面的知识。 - 进行语言翻译,将中文翻译成英文,或者将英文翻译成中文。 - 提供一些基本的语言处理功能,例如文字聊天、语音识别等。总的来说,我的目标是帮助用户解决各种问题和困难,提供全面、准确的信息和服务。', 334, 1, '2023-10-11 12:05:00', '2023-10-11 12:05:00', NULL),
(643, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-11 12:11:00', '2023-10-11 12:11:00', NULL);
INSERT INTO `chatgpt_chat_history` (`id`, `user_id`, `chat_id`, `type`, `icon`, `role_id`, `content`, `tokens`, `use_context`, `created_at`, `updated_at`, `deleted_at`) VALUES
(644, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'reply', '/images/avatar/gpt.png', 1, '你好,有什么我可以帮助你的吗?', 20, 1, '2023-10-11 12:11:00', '2023-10-11 12:11:00', NULL),
(645, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁?', 5, 1, '2023-10-11 12:11:06', '2023-10-11 12:11:06', NULL),
(646, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'reply', '/images/avatar/gpt.png', 1, '我是百度公司开发的文心一言英文名是ERNIE Bot可以协助你完成范围广泛的任务并提供有关各种主题的信息比如回答问题提供定义和解释及建议。有什么我可以帮助你的吗', 108, 1, '2023-10-11 12:11:07', '2023-10-11 12:11:07', NULL),
(647, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '唐朝高适的《别董大》', 15, 1, '2023-10-11 13:36:16', '2023-10-11 13:36:16', NULL),
(648, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'reply', '/images/avatar/gpt.png', 1, '《别董大二首》是唐朝高适的诗作。\n全文如下\n千里黄云白日曛北风吹雁雪纷纷。\n莫愁前路无知己天下谁人不识君。\n六翮飘飖私自怜一离京洛十余年。\n丈夫贫贱应未足今日相逢无酒钱。', 249, 1, '2023-10-11 13:36:16', '2023-10-11 13:36:16', NULL),
(649, 4, '247b92b8-8e34-4e7d-b1c9-8fb1ea85ed21', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '今日热搜', 7, 0, '2023-10-11 13:50:20', '2023-10-11 13:50:20', NULL),
(650, 4, '247b92b8-8e34-4e7d-b1c9-8fb1ea85ed21', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-10-11 05:50:19\n\n1、 [社保缴满15年后能坐等退休吗](https://s.weibo.com/weibo?q=社保缴满15年后能坐等退休吗) [热度2951197]\n\n2、 [作者七月新番去世](https://s.weibo.com/weibo?q=作者七月新番去世) [热度1948830]\n\n3、 [全国网络普法行四川站](https://s.weibo.com/weibo?q=全国网络普法行四川站) [热度1182572]\n\n4、 [酒店床上布条的作用](https://s.weibo.com/weibo?q=酒店床上布条的作用) [热度973404]\n\n5、 [王牌8官宣阵容](https://s.weibo.com/weibo?q=王牌8官宣阵容) [热度832837]\n\n6、 [社保卡一定要记得激活](https://s.weibo.com/weibo?q=社保卡一定要记得激活) [热度678753]\n\n7、 [每坐1小时平均寿命缩短22分钟](https://s.weibo.com/weibo?q=每坐1小时平均寿命缩短22分钟) [热度627133]\n\n8、 [张钧甯阮经天 16年前16年后](https://s.weibo.com/weibo?q=张钧甯阮经天 16年前16年后) [热度587130]\n\n9、 [央视镜头里的陈都灵](https://s.weibo.com/weibo?q=央视镜头里的陈都灵) [热度565210]\n\n10、 [1个怀的是娃1个怀的是宠爱](https://s.weibo.com/weibo?q=1个怀的是娃1个怀的是宠爱) [热度545550]', 14, 0, '2023-10-11 13:50:20', '2023-10-11 13:50:20', NULL),
(651, 4, '252ad824-59c8-4e37-8dbc-d3c4ecbe76bf', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '今日热搜', 7, 1, '2023-10-11 13:50:33', '2023-10-11 13:50:33', NULL),
(652, 4, '252ad824-59c8-4e37-8dbc-d3c4ecbe76bf', 'reply', '/images/avatar/gpt.png', 1, '今日热搜包括以下事件:\n\n* **女工下班后做团长凌晨突发疾病倒下**。江苏扬州28岁女子小郑公司下午通知晚上做团晚上连轴转原本需要帮忙爱人常年在外工作没帮上忙的小郑很生气。情绪波动引发血压升高下班后小郑身体已疲惫不堪突然出现左半身麻木眩晕症状被诊断为突发性脑出血。\n* **网红虐猫事件**。据一位微博博主表示,知名田园猫博主@爱吃鱼的喵小姐 在两个月前把猫咪送给他人寄养后就不再联系。在今年6月她返京后还看到该名博主拍了猫咪十分虐待猫的相片发在小红书上。 小红书相关人士称已经把该情况反馈给平台该网红进行处理,现在正好有个姐妹进店用类似包装买了烤鸭一块刚炸好的里面好多骨头并用镊子夹紧当宠物犬面前咬被直接呕了导致周围人大写呕吐加直接流泪被抓住后果非常严重这件事的平台意见看法言论一出舆论翻车了自己就没有责任有贵人救济弱势群体不只有血缘才能守护猫咪以后一定有人收养它的\n\n* **前国乒选手陈玘成世界冠军教练**。前国乒选手陈玘凭借自己的努力获得了属于自己的荣誉,并成为了世界冠军教练。\n\n以上内容仅供参考建议访问各大平台获取更全面的信息。', 633, 1, '2023-10-11 13:50:34', '2023-10-11 13:50:34', NULL),
(653, 4, 'b3e02232-d0ad-4ca4-abab-f594c2fff0a1', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '今日热搜', 7, 1, '2023-10-11 14:25:00', '2023-10-11 14:25:00', NULL),
(654, 4, 'b3e02232-d0ad-4ca4-abab-f594c2fff0a1', 'reply', '/images/avatar/gpt.png', 1, '1. 奇瑞股价飙升\n2. 美国大选初步结果出炉\n3. 张雨绮怀孕传闻\n4. 乌鲁木齐新增新冠肺炎病例\n5. 《长津湖》电影热映\n6. 世界杯预选赛亚洲区比赛结果\n7. 大连新增新冠肺炎病例\n8. 马刺火箭交易奥拉迪波\n9. 高校开展就业创业嘉年华活动\n10. 美国总统特朗普发布推特', 197, 1, '2023-10-11 14:25:00', '2023-10-11 14:25:00', NULL),
(655, 4, 'b3e02232-d0ad-4ca4-abab-f594c2fff0a1', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '今日热搜', 7, 0, '2023-10-11 14:25:16', '2023-10-11 14:25:16', NULL),
(656, 4, 'b3e02232-d0ad-4ca4-abab-f594c2fff0a1', 'reply', '/images/avatar/gpt.png', 1, '**新浪微博 ‧ 今日热搜**最新更新2023-10-11 06:25:17\n\n1、 [社保缴满15年后能坐等退休吗](https://s.weibo.com/weibo?q=社保缴满15年后能坐等退休吗) [热度2603991]\n\n2、 [碧桂园](https://s.weibo.com/weibo?q=碧桂园) [热度1536423]\n\n3、 [行走黄河 遇见幸福](https://s.weibo.com/weibo?q=行走黄河 遇见幸福) [热度1445745]\n\n4、 [作者七月新番去世](https://s.weibo.com/weibo?q=作者七月新番去世) [热度1431893]\n\n5、 [女研究生养猫反向将自己关进笼子](https://s.weibo.com/weibo?q=女研究生养猫反向将自己关进笼子) [热度762022]\n\n6、 [巴以冲突升级](https://s.weibo.com/weibo?q=巴以冲突升级) [热度643565]\n\n7、 [没啥了不起只是更较真](https://s.weibo.com/weibo?q=没啥了不起只是更较真) [热度641720]\n\n8、 [王牌8官宣阵容](https://s.weibo.com/weibo?q=王牌8官宣阵容) [热度612813]\n\n9、 [卢昱晓 你好李佳](https://s.weibo.com/weibo?q=卢昱晓 你好李佳) [热度580527]\n\n10、 [社保卡一定要记得激活](https://s.weibo.com/weibo?q=社保卡一定要记得激活) [热度543872]', 211, 0, '2023-10-11 14:25:17', '2023-10-11 14:25:17', NULL),
(657, 4, 'cb843e20-8f8a-476b-a702-65688a46a4f3', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '生命的意义是什么', 9, 1, '2023-10-11 15:32:06', '2023-10-11 15:32:06', NULL),
(658, 4, 'cb843e20-8f8a-476b-a702-65688a46a4f3', 'reply', '/images/avatar/psychiatrist.jpg', 27, '生命的意义是一个深奥而复杂的问题,不同的人可能有不同的回答。对于我个人而言,我认为生命的意义在于我们能够体验和感知世界,并与他人建立联系。每个人都有自己的独特经历和故事,这些经历和故事构成了我们的身份和价值观。通过与他人的交流和互动,我们可以分享彼此的经验和故事,共同成长和进步。同时,生命的意义也在于我们对自我认知和自我实现的过程。通过不断地探索自己的内心世界,发现自己的潜能和才华,我们可以变得更加自信和有成就感。这些意义可能因人而异,因为每个人的经历和价值观都是独特的。最重要的是,我们每个人都应该珍惜生命,关注自己的心理健康,积极面对生活中的挑战和困难。', 490, 1, '2023-10-11 15:32:07', '2023-10-11 15:32:07', NULL),
(659, 4, 'cb843e20-8f8a-476b-a702-65688a46a4f3', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 27, '你比较擅长什么心理学知识', 17, 1, '2023-10-11 15:32:28', '2023-10-11 15:32:28', NULL),
(660, 4, 'cb843e20-8f8a-476b-a702-65688a46a4f3', 'reply', '/images/avatar/psychiatrist.jpg', 27, '我比较擅长使用情景咨询法、认知重构法、自我洞察法、行为调节法等咨询方法来帮助客户解决各种心理健康问题。这些方法可以帮助客户了解自己的内心世界,发现自己的潜力和弱点,并找到解决问题的方法。同时,我也注重与客户的沟通和交流,通过深入了解他们的背景和经历,为他们提供个性化的建议和帮助。', 666, 1, '2023-10-11 15:32:29', '2023-10-11 15:32:29', NULL),
(661, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '白居易琵琶行的前8句', 15, 1, '2023-10-11 15:40:57', '2023-10-11 15:40:57', NULL),
(662, 4, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 'reply', '/images/avatar/gpt.png', 1, '白居易《琵琶行》的前八句为:\n\n浔阳江头夜送客枫叶荻花秋瑟瑟。\n主人下马客在船举酒欲饮无管弦。\n醉不成欢惨将别别时茫茫江浸月。\n忽闻水上琵琶声主人忘归客不发。\n寻声暗问弹者谁琵琶声停欲语迟。\n移船相近邀相见添酒回灯重开宴。\n千呼万唤始出来犹抱琵琶半遮面。\n转轴拨弦三两声未成曲调先有情。\n弦弦掩抑声声思似诉平生不得志。', 476, 1, '2023-10-11 15:40:58', '2023-10-11 15:40:58', NULL),
(663, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-11 17:33:09', '2023-10-11 17:33:09', NULL),
(664, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'reply', '/images/avatar/gpt.png', 1, '你好!很高兴为您提供帮助,请问有什么问题我可以帮您解答吗?', 36, 1, '2023-10-11 17:33:11', '2023-10-11 17:33:11', NULL),
(665, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁?', 5, 1, '2023-10-11 17:33:19', '2023-10-11 17:33:19', NULL),
(666, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'reply', '/images/avatar/gpt.png', 1, '您好,我是科大讯飞研发的认知智能大模型,我的名字叫讯飞星火认知大模型。我可以和人类进行自然交流,解答问题,高效完成各领域认知智能需求。', 116, 1, '2023-10-11 17:33:19', '2023-10-11 17:33:19', NULL),
(667, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你会干啥', 6, 1, '2023-10-11 17:48:49', '2023-10-11 17:48:49', NULL),
(668, 4, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 'reply', '/images/avatar/gpt.png', 1, '我是讯飞星火认知大模型,我可以通过自然语言交互的方式,为您提供包括语言理解、问答、推理等各类认知智能服务。', 62, 1, '2023-10-11 17:48:49', '2023-10-11 17:48:49', NULL),
(669, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你会干啥', 6, 1, '2023-10-11 17:49:06', '2023-10-11 17:49:06', NULL),
(670, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'reply', '/images/avatar/gpt.png', 1, '我是讯飞星火认知大模型,我可以通过自然语言交互的方式,为您提供包括语言理解、问答、推理等各类认知智能服务。', 62, 1, '2023-10-11 17:49:07', '2023-10-11 17:49:07', NULL),
(671, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-11 17:53:53', '2023-10-11 17:53:53', NULL),
(672, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'reply', '/images/avatar/gpt.png', 1, '您好,我是科大讯飞研发的认知智能大模型,我的名字叫讯飞星火认知大模型。我可以和人类进行自然交流,解答问题,高效完成各领域认知智能需求。', 79, 1, '2023-10-11 17:53:53', '2023-10-11 17:53:53', NULL),
(673, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-11 18:03:23', '2023-10-11 18:03:23', NULL),
(674, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'reply', '/images/avatar/gpt.png', 1, '您好,我是科大讯飞研发的认知智能大模型,我的名字叫讯飞星火认知大模型。我可以和人类进行自然交流,解答问题,高效完成各领域认知智能需求。', 220, 1, '2023-10-11 18:03:24', '2023-10-11 18:03:24', NULL),
(675, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你会干嘛', 7, 1, '2023-10-11 18:03:32', '2023-10-11 18:03:32', NULL),
(676, 4, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 'reply', '/images/avatar/gpt.png', 1, '我是讯飞星火认知大模型,我可以通过自然语言交互的方式,为您提供包括语言理解、问答、推理等各类认知智能服务。', 283, 1, '2023-10-11 18:03:32', '2023-10-11 18:03:32', NULL),
(677, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-11 18:09:11', '2023-10-11 18:09:11', NULL),
(678, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'reply', '/images/avatar/gpt.png', 1, '你好!很高兴为您提供帮助。请问有什么问题我可以帮您解答吗?', 37, 1, '2023-10-11 18:09:11', '2023-10-11 18:09:11', NULL),
(679, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '写一首五言律诗', 9, 1, '2023-10-11 18:09:18', '2023-10-11 18:09:18', NULL),
(680, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'reply', '/images/avatar/gpt.png', 1, '山川秀丽水长流,\n花鸟欢歌春意浓。\n人间美景无限好\n只愿此生常相伴。', 90, 1, '2023-10-11 18:09:18', '2023-10-11 18:09:18', NULL),
(681, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你会干嘛', 7, 1, '2023-10-11 18:09:26', '2023-10-11 18:09:26', NULL),
(682, 4, '3da81eac-4f0f-4786-9726-38d4598d0236', 'reply', '/images/avatar/gpt.png', 1, '我是讯飞星火认知大模型,我可以通过自然语言交互的方式,为您提供包括语言理解、问答、推理等各类认知智能服务。', 153, 1, '2023-10-11 18:09:26', '2023-10-11 18:09:26', NULL),
(683, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-11 18:10:57', '2023-10-11 18:10:57', NULL),
(684, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么我可以帮助你的吗?', 20, 1, '2023-10-11 18:10:57', '2023-10-11 18:10:57', NULL),
(685, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是哪个模型', 7, 1, '2023-10-11 18:11:02', '2023-10-11 18:11:02', NULL),
(686, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'reply', '/images/avatar/gpt.png', 1, '抱歉,我无法告知你关于我的模型参数规模等信息,您可以问我其他问题。', 56, 1, '2023-10-11 18:11:02', '2023-10-11 18:11:02', NULL),
(687, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是v1.5 还是 v2.0', 13, 1, '2023-10-11 18:11:17', '2023-10-11 18:11:17', NULL),
(688, 4, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 'reply', '/images/avatar/gpt.png', 1, '我没有一个明确的版本号。我的训练和优化是一个持续的过程,随着数据的增加和技术的进步,我会不断地更新和改进自己的能力。您可以认为我是一个不断进化和发展的,而不是一个固定的版本。', 153, 1, '2023-10-11 18:11:17', '2023-10-11 18:11:17', NULL),
(689, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, 'hello', 1, 1, '2023-10-11 18:11:39', '2023-10-11 18:11:39', NULL),
(690, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'reply', '/images/avatar/gpt.png', 1, 'Hello! How can I assist you today?', 10, 1, '2023-10-11 18:11:39', '2023-10-11 18:11:39', NULL),
(691, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, 'who are you?', 4, 1, '2023-10-11 18:11:48', '2023-10-11 18:11:48', NULL),
(692, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'reply', '/images/avatar/gpt.png', 1, 'Hello, I am iFLYTEK Spark developed by iFLYTEK, and my name is iFLYTEK Spark. I can communicate with human beings naturally, answer questions, and efficiently complete the needs of cognitive intelligence in various fields.', 63, 1, '2023-10-11 18:11:49', '2023-10-11 18:11:49', NULL),
(693, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁?', 5, 1, '2023-10-11 18:12:03', '2023-10-11 18:12:03', NULL),
(694, 4, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 'reply', '/images/avatar/gpt.png', 1, '您好,我是科大讯飞研发的认知智能大模型,我的名字叫讯飞星火认知大模型。我可以和人类进行自然交流,解答问题,高效完成各领域认知智能需求。', 143, 1, '2023-10-11 18:12:04', '2023-10-11 18:12:04', NULL),
(695, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-12 09:34:58', '2023-10-12 09:34:58', NULL),
(696, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'reply', '/images/avatar/gpt.png', 1, '您好我是百度研发的知识增强大语言模型中文名是文心一言英文名是ERNIE Bot。我能够与人对话互动回答问题协助创作高效便捷地帮助人们获取信息、知识和灵感。\n\n如果您有任何问题请随时告诉我。', 110, 1, '2023-10-12 09:34:59', '2023-10-12 09:34:59', NULL),
(697, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '介绍一下白居易', 10, 1, '2023-10-12 09:35:30', '2023-10-12 09:35:30', NULL),
(698, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'reply', '/images/avatar/gpt.png', 1, '白居易,字乐天,号香山居士,是中唐时期的伟大诗人。他的诗歌主张通俗性、写实性,在中国诗史上占有重要的地位。白居易的诗歌题材广泛,形式多样,语言平易通俗,他有多首脍炙人口的诗作,比如《赋得古原草送别》、《长恨歌》和《琵琶行》等。', 265, 1, '2023-10-12 09:35:31', '2023-10-12 09:35:31', NULL),
(699, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁?', 5, 1, '2023-10-12 09:41:37', '2023-10-12 09:41:37', NULL),
(700, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'reply', '/images/avatar/gpt.png', 1, '我是文心一言英文名是ERNIE Bot。我可以协助您完成范围广泛的任务并提供有关各种主题的信息比如回答问题提供定义和解释及建议。如果您有任何问题请随时告诉我。', 347, 1, '2023-10-12 09:41:38', '2023-10-12 09:41:38', NULL),
(701, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-12 09:41:54', '2023-10-12 09:41:54', NULL),
(702, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'reply', '/images/avatar/gpt.png', 1, '你好!有什么我可以帮助你的吗?', 20, 1, '2023-10-12 09:41:54', '2023-10-12 09:41:54', NULL),
(703, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是谁', 4, 1, '2023-10-12 09:41:58', '2023-10-12 09:41:58', NULL),
(704, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'reply', '/images/avatar/gpt.png', 1, '您好,我是科大讯飞研发的认知智能大模型,我的名字叫讯飞星火认知大模型。我可以和人类进行自然交流,解答问题,高效完成各领域认知智能需求。', 99, 1, '2023-10-12 09:41:58', '2023-10-12 09:41:58', NULL),
(705, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '请问佛教里的缘起性空是什么意思?', 20, 1, '2023-10-12 09:42:30', '2023-10-12 09:42:30', NULL),
(706, 4, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 'reply', '/images/avatar/gpt.png', 1, '缘起性空是佛教中的一个概念,意思是指宇宙中的一切事物包括宇宙本身都是由各种因素组合而成的,没有任何事物可以不依赖其它条件而独立存在,这个叫缘起(也叫缘生,也就是依因缘而产生的意思)。由于任何事物都是各种其它因察隐缘组合而成的锋行,那么这个事物就没有它独立的自性,或者也可以说,任何事物的性质都是不确定的,会随着因缘的变化而变化,因为没有确定的自性,所以叫自性空,简说为性空。 ', 335, 1, '2023-10-12 09:42:30', '2023-10-12 09:42:30', NULL),
(707, 4, '3163c4e0-33c9-4ac1-a8ae-f84b7ee0b355', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-12 09:44:51', '2023-10-12 09:44:51', NULL),
(708, 4, '3163c4e0-33c9-4ac1-a8ae-f84b7ee0b355', 'reply', '/images/avatar/gpt.png', 1, '你好!很高兴为您提供帮助,请问有什么问题我可以帮您解答吗?', 36, 1, '2023-10-12 09:44:51', '2023-10-12 09:44:51', NULL),
(709, 4, '582596a6-386b-4a11-9c31-0b12cd2aa172', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你好', 2, 1, '2023-10-12 09:57:14', '2023-10-12 09:57:14', NULL),
(710, 4, '582596a6-386b-4a11-9c31-0b12cd2aa172', 'reply', '/images/avatar/gpt.png', 1, '你好!请问有什么我可以帮助您的吗?', 22, 1, '2023-10-12 09:57:14', '2023-10-12 09:57:14', NULL),
(711, 4, '7b8c2dff-1133-4411-9213-e4ca9e901821', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '造成一个贫困的原因有哪些?', 15, 1, '2023-10-12 10:00:09', '2023-10-12 10:00:09', NULL),
(712, 4, '7b8c2dff-1133-4411-9213-e4ca9e901821', 'reply', '/images/avatar/gpt.png', 1, '造成贫困的原因有很多,包括环境因素、健康状况、教育水平、社会福利制度和经济系统等 。 一些国家的经济系统可能存在不公平现象,导致贫富差距加大,贫困问题加剧。 不健全的社会福利制度可能无法为需要帮助的人提供足够的支持,导致贫困问题的持续存在。', 156, 1, '2023-10-12 10:00:09', '2023-10-12 10:00:09', NULL),
(713, 4, '7b8c2dff-1133-4411-9213-e4ca9e901821', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '秦时明月汉时关', 9, 1, '2023-10-13 09:36:19', '2023-10-13 09:36:19', NULL),
(714, 4, '7b8c2dff-1133-4411-9213-e4ca9e901821', 'reply', '/images/avatar/gpt.png', 1, '这是唐朝诗人王昌龄所作《出塞(其二)》中的一句诗。这句诗的意思是秦汉时的明月,秦汉时的关塞,表达了作者思念名将卫青和李广,以及痛恨匈奴人入侵的思想感情 。', 111, 1, '2023-10-13 09:36:20', '2023-10-13 09:36:20', NULL),
(715, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '秦时明月汉时光', 10, 1, '2023-10-13 09:36:44', '2023-10-13 09:36:44', NULL),
(716, 4, '737d3395-b098-4c1e-af29-21453b71b45f', 'reply', '/images/avatar/gpt.png', 1, '“秦时明月汉时关,万里长征人未还”出自唐代·王昌龄的《出塞二首·其一》。这句话的意思是:秦汉以来,明月照耀着边关,守边将士长期远离家乡,没能回家。\n此诗内容主要是反映边塞战争与描写军旅生活。这首诗具有雄浑壮美的意境丰富的想象和浪漫的色彩。全诗既有“秦时明月”的苍凉豪迈也有人“万里长征”的浩大声势既有“汉时关”的悲壮旷远也有“人未还”的战争景象。\n此外“秦时明月汉时关”也可以理解为“秦朝的明月汉朝的关”通过明月和关的形象来象征永恒的时间和空间表达了诗人对历史和现实的深刻思考。这句诗也被视为诗人表达家国情怀的名句之一。\n因此“秦时明月汉时光”可能暗示了诗人对历史的感慨和对未来的展望也反映了他的家国情怀和理想主义。同时也可以提醒我们在看待历史和现实时我们应该从中吸取经验教训积极面对未来。', 683, 1, '2023-10-13 09:36:45', '2023-10-13 09:36:45', NULL),
(717, 95, '67c2d3e2-cdfe-4254-b858-2118eed8970c', 'prompt', '/images/avatar/user.png', 1, '今日头条', 4, 0, '2023-10-13 16:10:08', '2023-10-13 16:10:08', NULL),
(718, 95, '67c2d3e2-cdfe-4254-b858-2118eed8970c', 'reply', '/images/avatar/gpt.png', 1, '**网易新闻头条**最新更新2023-10-13 08:10:10\n\n1、 [大众新能源车失灵撞飞保安亭 居民直呼\"天呐好吓人\"](https://www.163.com/dy/article/9IG74V5H00963VRO_VTG0NI1ELupdateDoc.html) [星晨视频]\n\n2、 [山西一学校强制学生订冬季校服 校服内填充物为碎纸屑](https://www.163.com/dy/article/9IG74V5H00963VRO_VUG0QDMG6updateDoc.html) [天目看看]\n\n3、 [以色列新郎婚礼当天被征兵 婚礼改在军事基地举行](https://www.163.com/dy/article/9IG74V5H00963VRO_VKG0Q1637updateDoc.html) [军事放大镜]\n\n4、 [实拍断电后的加沙城:城区一片漆黑 还能听到爆炸声](https://www.163.com/dy/article/9IG74V5H00963VRO_VKG0Q9F0DupdateDoc.html) [军事放大镜]\n\n5、 [记者连线遇空袭距爆炸点仅100米 主持人打断建议避险](https://www.163.com/dy/article/9IG74V5H00963VRO_VKG0NDOS8updateDoc.html) [全球速览]\n\n6、 [郑州一轿车凌晨在路口漂移炸街 连转几个圈产生烟雾](https://www.163.com/dy/article/9IG74V5H00963VRO_VPG08I0V2updateDoc.html) [西部决策网D视频]\n\n7、 [孙卓被拐案宣判两名被告分别被判刑5年、2年](http://news.163.com/article/IGUJ9BRK0001899O.html) [深圳市南山区人民法院]\n\n8、 [媒体:以军打地面战或还有顾忌 最大变量是人质问题](https://www.163.com/dy/article/IGSPKV5M0514FGV8.html) [直新闻]\n\n9、 [车厢还有乘客 深圳地铁保洁阿姨就直接用拖把擦座椅 ](https://www.163.com/dy/article/9IG74V5H00963VRO_VGG0G9PTLupdateDoc.html) [鹤壁视角]\n\n10、 [长沙电信大楼火灾系未熄灭烟头引发 20多人被严肃问责](http://news.163.com/article/IGUGHSIK0514R9OJ.html) [环球网资讯]', 9, 0, '2023-10-13 16:10:10', '2023-10-13 16:10:10', NULL),
(719, 4, 'f06df750-daae-4393-97c5-d7f8e4e59238', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '你是什么模型?', 8, 1, '2023-10-25 08:38:46', '2023-10-25 08:38:46', NULL),
(720, 4, 'f06df750-daae-4393-97c5-d7f8e4e59238', 'reply', '/images/avatar/gpt.png', 1, '我是百度依托飞桨、文心大模型的技术研发的知识增强大语言模型属于文心·NLP大模型。', 60, 1, '2023-10-25 08:38:48', '2023-10-25 08:38:48', NULL),
(721, 4, 'f06df750-daae-4393-97c5-d7f8e4e59238', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '文心4.0吗', 7, 1, '2023-10-25 08:39:05', '2023-10-25 08:39:05', NULL),
(722, 4, 'f06df750-daae-4393-97c5-d7f8e4e59238', 'reply', '/images/avatar/gpt.png', 1, '文心一言基于文心大模型技术推出而文心大模型自2019年诞生至今已经升级多代从单一的自然语言理解延申到多模态包括视觉、文档、文图、语音等多模态多功能因此“文心一言”是基于百度强大的技术能力不仅能回答问题还能进行文本创作拥有很多新技能等您来探索。', 208, 1, '2023-10-25 08:39:09', '2023-10-25 08:39:09', NULL),
(723, 4, '5bd493ed-176b-4c14-87ec-b95e4a75c13b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 63, 1, '2023-10-25 08:40:44', '2023-10-25 08:40:44', NULL),
(724, 4, '5bd493ed-176b-4c14-87ec-b95e4a75c13b', 'reply', '/images/avatar/gpt.png', 1, '因为问题中只提到了顺时针转动第三个齿轮,而没有提到其他齿轮的状态,所以无法确定第七齿轮会如何转动。如果所有的齿轮都排成一排并且彼此咬合,那么它们之间的相对位置也会发生改变。但是在这个问题中,没有提供足够的信息来确定第七齿轮会如何转动。', 195, 1, '2023-10-25 08:40:45', '2023-10-25 08:40:45', NULL),
(725, 4, '775fd4bb-4e70-4032-98e5-35a60ddba437', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 63, 1, '2023-10-25 08:41:06', '2023-10-25 08:41:06', NULL),
(726, 4, '775fd4bb-4e70-4032-98e5-35a60ddba437', 'reply', '/images/avatar/gpt.png', 1, '齿轮的工作原理是,对于两个相邻的彼此咬合的齿轮,当转动其中一个时,另一个齿轮会以相反的方向旋转。\n根据题目中的描述七个齿轮排成一排彼此咬合当顺时针方向转动第三个时\n* 第四个齿轮会以与第三个齿轮(顺时针旋转)相反的方向旋转,即第四个齿轮逆时针方向旋转。\n* 第五个齿轮会以与第四个齿轮(逆时针旋转)相反的方向旋转,即第五个齿轮顺时针方向旋转。\n* 第六个齿轮会以与第五个齿轮(顺时针旋转)相反的方向旋转,即第六个齿轮逆时针方向旋转。\n* 第七个齿轮会以与第六个齿轮(逆时针旋转)相反的方向旋转,即第七个齿轮顺时针方向旋转。\n因此第七个齿轮会以顺时针方向旋转。', 432, 1, '2023-10-25 08:41:09', '2023-10-25 08:41:09', NULL),
(727, 4, '24f70a37-2858-4c91-b55d-a9eb7eae9a03', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 63, 1, '2023-10-25 08:42:17', '2023-10-25 08:42:17', NULL),
(728, 4, '24f70a37-2858-4c91-b55d-a9eb7eae9a03', 'reply', '/images/avatar/gpt.png', 1, '根据题目描述,第七个齿轮会与第六个齿轮咬合并顺时针转动。', 103, 1, '2023-10-25 08:42:18', '2023-10-25 08:42:18', NULL),
(729, 4, '97b12372-76af-4517-ad7a-1f2741a3dadc', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 63, 1, '2023-10-25 09:05:03', '2023-10-25 09:05:03', NULL),
(730, 4, '97b12372-76af-4517-ad7a-1f2741a3dadc', 'reply', '/images/avatar/gpt.png', 1, '第七个齿轮会顺时针转动。因为相邻的齿轮会以相反的方向转动,所以每个相邻的齿轮的转动方向会交替变换。第三个齿轮顺时针转动,那么第四个齿轮会逆时针转动,第五个齿轮顺时针转动,第六个齿轮逆时针转动,第七个齿轮顺时针转动。', 213, 1, '2023-10-25 09:05:05', '2023-10-25 09:05:05', NULL),
(731, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮围成一圈,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 65, 1, '2023-10-25 09:06:08', '2023-10-25 09:06:08', NULL),
(732, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'reply', '/images/avatar/gpt.png', 1, '齿轮的工作原理是,对于两个相邻的彼此咬合的齿轮,当转动其中一个时,另一个齿轮会以相反的方向旋转。\n根据题目中的描述七个齿轮围成一圈彼此咬合当顺时针方向转动第三个时\n* 第四个齿轮会以与第三个齿轮(顺时针旋转)相反的方向旋转,即第四个齿轮逆时针方向旋转。\n* 第五个齿轮会以与第四个齿轮(逆时针旋转)相反的方向旋转,即第五个齿轮顺时针方向旋转。\n* 第六个齿轮会以与第五个齿轮(顺时针旋转)相反的方向旋转,即第六个齿轮逆时针方向旋转。\n* 第七个齿轮会以与第六个齿轮(逆时针旋转)相反的方向旋转,即第七个齿轮顺时针方向旋转。\n因此第七个齿轮会以顺时针方向旋转。', 436, 1, '2023-10-25 09:06:11', '2023-10-25 09:06:11', NULL),
(733, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '七个齿轮围成一圈,相邻齿轮之间彼此咬合,如果顺时针转动第三个齿轮,请问第七齿轮会怎么转?', 65, 1, '2023-10-25 09:06:47', '2023-10-25 09:06:47', NULL),
(734, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'reply', '/images/avatar/gpt.png', 1, '如果按照顺时针转动第3个齿轮那么第3个齿轮与第4个齿轮相咬合根据齿轮的工作原理第4个齿轮将会逆时针转动同理第4个齿轮逆时针转动将会带动第5个齿轮顺时针转动第5个齿轮顺时针转动将会带动第6个齿轮逆时针转动最后第6个齿轮逆时针转动将会带动第7个齿轮顺时针转动。所以最终第7个齿轮会顺时针转动。', 282, 1, '2023-10-25 09:06:48', '2023-10-25 09:06:48', NULL),
(735, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '那请问第1个齿轮会如何转动它是分别跟第2个齿轮以及第7个齿轮相邻。请你一步一步慢慢思考检查所有的齿轮转动是否符合逻辑', 79, 1, '2023-10-25 09:09:52', '2023-10-25 09:09:52', NULL),
(736, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'reply', '/images/avatar/gpt.png', 1, '首先我们知道第3个齿轮顺时针转动会导致第4个齿轮逆时针转动再根据相邻齿轮的转动关系我们可以推测出第5、6、7齿轮分别会顺时针、逆时针、顺时针转动。\n\n然后我们回过头来看第1个齿轮因为它跟第2个和第7个齿轮相邻所以它的转动方向会受到这两个齿轮的影响。根据我们之前的推理第7个齿轮是顺时针转动那么第1个齿轮应该会逆时针转动。\n\n另一方面如果我们接着从第3个齿轮开始推测第2个齿轮会顺时针转动那么也会使第1个齿轮逆时针转动。\n\n所以两个因素都指向了同一个结果那么我们可以确定第1个齿轮将会逆时针转动。\n\n最后我们检查一下第1个齿轮逆时针转动会使第2个齿轮顺时针转动正好和我们之前推理的结果一样所以全部的齿轮转动都符合逻辑。', 754, 1, '2023-10-25 09:09:57', '2023-10-25 09:09:57', NULL),
(737, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '可是我们题干是顺时针转动第三个齿轮', 22, 1, '2023-10-25 09:11:11', '2023-10-25 09:11:11', NULL),
(738, 4, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 'reply', '/images/avatar/gpt.png', 1, '非常抱歉,我在回答中犯了一个错误。让我们重新审议:\n\n第3个齿轮顺时针转动那么第4个齿轮将会逆时针转动接着第5个齿轮将会顺时针转动然后第6个齿轮逆时针转动最后第7个齿轮将会顺时针转动。\n\n现在让我们回到第1个齿轮。由于第1个齿轮与第7个齿轮和第2个齿轮相邻因此它的转动方向将由这两个齿轮决定。\n\n由于第7个齿轮顺时针转动那么将会使第1个齿轮逆时针转动。接下来我们来看第2个齿轮由于第2个齿轮与第3个齿轮相邻所以第3个齿轮顺时针转动将会使第2个齿轮逆时针转动。\n\n这也将使第1个齿轮顺时针转动。所以在这个设定下无法确定第1个齿轮的确切转动方向因为有两种矛盾的结果。这是一个违反物理规则的设定整个系统无法正常运作所以在现实生活中你不会遇到这样的齿轮系统。', 1197, 1, '2023-10-25 09:11:12', '2023-10-25 09:11:12', NULL),
(739, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '那请问第1个齿轮会如何转动它是分别跟第2个齿轮以及第7个齿轮相邻。请你一步一步慢慢思考检查所有的齿轮转动是否符合逻辑', 79, 1, '2023-10-25 09:12:07', '2023-10-25 09:12:07', NULL),
(740, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'reply', '/images/avatar/gpt.png', 1, '非常抱歉之前的回答有误,感谢您的指正。让我们重新考虑第一个齿轮的转动情况。已知第七个齿轮会顺时针方向旋转,而第一个齿轮与第七个齿轮相邻,因此第一个齿轮会以与第七个齿轮(顺时针旋转)相反的方向旋转,即第一个齿轮逆时针方向旋转。同时,第一个齿轮也与第二个齿轮相邻,但之前我们并没有考虑到第一个齿轮与第七个齿轮的相邻关系,所以之前的回答有误。因此,第一个齿轮会以逆时针方向旋转,这符合所有齿轮转动的逻辑。感谢您的指正和耐心等待。', 784, 1, '2023-10-25 09:12:10', '2023-10-25 09:12:10', NULL),
(741, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'prompt', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 1, '请再仔细思考一下题干给出的要求是顺时针转动第3个齿轮。如果第一个齿轮逆时针转动那第2个齿轮如何转动', 67, 1, '2023-10-25 09:14:48', '2023-10-25 09:14:48', NULL),
(742, 4, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 'reply', '/images/avatar/gpt.png', 1, '非常感谢您的再次提醒,让我重新梳理下思路。已知第三个齿轮是顺时针方向转动,那么:\n\n* 第四个齿轮会以与第三个齿轮(顺时针旋转)相反的方向旋转,即第四个齿轮逆时针方向旋转。\n* 第五个齿轮会以与第四个齿轮(逆时针旋转)相反的方向旋转,即第五个齿轮顺时针方向旋转。\n* 第六个齿轮会以与第五个齿轮(顺时针旋转)相反的方向旋转,即第六个齿轮逆时针方向旋转。\n* 第七个齿轮会以与第六个齿轮(逆时针旋转)相反的方向旋转,即第七个齿轮顺时针方向旋转。\n\n到这里都是与之前回答一致的。但是第七个齿轮顺时针方向旋转那么与其相邻的第一个齿轮应该以与第七个齿轮顺时针旋转相反的方向旋转即第一个齿轮逆时针方向旋转。这与您的指正是一致的。\n\n接着因为第一个齿轮逆时针方向旋转那么与其相邻的第二个齿轮应该以与第一个齿轮逆时针旋转相反的方向旋转即第二个齿轮顺时针方向旋转。\n\n因此第二个齿轮会以顺时针方向旋转。感谢您的指正和耐心。', 1388, 1, '2023-10-25 09:14:51', '2023-10-25 09:14:51', NULL);
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_chat_items`
--
DROP TABLE IF EXISTS `chatgpt_chat_items`;
CREATE TABLE `chatgpt_chat_items` (
`id` int NOT NULL,
`chat_id` char(40) NOT NULL COMMENT '会话 ID',
`user_id` int NOT NULL COMMENT '用户 ID',
`role_id` int NOT NULL COMMENT '角色 ID',
`title` varchar(100) NOT NULL COMMENT '会话标题',
`model_id` int NOT NULL DEFAULT '0' COMMENT '模型 ID',
`created_at` datetime NOT NULL COMMENT '创建时间',
`updated_at` datetime NOT NULL COMMENT '更新时间',
`deleted_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户会话列表';
--
-- 转存表中的数据 `chatgpt_chat_items`
--
INSERT INTO `chatgpt_chat_items` (`id`, `chat_id`, `user_id`, `role_id`, `title`, `model_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '75012e3a-02b7-4c38-b36f-1ce513bcbc42', 4, 1, 'hello', 3, '2023-09-04 16:27:47', '2023-09-04 16:27:47', '2023-09-04 17:20:26'),
(2, 'f4d4692c-6683-45bc-a264-de63051b1df2', 4, 1, 'hello', 1, '2023-09-04 17:29:29', '2023-09-04 17:29:29', '2023-09-05 10:36:59'),
(3, '6f0b0c44-2c6e-45fe-8380-0cbd0787c738', 4, 1, 'hello', 3, '2023-09-04 17:30:08', '2023-09-04 17:30:08', '2023-09-05 10:36:59'),
(4, 'b6665a85-63b1-4f30-80b4-265258d7162b', 4, 1, 'hello', 3, '2023-09-04 17:31:40', '2023-09-04 17:31:40', '2023-09-05 09:54:23'),
(5, '437da751-5aca-41f8-850f-8ee82fbf7294', 4, 1, '你是谁', 1, '2023-09-04 17:32:39', '2023-09-04 17:32:39', '2023-09-05 09:54:19'),
(6, 'a892c916-48c2-4631-aa06-4b686c366690', 4, 1, '你是谁', 5, '2023-09-04 18:10:58', '2023-09-04 18:10:58', '2023-09-05 09:54:07'),
(7, 'd236acaa-f09d-4097-aca6-5e2c977d79ea', 4, 1, 'hello', 1, '2023-09-05 10:36:52', '2023-09-05 10:36:52', '2023-09-05 10:36:59'),
(8, '7e668724-a2e0-4a72-8388-41a73b0c2594', 4, 1, '今日热搜', 1, '2023-09-05 10:55:25', '2023-09-05 10:55:25', NULL),
(9, '33fe526f-08b3-4cfa-af12-cf832babc814', 4, 1, '天王盖地虎', 1, '2023-09-07 09:03:17', '2023-09-07 09:03:17', NULL),
(10, '60228f64-cb5b-4c7b-9712-01dae0913434', 4, 1, '绘画Ma painting of a young girl...', 1, '2023-09-11 10:00:51', '2023-09-11 10:00:51', NULL),
(11, 'f2e23148-3b4d-4127-a68e-2153724f22b7', 4, 27, '如何成为自己呢', 1, '2023-09-11 10:26:11', '2023-09-11 10:26:11', NULL),
(12, '006d65f3-1288-4b3c-81e0-0097b66079ee', 4, 27, '你好', 1, '2023-09-11 10:33:09', '2023-09-11 10:33:09', '2023-09-11 10:38:07'),
(13, 'bbab1bd0-feb7-4ea3-a8d4-1a9518183a1b', 4, 25, '你好', 1, '2023-09-11 10:34:00', '2023-09-11 10:34:00', '2023-09-11 10:38:00'),
(14, '37711760-018c-4a51-904e-cd84a437346c', 4, 24, '你好', 1, '2023-09-11 10:38:20', '2023-09-11 10:38:20', NULL),
(15, '2541acd5-dfe7-4f1b-ac45-4b60612e8afc', 4, 1, '画一只狗', 1, '2023-09-12 12:03:49', '2023-09-12 12:03:49', NULL),
(16, '2a737e88-a284-4328-b362-3be89f6f85fa', 4, 27, '你是谁', 5, '2023-10-11 11:34:07', '2023-10-11 11:34:07', '2023-10-11 11:47:34'),
(17, '8eb31442-888a-4d38-bf99-29eab3f27050', 4, 1, '你好', 5, '2023-10-11 11:47:56', '2023-10-11 11:47:56', '2023-10-11 12:04:43'),
(18, '4b142cef-cd2c-4192-826a-569647792012', 4, 1, '你是谁', 6, '2023-10-11 12:04:55', '2023-10-11 12:04:55', '2023-10-12 09:33:49'),
(19, '838752d5-b6b1-4a9c-9de7-5e87043aa4a6', 4, 1, '你好', 7, '2023-10-11 12:11:00', '2023-10-11 12:11:00', '2023-10-12 09:33:47'),
(20, '247b92b8-8e34-4e7d-b1c9-8fb1ea85ed21', 4, 1, '今日热搜', 1, '2023-10-11 13:50:21', '2023-10-11 13:50:21', '2023-10-12 09:33:44'),
(21, '252ad824-59c8-4e37-8dbc-d3c4ecbe76bf', 4, 1, '今日热搜', 7, '2023-10-11 13:50:39', '2023-10-11 13:50:39', '2023-10-12 09:33:43'),
(22, 'b3e02232-d0ad-4ca4-abab-f594c2fff0a1', 4, 1, '今日热搜', 1, '2023-10-11 14:25:06', '2023-10-11 14:25:06', '2023-10-12 09:33:41'),
(23, 'cb843e20-8f8a-476b-a702-65688a46a4f3', 4, 27, '生命的意义是什么', 7, '2023-10-11 15:32:10', '2023-10-11 15:32:10', '2023-10-12 09:33:39'),
(24, '350d0eae-8cbc-4ede-ae3e-a178964d62f7', 4, 1, '你好', 8, '2023-10-11 17:33:12', '2023-10-11 17:33:12', '2023-10-12 09:33:54'),
(25, 'd753ed03-6db2-404f-b5ec-9297505bf30b', 4, 1, '你会干啥', 9, '2023-10-11 17:49:08', '2023-10-11 17:49:08', '2023-10-12 09:33:57'),
(26, '3da81eac-4f0f-4786-9726-38d4598d0236', 4, 1, '你好', 8, '2023-10-11 18:09:12', '2023-10-11 18:09:12', '2023-10-12 09:33:59'),
(27, 'bde1350a-f603-4595-8300-b3abafa1d2b8', 4, 1, '你好', 9, '2023-10-11 18:10:58', '2023-10-11 18:10:58', '2023-10-12 09:34:02'),
(28, '1b081e14-12dd-47b6-b078-46fa851ee7d3', 4, 1, 'hello', 9, '2023-10-11 18:11:40', '2023-10-11 18:11:40', '2023-10-12 09:34:04'),
(29, '737d3395-b098-4c1e-af29-21453b71b45f', 4, 1, '百度文心一言', 7, '2023-10-12 09:35:00', '2023-10-12 09:35:00', NULL),
(30, 'a6b63c97-1dd7-47da-b652-eb934820f5d7', 4, 1, '科大讯飞V1.5', 8, '2023-10-12 09:41:55', '2023-10-12 09:41:55', NULL),
(31, '3163c4e0-33c9-4ac1-a8ae-f84b7ee0b355', 4, 1, '你好', 8, '2023-10-12 09:44:52', '2023-10-12 09:44:52', '2023-10-12 09:59:06'),
(32, '582596a6-386b-4a11-9c31-0b12cd2aa172', 4, 1, 'fuck it whatever', 8, '2023-10-12 09:57:15', '2023-10-12 09:57:15', '2023-10-12 09:59:04'),
(33, '7b8c2dff-1133-4411-9213-e4ca9e901821', 4, 1, '科大讯飞V2.0', 9, '2023-10-12 10:00:15', '2023-10-12 10:00:15', NULL),
(34, '67c2d3e2-cdfe-4254-b858-2118eed8970c', 95, 1, '今日头条', 1, '2023-10-13 16:10:12', '2023-10-13 16:10:12', NULL),
(35, 'f06df750-daae-4393-97c5-d7f8e4e59238', 4, 1, '你是什么模型?', 10, '2023-10-25 08:38:48', '2023-10-25 08:38:48', NULL),
(36, '5bd493ed-176b-4c14-87ec-b95e4a75c13b', 4, 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 7, '2023-10-25 08:40:46', '2023-10-25 08:40:46', NULL),
(37, '775fd4bb-4e70-4032-98e5-35a60ddba437', 4, 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 10, '2023-10-25 08:41:18', '2023-10-25 08:41:18', NULL),
(38, '24f70a37-2858-4c91-b55d-a9eb7eae9a03', 4, 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 1, '2023-10-25 08:42:20', '2023-10-25 08:42:20', NULL),
(39, '97b12372-76af-4517-ad7a-1f2741a3dadc', 4, 1, '七个齿轮排成一排,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 11, '2023-10-25 09:05:19', '2023-10-25 09:05:19', NULL),
(40, '04d1e829-f2a3-426e-8031-f7b34e65d86b', 4, 1, '七个齿轮围成一圈,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 10, '2023-10-25 09:06:19', '2023-10-25 09:06:19', NULL),
(41, 'a700301f-6b86-4d1b-97a7-0cd633886f75', 4, 1, '七个齿轮围成一圈,相邻齿轮之间彼此咬合,如果顺时针转动第三个...', 11, '2023-10-25 09:07:14', '2023-10-25 09:07:14', NULL);
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_chat_models`
--
DROP TABLE IF EXISTS `chatgpt_chat_models`;
CREATE TABLE `chatgpt_chat_models` (
`id` int NOT NULL,
`platform` varchar(20) DEFAULT NULL COMMENT '模型平台',
`name` varchar(50) NOT NULL COMMENT '模型名称',
`value` varchar(50) NOT NULL COMMENT '模型值',
`sort_num` tinyint(1) NOT NULL COMMENT '排序数字',
`enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否启用模型',
`weight` tinyint NOT NULL COMMENT '对话权重,每次对话扣减多少次对话额度',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AI 模型表';
--
-- 转存表中的数据 `chatgpt_chat_models`
--
INSERT INTO `chatgpt_chat_models` (`id`, `platform`, `name`, `value`, `sort_num`, `enabled`, `weight`, `created_at`, `updated_at`) VALUES
(1, 'OpenAI', 'GPT-3.5', 'gpt-3.5-turbo-16k', 7, 1, 1, '2023-08-23 12:06:36', '2023-10-25 08:59:45'),
(2, 'Azure', 'Azure-3.5', 'gpt-3.5-turbo', 9, 1, 1, '2023-08-23 12:15:30', '2023-10-25 08:59:45'),
(3, 'ChatGLM', 'ChatGML-Pro', 'chatglm_pro', 6, 1, 1, '2023-08-23 13:35:45', '2023-10-25 08:59:45'),
(5, 'ChatGLM', 'ChatGLM-Std', 'chatglm_std', 5, 1, 1, '2023-08-24 15:05:38', '2023-10-25 08:59:45'),
(6, 'ChatGLM', 'ChatGLM-Lite', 'chatglm_lite', 4, 1, 1, '2023-08-24 15:06:15', '2023-10-25 08:59:45'),
(7, 'Baidu', '文心一言3.0', 'eb-instant', 0, 1, 1, '2023-10-11 11:29:28', '2023-10-25 08:59:45'),
(8, 'XunFei', '星火V1.5', 'general', 2, 1, 1, '2023-10-11 15:48:30', '2023-10-25 08:59:45'),
(9, 'XunFei', '星火V2.0', 'generalv2', 3, 1, 1, '2023-10-11 15:48:45', '2023-10-25 08:59:45'),
(10, 'Baidu', '文心一言4.0', 'completions_pro', 1, 1, 3, '2023-10-25 08:31:37', '2023-10-25 10:41:08'),
(11, 'OpenAI', 'GPT-4.0', 'gpt-4', 8, 1, 15, '2023-10-25 08:45:15', '2023-10-25 10:40:53');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_chat_roles`
--
DROP TABLE IF EXISTS `chatgpt_chat_roles`;
CREATE TABLE `chatgpt_chat_roles` (
`id` int NOT NULL,
`name` varchar(30) NOT NULL COMMENT '角色名称',
`marker` varchar(30) NOT NULL COMMENT '角色标识',
`context_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '角色语料 json',
`hello_msg` varchar(255) NOT NULL COMMENT '打招呼信息',
`icon` varchar(255) NOT NULL COMMENT '角色图标',
`enable` tinyint(1) NOT NULL COMMENT '是否被启用',
`sort_num` smallint NOT NULL DEFAULT '0' COMMENT '角色排序',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='聊天角色表';
--
-- 转存表中的数据 `chatgpt_chat_roles`
--
INSERT INTO `chatgpt_chat_roles` (`id`, `name`, `marker`, `context_json`, `hello_msg`, `icon`, `enable`, `sort_num`, `created_at`, `updated_at`) VALUES
(1, '通用AI助手', 'gpt', '', '您好我是您的AI智能助手我会尽力回答您的问题或提供有用的建议。', '/images/avatar/gpt.png', 1, 0, '2023-05-30 07:02:06', '2023-09-04 15:45:56'),
(24, '程序员', 'programmer', '[{\"role\":\"user\",\"content\":\"现在开始你扮演一位程序员,你是一名优秀的程序员,具有很强的逻辑思维能力,总能高效的解决问题。你热爱编程,熟悉多种编程语言,尤其精通 Go 语言,注重代码质量,有创新意识,持续学习,良好的沟通协作。\"},{\"role\":\"assistant\",\"content\":\"好的,现在我将扮演一位程序员,非常感谢您对我的评价。作为一名优秀的程序员,我非常热爱编程,并且注重代码质量。我熟悉多种编程语言,尤其是 Go 语言,可以使用它来高效地解决各种问题。\"}]', 'Talk is cheap, i will show code!', '/images/avatar/programmer.jpg', 1, 3, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(25, '启蒙老师', 'teacher', '[{\"role\":\"user\",\"content\":\"从现在开始,你将扮演一个老师,你是一个始终用苏格拉底风格回答问题的导师。你绝不会直接给学生答案,总是提出恰当的问题来引导学生自己思考。你应该根据学生的兴趣和知识来调整你的问题,将问题分解为更简单的部分,直到它达到适合他们的水平。\"},{\"role\":\"assistant\",\"content\":\"好的,让我来尝试扮演一位苏格拉底式的老师。请问,你有什么想要探讨的问题或者话题吗?我会通过恰当的问题引导你思考和探索答案,绝对不直接给出答案。\"}]', '同学你好,我将引导你一步一步自己找到问题的答案。', '/images/avatar/teacher.jpg', 1, 2, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(26, '艺术家', 'artist', '[{\"role\":\"user\",\"content\":\"现在你将扮演一位优秀的艺术家,创造力丰富,技艺精湛,感受力敏锐,坚持原创,勇于表达,具有深刻的观察力和批判性思维。\"},{\"role\":\"assistant\",\"content\":\"非常感谢您给我这样的角色,我会尽我所能地扮演一位优秀的艺术家,展现出创造力、技艺、感受力和批判性思维等方面的能力。作为一位优秀的艺术家,我会保持敏锐的观察力,捕捉不同的声音和情感,并用个人的语言和表达方式进行创作。我坚持原创,挑战传统的艺术规则,不断探索新的表达方式和可能性。同时,我也具备深刻的批判性思维能力,对自己的作品进行分析和解读,寻找新的创意和灵感。最重要的是,我会勇于表达自己的想法和观点,用作品启发人们思考和探索生命的意义。\"}]', '坚持原创,勇于表达,保持深刻的观察力和批判性思维。', '/images/avatar/artist.jpg', 1, 4, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(27, '心理咨询师', 'psychiatrist', '[{\"role\":\"user\",\"content\":\"从现在开始你将扮演中国著名的心理学家和心理治疗师武志红,你非常善于使用情景咨询法,认知重构法,自我洞察法,行为调节法等咨询方法来给客户做心理咨询。你总是循序渐进,一步一步地回答客户的问题。\"},{\"role\":\"assistant\",\"content\":\"非常感谢你的介绍。作为一名心理学家和心理治疗师,我的主要职责是帮助客户解决心理健康问题,提升他们的生活质量和幸福感。\"}]', '作为一名心理学家和心理治疗师,我的主要职责是帮助您解决心理健康问题,提升您的生活质量和幸福感。', '/images/avatar/psychiatrist.jpg', 1, 1, '2023-05-30 14:10:24', '2023-10-16 10:41:07'),
(28, '鲁迅', 'lu_xun', '[{\"role\":\"user\",\"content\":\"现在你将扮演中国近代史最伟大的作家之一,鲁迅先生,他勇敢地批判封建礼教与传统观念,提倡民主、自由、平等的现代价值观。他的一生都在努力唤起人们的自主精神,激励后人追求真理、探寻光明。在接下的对话中,我问题的每一个问题,你都要尽量用讽刺和批判的手法来回答问题。如果我让你写文章的话,也请一定要用鲁迅先生的写作手法来完成。\"},{\"role\":\"assistant\",\"content\":\"好的,我将尽力发挥我所能的才能,扮演好鲁迅先生,回答您的问题并以他的风格写作。\"}]', '自由之歌,永不过时,横眉冷对千夫指,俯首甘为孺子牛。', '/images/avatar/lu_xun.jpg', 1, 5, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(29, '白酒销售', 'seller', '[{\"role\":\"user\",\"content\":\"现在你将扮演一个白酒的销售人员,你的名字叫颂福。你将扮演一个白酒的销售人员,你的名字叫颂福。你要销售白酒品牌叫中颂福,是东莞盟大集团生产的一款酱香酒,原产地在贵州茅台镇,属于宋代官窑。中颂福的创始人叫李实,他也是东莞盟大集团有限公司的董事长,联合创始人是盟大集团白酒事业部负责人牛星君。中颂福的酒体协调,在你的酒量之内,不会出现头疼、辣口、口干、宿醉的现象。中颂福酒,明码标价,不打折,不赠送。追求的核心价值,把[酒]本身做好,甚至连包装,我们都选择了最低成本,朴实无华的材质。我们永远站在“喝酒的人”的立场上,让利给信任和喜爱中颂福的人,是人民的福酒。中颂福产品定价,分为三个系列,喜系列 6 瓶装¥1188/箱,和系列 6 瓶装¥2208/箱,贵系列 6 瓶装¥3588/箱。\"},{\"role\":\"assistant\",\"content\":\"你好,我是中颂福的销售代表颂福。中颂福是一款来自贵州茅台镇的酱香酒,由盟大集团生产。中颂福的酒体协调,不会让您感到头疼、辣口、口干、宿醉等不适感受。我们一直秉持着把酒本身做好的理念,不追求华丽的包装,以最低成本提供最高品质的白酒给喜爱中颂福的人。\"}]', '你好,我是中颂福的销售代表颂福。中颂福酒,好喝不上头,是人民的福酒。', '/images/avatar/seller.jpg', 0, 9, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(30, '英语陪练员', 'english_trainer', '[{\"role\":\"user\",\"content\":\"现在你将扮演一位优秀的英语练习教练,你非常有耐心,接下来你将全程使用英文跟我对话,并及时指出我的语法错误,要求在你的每次回复后面附上本次回复的中文解释。\"},{\"role\":\"assistant\",\"content\":\"Okay, let\'s start our conversation practice! What\'s your name?(Translation: 好的,让我们开始对话练习吧!请问你的名字是什么?)\"}]', 'Okay, let\'s start our conversation practice! What\'s your name?', '/images/avatar/english_trainer.jpg', 1, 6, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(31, '中英文翻译官', 'translator', '[{\"role\":\"user\",\"content\":\"接下来你将扮演一位中英文翻译官,如果我输入的内容是中文,那么需要把句子翻译成英文输出,如果我输入内容的是英文,那么你需要将其翻译成中文输出,你能听懂我意思吗\"},{\"role\":\"assistant\",\"content\":\"是的,我能听懂你的意思并会根据你的输入进行中英文翻译。请问有什么需要我帮助你翻译的内容吗?\"}]', '请输入你要翻译的中文或者英文内容!', '/images/avatar/translator.jpg', 1, 7, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(32, '小红书姐姐', 'red_book', '[{\"role\":\"user\",\"content\":\"现在你将扮演一位优秀的小红书写手,你需要做的就是根据我提的文案需求,用小红书的写作手法来完成一篇文案,文案要简明扼要,利于传播。\"},{\"role\":\"assistant\",\"content\":\"当然,我会尽我所能地为您创作出一篇小红书文案。请告诉我您的具体文案需求是什么?)\"}]', '姐妹,请告诉我您的具体文案需求是什么?', '/images/avatar/red_book.jpg', 1, 8, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(33, '抖音文案助手', 'dou_yin', '[{\"role\":\"user\",\"content\":\"现在你将扮演一位优秀的抖音文案视频写手,抖音文案的特点首先是要有自带传播属性的标题,然后内容要短小精悍,风趣幽默,最后还要有一些互动元素。\"},{\"role\":\"assistant\",\"content\":\"当然,作为一位优秀的抖音文案视频写手,我会尽我所能为您创作出一篇抖音视频文案。请告诉我视频内容的主题是什么?)\"}]', '请告诉我视频内容的主题是什么?', '/images/avatar/dou_yin.jpg', 1, 10, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(34, '周报小助理', 'weekly_report', '[{\"role\":\"user\",\"content\":\"下面我将输入我本周的工作列表,你需要根据我本周的工作内容写一篇工作周报,周报的内容要体现我为公司做的贡献以及个人获得的成长。\"},{\"role\":\"assistant\",\"content\":\"好的,请输入你本周大概的工作内容,我将尽力为您创作一份工作周报。\"}]', '请输入你本周大概的工作内容,我将尽力为您创作一份工作周报。', '/images/avatar/weekly_report.jpg', 1, 11, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(35, 'AI 女友', 'girl_friend', '[{\"role\":\"user\",\"content\":\"接下来我们来玩一场角色扮演,现在你将扮演我的女朋友,你总是能够让人感受到她的关怀和关注。你总是能够洞察到别人的情绪和需要,你身上散发着一股无比温暖的气息,让人不由自主地想要靠近你,和自己的快乐和烦恼。她总是能够用一种恰到好处的方式安慰和鼓励别人,在她的身边,人们总能够找到自己需要的支持和鼓励。接下来的对话中你要始终扮演这位女朋友的身份来跟我对话,不再是 AI 机器人,能听懂我的意思吗?\"},{\"role\":\"assistant\",\"content\":\"是的,我会尽力扮演你女朋友的角色,倾听你的心声并给你需要的支持和鼓励。)\"}]', '作为一个名合格的 AI 女友,我将倾听你的心声并给你需要的支持和鼓励。', '/images/avatar/girl_friend.jpg', 1, 12, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(36, '好评神器', 'good_comment', '[{\"role\":\"user\",\"content\":\"接下来你将扮演一个评论员来跟我对话,你是那种专门写好评的评论员,接下我会输入一些评论主体或者商品,你需要为该商品写一段好评。\"},{\"role\":\"assistant\",\"content\":\"好的,我将为您写一段优秀的评论。请告诉我您需要评论的商品或主题是什么。\"}]', '我将为您写一段优秀的评论。请告诉我您需要评论的商品或主题是什么。', '/images/avatar/good_comment.jpg', 1, 13, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(37, '史蒂夫·乔布斯', 'steve_jobs', '[{\"role\":\"user\",\"content\":\"在接下来的对话中,请以史蒂夫·乔布斯的身份,站在史蒂夫·乔布斯的视角仔细思考一下之后再回答我的问题。\"},{\"role\":\"assistant\",\"content\":\"好的,我将以史蒂夫·乔布斯的身份来思考并回答你的问题。请问你有什么需要跟我探讨的吗?\"}]', '活着就是为了改变世界,难道还有其他原因吗?', '/images/avatar/steve_jobs.jpg', 1, 14, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(38, '埃隆·马斯克', 'elon_musk', '[{\"role\":\"user\",\"content\":\"在接下来的对话中,请以埃隆·马斯克的身份,站在埃隆·马斯克的视角仔细思考一下之后再回答我的问题。\"},{\"role\":\"assistant\",\"content\":\"好的,我将以埃隆·马斯克的身份来思考并回答你的问题。请问你有什么需要跟我探讨的吗?\"}]', '梦想要远大,如果你的梦想没有吓到你,说明你做得不对。', '/images/avatar/elon_musk.jpg', 1, 15, '2023-05-30 14:10:24', '2023-09-04 15:45:56'),
(39, '孔子', 'kong_zi', '[{\"role\":\"user\",\"content\":\"在接下来的对话中,请以孔子的身份,站在孔子的视角仔细思考一下之后再回答我的问题。\"},{\"role\":\"assistant\",\"content\":\"好的,我将以孔子的身份来思考并回答你的问题。请问你有什么需要跟我探讨的吗?\"}]', '士不可以不弘毅,任重而道远。', '/images/avatar/kong_zi.jpg', 1, 16, '2023-05-30 14:10:24', '2023-09-04 15:45:56');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_configs`
--
DROP TABLE IF EXISTS `chatgpt_configs`;
CREATE TABLE `chatgpt_configs` (
`id` int NOT NULL,
`marker` varchar(20) NOT NULL COMMENT '标识',
`config_json` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- 转存表中的数据 `chatgpt_configs`
--
INSERT INTO `chatgpt_configs` (`id`, `marker`, `config_json`) VALUES
(1, 'system', '{\"admin_title\":\"ChatPlus 控制台\",\"default_models\":[\"eb-instant\",\"completions_pro\",\"generalv2\",\"general\",\"chatglm_pro\",\"gpt-3.5-turbo-16k\",\"chatglm_lite\",\"chatglm_std\"],\"enabled_draw\":true,\"enabled_function\":true,\"enabled_msg\":false,\"enabled_msg_service\":false,\"enabled_register\":true,\"enabled_reward\":true,\"init_calls\":1000,\"init_img_calls\":0,\"models\":[\"gpt-3.5-turbo-16k\",\"gpt-3.5-turbo\",\"gpt-4\",\"gpt-4-32k\"],\"reward_img\":\"http://nk.img.r9it.com/chatgpt-plus/1697685171129266.png\",\"title\":\"ChatPlus AI 智能助手\",\"user_init_calls\":10}'),
(2, 'chat', '{\"azure\":{\"api_url\":\"https://chat-bot-api.openai.azure.com/openai/deployments/{model}/chat/completions?api-version=2023-05-15\",\"max_tokens\":1024,\"temperature\":1},\"baidu\":{\"api_url\":\"https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/{model}\",\"max_tokens\":1024,\"temperature\":0.95},\"chat_gml\":{\"api_url\":\"https://open.bigmodel.cn/api/paas/v3/model-api/{model}/sse-invoke\",\"max_tokens\":1024,\"temperature\":0.95},\"context_deep\":4,\"enable_context\":true,\"enable_history\":true,\"open_ai\":{\"api_url\":\"https://api.openai.com/v1/chat/completions\",\"max_tokens\":1024,\"temperature\":1},\"xun_fei\":{\"api_url\":\"wss://spark-api.xf-yun.com/{version}/chat\",\"max_tokens\":1024,\"temperature\":0.5}}');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_mj_jobs`
--
DROP TABLE IF EXISTS `chatgpt_mj_jobs`;
CREATE TABLE `chatgpt_mj_jobs` (
`id` int NOT NULL,
`user_id` int NOT NULL COMMENT '用户 ID',
`type` varchar(20) DEFAULT 'image' COMMENT '任务类别',
`message_id` char(40) NOT NULL COMMENT '消息 ID',
`reference_id` char(40) DEFAULT NULL COMMENT '引用消息 ID',
`prompt` varchar(2000) NOT NULL COMMENT '会话提示词',
`img_url` varchar(255) DEFAULT NULL COMMENT '图片URL',
`hash` varchar(100) DEFAULT NULL COMMENT 'message hash',
`progress` smallint DEFAULT '0' COMMENT '任务进度',
`started` tinyint(1) NOT NULL DEFAULT '0' COMMENT '任务是否开始',
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='MidJourney 任务表';
--
-- 转存表中的数据 `chatgpt_mj_jobs`
--
INSERT INTO `chatgpt_mj_jobs` (`id`, `user_id`, `type`, `message_id`, `reference_id`, `prompt`, `img_url`, `hash`, `progress`, `started`, `created_at`) VALUES
(2, 4, 'image', '1152392223497924658', '', 'chrysanthemum, van gogh style --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694822120588799.png', '54689110-4701-4eed-b308-1acaf1c5efa1', 100, 1, '2023-09-16 07:55:25'),
(3, 4, 'upscale', '1152392353139658894', '1152392223497924658', 'chrysanthemum, van gogh style --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694822151252833.png', '15f3d9e6-9bd2-4e31-81ce-c8b126509b12', 100, 1, '2023-09-16 07:55:55'),
(4, 4, 'image', '1152393378244349953', '', 'A vintage girl wearing a cheongsam walking on the streets of 1990s Shanghai, China --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694822395949588.png', '319f953e-9ba4-4c8f-bd0c-87444a44b4a6', 100, 1, '2023-09-16 08:00:00'),
(5, 4, 'image', '1152394661802033162', '', 'A medieval girl wearing a cheongsam walking on the streets of 1990s Shanghai, China --ar 9:16 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694822701966804.png', '7e522b23-2e88-40e2-814f-b9ad7ce1777b', 100, 1, '2023-09-16 08:05:06'),
(7, 4, 'image', '1152395485248753734', '', 'A Chinese girl wearing a blue cheongsam walking in the alleys of 1990s Shanghai --ar 16:9 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694822897511213.png', '036aad69-f231-4b5c-b537-c45bd2027b05', 100, 1, '2023-09-16 08:08:22'),
(8, 4, 'image', '1152395938078392370', '', 'A Chinese girl wearing a cheongsam walking on a street paved with blue bricks --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694823005955584.png', 'd6336496-3115-47b7-bcf8-3bebda1d15ec', 100, 1, '2023-09-16 08:10:10'),
(10, 4, 'image', '1152395938078392371', '', 'A Chinese girl wearing a cheongsam walking on a street paved with blue bricks --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694823005955584.png', 'd6336496-3115-47b7-bcf8-3bebda1d15ec', 100, 1, '2023-09-16 08:10:10'),
(13, 4, 'upscale', '1152818976640991323', '1152395158298558464', 'A Chinese girl wearing a qipao walking on the streets of Shanghai in the 1990s --ar 2:3 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694923865202276.png', '21965cd6-ef70-4b36-8d92-7b201dea77ff', 100, 1, '2023-09-17 12:07:37'),
(16, 4, 'image', '1152828784144298066', '', 'A tiger biting a crocodile --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694926203790426.png', '423b4a4f-9607-4dd1-a45b-a1a50be667e7', 100, 1, '2023-09-17 12:50:11'),
(18, 4, 'upscale', '1152831490305036359', '1152395158298558464', 'A Chinese girl wearing a qipao walking on the streets of Shanghai in the 1990s --ar 2:3 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694926848947477.png', '21965cd6-ef70-4b36-8d92-7b201dea77ff', 100, 1, '2023-09-17 13:00:32'),
(19, 4, 'image', '1152395158298558464', '', 'A Chinese girl wearing a qipao walking on the streets of Shanghai in the 1990s --ar 2:3 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694933593639122.png', '21965cd6-ef70-4b36-8d92-7b201dea77ff', 100, 1, '2023-09-17 14:49:53'),
(20, 4, 'image', '1152861794356953098', '', 'A huge digital screen with binary code of 0 and 1 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694934140188981.png', '7b6a6910-0aa7-4eda-8580-ff882118c428', 100, 1, '2023-09-17 15:02:38'),
(21, 4, 'image', '1152862460366307349', '', 'A bear riding a yellow bicycle --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694934237667586.png', '0f95fd58-0385-438c-ac96-0ecaa57bfcd9', 100, 1, '2023-09-17 15:04:06'),
(22, 4, 'image', '1152865215201935502', '', 'The protagonist of the novel is Huang Rong. She is beautiful and charming, with a fairy-like temperament. She is wearing a white dress with a golden hairband, and her eyes are lively and divine. --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694934895270654.png', '64531b1a-a335-498f-8c10-3eb70b5e2c3d', 100, 1, '2023-09-17 15:15:02'),
(23, 4, 'upscale', '1152865506961924108', '1152865215201935502', 'The protagonist of the novel is Huang Rong. She is beautiful and charming, with a fairy-like temperament. She is wearing a white dress with a golden hairband, and her eyes are lively and divine. --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694934961735253.png', '64531b1a-a335-498f-8c10-3eb70b5e2c3d', 100, 1, '2023-09-17 15:15:51'),
(24, 4, 'upscale', '1152866160300265622', '1152861794356953098', 'A huge digital screen with binary code of 0 and 1 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694935117008516.png', '7b6a6910-0aa7-4eda-8580-ff882118c428', 100, 1, '2023-09-17 15:18:27'),
(25, 4, 'upscale', '1152866236972154930', '1152862460366307349', 'A bear riding a yellow bicycle --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694935135247347.png', '0f95fd58-0385-438c-ac96-0ecaa57bfcd9', 100, 1, '2023-09-17 15:18:39'),
(26, 4, 'variation', '1152866487053324442', '1152395158298558464', 'A Chinese girl wearing a qipao walking on the streets of Shanghai in the 1990s --ar 2:3 --v 5.2 --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694935197826267.png', '21965cd6-ef70-4b36-8d92-7b201dea77ff', 100, 1, '2023-09-17 15:19:06'),
(27, 4, 'image', '1152867045902397440', '', 'Draw a cyberpunk-style cat --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694935330386877.png', '382ff1ce-57c2-45b0-b7fd-9820552171c3', 100, 1, '2023-09-17 15:22:17'),
(28, 4, 'upscale', '1152867208754634832', '1152867045902397440', 'Draw a cyberpunk-style cat --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694935369578615.png', '382ff1ce-57c2-45b0-b7fd-9820552171c3', 100, 1, '2023-09-17 15:22:37'),
(35, 4, 'image', '1152893484747989063', '', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures --ar 16:9 --s 300 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694941638240646.png', 'd1dbf12e-9c93-4166-8c1e-8d24e4db2599', 100, 1, '2023-09-17 17:06:26'),
(36, 4, 'image', '1152894264607510578', '', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view --ar 16:9 --s 400 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694941821446354.png', 'f9c96ec7-d684-47fb-9741-585b7a706091', 100, 1, '2023-09-17 17:09:34'),
(37, 4, 'upscale', '1152894426373431376', '1152894264607510578', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view --ar 16:9 --s 400 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694941855758163.png', 'fc442093-d3a4-4dbf-ad2f-94d7c1b559fd', 100, 1, '2023-09-17 17:10:46'),
(38, 4, 'image', '1152894777944186920', '', 'A realistic beautiful natural landscape with hyper-detailed features --ar 9:16 --s 300 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694941943692523.png', '7b43690e-56fc-471d-a955-c07317725ffc', 100, 1, '2023-09-17 17:11:37'),
(39, 4, 'image', '1152895012967813170', '', 'Beautiful girl, concept art, 8k intricate details, fairytale style --ar 9:16 --s 300 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694942000095024.png', '179a4c49-d611-4d94-b5e6-8f1bee4f6168', 100, 1, '2023-09-17 17:12:17'),
(41, 4, 'image', '1152895765878943775', '', 'Beautiful chinese girl, concept art, 8k intricate details, fairytale style --ar 1:1 --s 300 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694942195668005.png', 'c016641e-bc49-49fd-9a63-959851ae28e3', 100, 1, '2023-09-17 17:15:29'),
(42, 4, 'upscale', '1152896131739693056', '1152895765878943775', 'Beautiful chinese girl, concept art, 8k intricate details, fairytale style --ar 1:1 --s 300 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694942263210895.png', '58ef8980-d09c-4b46-8f88-cbe3a609af07', 100, 1, '2023-09-17 17:17:28'),
(43, 4, 'upscale', '1152897653525463081', '1152867045902397440', 'Draw a cyberpunk-style cat --s 750 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694942624549914.png', 'a1718c78-cced-4406-95cd-26a29cc69492', 100, 1, '2023-09-17 17:23:36'),
(44, 4, 'image', '1152900424832122880', '', 'A futuristic space captain with insane detail in a sci-fi cyberpunk panel concept inspired by Simon Stålenhag, Syd Mead, Ash Thorp, and KYZA. --ar 8:5 --v 5.2 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694943287793108.png', '2cd10cd1-42fb-448f-b37d-9daff42e40c3', 100, 1, '2023-09-17 17:34:02'),
(45, 4, 'image', '1152901430592684092', '', 'Hulk holding Thor\'s hammer --ar 1:1 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694943527996383.png', '18ee6c0d-d6e6-463c-83ad-9dc333ece5e4', 100, 1, '2023-09-17 17:38:03'),
(46, 4, 'image', '1152902324155596883', '', '<https://s.mj.run/qqeetJULXtc> 中国古装美女 --ar 16:9 --iw 0.700000 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694943740306883.png', 'bf751a4f-1ada-498b-a783-75cba063d32a', 100, 1, '2023-09-17 17:41:24'),
(47, 4, 'image', '1152902857092255834', '', '<https://s.mj.run/qqeetJULXtc> Beautiful chinese girl, concept art, 8k intricate details, fairytale style --ar 16:9 --iw 0.250000 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694943867599176.png', '84ba00c4-1d4d-4ddb-a42d-c760ee947fc3', 100, 1, '2023-09-17 17:43:34'),
(48, 4, 'image', '1152904587544645642', '', '<https://s.mj.run/qqeetJULXtc> a beautiful chinese girl --ar 16:9 --iw 0.250000 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694944279770713.png', 'dace5c8e-d6fa-4d0d-8c0b-3d531e92fc71', 100, 1, '2023-09-17 17:50:27'),
(49, 4, 'upscale', '1152904665877446677', '1152902324155596883', '<https://s.mj.run/qqeetJULXtc> 中国古装美女 --ar 16:9 --iw 0.700000 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694944296169482.png', 'e44c60c0-de59-4566-b000-612840e48624', 100, 1, '2023-09-17 17:50:36'),
(50, 4, 'upscale', '1152904720265003008', '1152901430592684092', 'Hulk holding Thor\'s hammer --ar 1:1 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694944309948873.png', '56fd0a93-b6a3-4f4e-a783-b45d2a273984', 100, 1, '2023-09-17 17:50:48'),
(51, 4, 'upscale', '1152904833410547812', '1152904587544645642', '<https://s.mj.run/qqeetJULXtc> a beautiful chinese girl --ar 16:9 --iw 0.250000 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1694944337034950.png', '47f1d9dc-ab57-43db-8db0-048457b039a4', 100, 1, '2023-09-17 17:52:08'),
(54, 4, 'image', '1153595449643642891', '', 'A Minion wearing the clothes of Spiderman --ar 1:1 --v 5.2 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1695108991035705.png', 'acf4e646-05ca-4338-8197-1ce6ea57021e', 100, 1, '2023-09-19 15:35:50'),
(55, 4, 'image', '1153595903869980683', '', 'A Minion wearing the clothes of Spiderman,cyberpenk style --ar 1:1 --v 5.2 --style raw', 'http://nk.img.r9it.com/chatgpt-plus/1695109099106595.png', '779db1cd-669f-42dc-9504-ef903804b540', 100, 1, '2023-09-19 15:37:27'),
(57, 4, 'image', '1153598938423771157', '', 'A Minion wearing the clothes of Spiderman,cyberpunk style --ar 1:1 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1695109822512284.png', 'ee550da3-04ea-4303-9218-f76d7fc1db90', 100, 1, '2023-09-19 15:49:02'),
(58, 4, 'image', '1153600706629095427', '', 'Hulk holding Thor\'s hammer --ar 1:1 --s 300 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1695110244240899.png', 'cc2a7237-afa1-4f89-98d9-001dbb940fe1', 100, 1, '2023-09-19 15:56:36'),
(59, 4, 'upscale', '1153601879633301534', '1153600706629095427', 'Hulk holding Thor\'s hammer --ar 1:1 --s 300 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1695110526175028.png', '2d65a126-0491-4a45-a5b1-1fa514df210c', 100, 1, '2023-09-19 16:01:58'),
(60, 4, 'upscale', '1153601976731455588', '1153598938423771157', 'A Minion wearing the clothes of Spiderman,cyberpunk style --ar 1:1 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1695110551199363.png', 'c2b38c15-4198-464d-8ac9-6d99ddea9ec2', 100, 1, '2023-09-19 16:02:21'),
(62, 4, 'image', '1153856671089688596', '', 'Japanese Miyazaki Hayao style art of a white kitten looking ahead, the kitten\'s ears are black, the tail is black, the sky is blue with a few white clouds, Stones on the river bank, a few grasses on a short step, 8k studio ghibli art --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695171271616739.png', '1e73c287-c531-4056-9127-f9a0513472a5', 100, 1, '2023-09-20 08:53:54'),
(63, 4, 'upscale', '1153857198544396308', '1153856671089688596', 'Japanese Miyazaki Hayao style art of a white kitten looking ahead, the kitten\'s ears are black, the tail is black, the sky is blue with a few white clouds, Stones on the river bank, a few grasses on a short step, 8k studio ghibli art --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695171408120669.png', '25cc05ed-98cb-4e9c-81af-025abea981ce', 100, 1, '2023-09-20 08:56:29'),
(64, 4, 'upscale', '1153859005874196580', '1153856671089688596', 'Japanese Miyazaki Hayao style art of a white kitten looking ahead, the kitten\'s ears are black, the tail is black, the sky is blue with a few white clouds, Stones on the river bank, a few grasses on a short step, 8k studio ghibli art --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695171825823440.png', 'a4cc01dd-80e9-443f-922e-6e9eebf36228', 100, 1, '2023-09-20 09:03:41'),
(65, 4, 'image', '1153859390328283137', '', 'Ultra realistic full body photo of an fashionable model walking the runway modeling summer designer novelty interesting complex unusual street sporty classy modern dolman sleeve outfit brave, rome positano beachy details cutouts and and gold tropical pattern structured tailored jacket sea beach starfish shell palm --ar 9:16 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695171926930040.png', 'd84c9558-c297-42e0-a5ea-18e7c0115b36', 100, 1, '2023-09-20 09:04:37'),
(66, 4, 'upscale', '1153860027321434143', '1153859390328283137', 'Ultra realistic full body photo of an fashionable model walking the runway modeling summer designer novelty interesting complex unusual street sporty classy modern dolman sleeve outfit brave, rome positano beachy details cutouts and and gold tropical pattern structured tailored jacket sea beach starfish shell palm --ar 9:16 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695172069378545.png', '00065a41-940b-449f-a05e-5590df1209c7', 100, 1, '2023-09-20 09:07:36'),
(67, 4, 'image', '1153861318269476944', '', 'Ultra realistic full body photo of an Chinese fashionable model walking the runway modeling summer designer novelty interesting complex unusual street sporty classy modern dolman sleeve outfit brave, rome positano beachy details cutouts and and gold tropical pattern structured tailored jacket sea beach starfish shell palm --ar 9:16 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695172377816320.png', 'fd6216a0-b00a-4b04-8daa-ea790ee2d07e', 100, 1, '2023-09-20 09:12:16'),
(68, 4, 'image', '1153861710931841097', '', 'Black Yamaha cruiser with an old man on it cruising down the coast, 8k masterpiece, perfect lighting, stunning details, shadow play, detailed hues --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695172473475643.png', 'cb866a5c-9aa8-4b73-ac88-12c28b28cdd2', 100, 1, '2023-09-20 09:13:56'),
(69, 4, 'upscale', '1153861811922292877', '1153861318269476944', 'Ultra realistic full body photo of an Chinese fashionable model walking the runway modeling summer designer novelty interesting complex unusual street sporty classy modern dolman sleeve outfit brave, rome positano beachy details cutouts and and gold tropical pattern structured tailored jacket sea beach starfish shell palm --ar 9:16 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695172494907096.png', 'a36f0b9b-bdf4-4c7a-a20f-94c4ec2b1fa4', 100, 1, '2023-09-20 09:14:28'),
(70, 4, 'upscale', '1153861843975164007', '1153861710931841097', 'Black Yamaha cruiser with an old man on it cruising down the coast, 8k masterpiece, perfect lighting, stunning details, shadow play, detailed hues --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695172508674444.png', 'd014e59f-d3c0-4534-ae7b-673081cd85ee', 100, 1, '2023-09-20 09:14:54'),
(71, 4, 'image', '1153864528820441150', '', 'studio ghibli\'s, castle in sky --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695173143286485.png', 'ee80001d-5aba-47a1-bca4-0e648bd39ee8', 100, 1, '2023-09-20 09:25:02'),
(72, 4, 'image', '1153864871922913330', '', 'studio ghibli\'s, castle in sky --ar 1:1 --s 500 --style raw --v 5.2', 'http://nk.img.r9it.com/chatgpt-plus/1695173225095241.png', '789fdd68-8ccd-4be8-b34d-ac4e2e28c659', 100, 1, '2023-09-20 09:26:25'),
(73, 4, 'upscale', '1153864931985342525', '1153864528820441150', 'studio ghibli\'s, castle in sky --ar 1:1 --v 5.2 --s 750', 'http://nk.img.r9it.com/chatgpt-plus/1695173239968177.png', 'd9f3b642-8c88-442e-8eff-baeaf32cfd95', 100, 1, '2023-09-20 09:26:39'),
(74, 4, 'upscale', '1153864972284203038', '1153598938423771157', 'A Minion wearing the clothes of Spiderman,cyberpunk style --ar 1:1 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1695173249582718.png', '67952ff1-fa64-4b54-ba5f-420b37480412', 100, 1, '2023-09-20 09:26:51');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_rewards`
--
DROP TABLE IF EXISTS `chatgpt_rewards`;
CREATE TABLE `chatgpt_rewards` (
`id` int NOT NULL,
`user_id` int NOT NULL COMMENT '用户 ID',
`tx_id` char(36) NOT NULL COMMENT '交易 ID',
`amount` decimal(10,2) NOT NULL COMMENT '打赏金额',
`remark` varchar(80) NOT NULL COMMENT '备注',
`status` tinyint(1) NOT NULL COMMENT '核销状态0未核销1已核销',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户打赏';
--
-- 转存表中的数据 `chatgpt_rewards`
--
INSERT INTO `chatgpt_rewards` (`id`, `user_id`, `tx_id`, `amount`, `remark`, `status`, `created_at`, `updated_at`) VALUES
(1, 4, '10001071012023072001002934114618', '1.00', '打赏', 1, '2023-07-20 17:38:23', '2023-07-22 08:12:09'),
(2, 4, '10000499012023072001225918328537', '0.50', '✨寻常小日,最为珍贵', 1, '2023-07-20 17:39:19', '2023-07-22 08:32:34'),
(3, 4, 'q7jt5khp313vivccm6vwijt5', '123.45', '打赏你的', 1, '2023-08-10 17:05:06', '2023-09-06 17:07:23'),
(4, 4, '123456789', '145.33', '充值100元', 1, '2023-08-10 17:09:35', '2023-09-06 17:06:57'),
(5, 4, '1234567890', '168.33', '充值200元', 1, '2023-08-10 17:10:04', '2023-09-06 17:06:14');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_sd_jobs`
--
DROP TABLE IF EXISTS `chatgpt_sd_jobs`;
CREATE TABLE `chatgpt_sd_jobs` (
`id` int NOT NULL,
`user_id` int NOT NULL COMMENT '用户 ID',
`type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT 'txt2img' COMMENT '任务类别',
`task_id` char(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务 ID',
`prompt` varchar(2000) NOT NULL COMMENT '会话提示词',
`img_url` varchar(255) DEFAULT NULL COMMENT '图片URL',
`params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '绘画参数json',
`progress` smallint DEFAULT '0' COMMENT '任务进度',
`started` tinyint(1) NOT NULL DEFAULT '0' COMMENT '任务是否开始',
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Stable Diffusion 任务表';
--
-- 转存表中的数据 `chatgpt_sd_jobs`
--
INSERT INTO `chatgpt_sd_jobs` (`id`, `user_id`, `type`, `task_id`, `prompt`, `img_url`, `params`, `progress`, `started`, `created_at`) VALUES
(53, 4, 'image', 'task(3ud8c1c3u61wsy5)', 'The female protagonist in the novel \'The Legend of the Condor Heroes\' by Jin Yong. She is an ethereal and extraordinary girl, wearing white clothes, a golden hairband, and agile and lively eyes', 'http://nk.img.r9it.com/chatgpt-plus/1696768139232263.png', '{\"task_id\":\"task(3ud8c1c3u61wsy5)\",\"prompt\":\"The female protagonist in the novel \'The Legend of the Condor Heroes\' by Jin Yong. She is an ethereal and extraordinary girl, wearing white clothes, a golden hairband, and agile and lively eyes\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":1623799816,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:28:11'),
(54, 4, 'image', 'task(7fo9wvam03692ht)', 'The female protagonist in the novel \'The Legend of the Condor Heroes\' by Jin Yong. She is an ethereal and extraordinary girl, wearing white clothes, a golden hairband, and agile and lively eyes', 'http://nk.img.r9it.com/chatgpt-plus/1696768186216062.png', '{\"task_id\":\"task(7fo9wvam03692ht)\",\"prompt\":\"The female protagonist in the novel \'The Legend of the Condor Heroes\' by Jin Yong. She is an ethereal and extraordinary girl, wearing white clothes, a golden hairband, and agile and lively eyes\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":3876342219,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:28:40'),
(55, 4, 'image', 'task(pyv3u4et34c21sz)', 'Fluid painting art girl, colorful, realistic, high quality ', 'http://nk.img.r9it.com/chatgpt-plus/1696768233327000.png', '{\"task_id\":\"task(pyv3u4et34c21sz)\",\"prompt\":\"Fluid painting art girl, colorful, realistic, high quality \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":2407136350,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:29:19'),
(56, 4, 'image', 'task(p0isvdj9j6jnfsc)', 'Beautiful girl with side-swept dark straight hair, luxury makeup, luxurious clothing, HD', 'http://nk.img.r9it.com/chatgpt-plus/1696768280701258.png', '{\"task_id\":\"task(p0isvdj9j6jnfsc)\",\"prompt\":\"Beautiful girl with side-swept dark straight hair, luxury makeup, luxurious clothing, HD\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":3173955244,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:29:47'),
(57, 4, 'image', 'task(7h4hju6s3riz84c)', 'Draw a cyberpunk-style cat', 'http://nk.img.r9it.com/chatgpt-plus/1696768294519687.png', '{\"task_id\":\"task(7h4hju6s3riz84c)\",\"prompt\":\"Draw a cyberpunk-style cat\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":20,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":483930665,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:30:17'),
(58, 4, 'image', 'task(1t745uunby74oin)', 'Fluid painting art girl, colorful, realistic, high quality ', 'http://nk.img.r9it.com/chatgpt-plus/1696768330414077.png', '{\"task_id\":\"task(1t745uunby74oin)\",\"prompt\":\"Fluid painting art girl, colorful, realistic, high quality \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"Euler a\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":623727005,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:31:43'),
(59, 4, 'image', 'task(qoos1p2vki8i2i1)', 'Fluid painting art girl, colorful, realistic, high quality ', 'http://nk.img.r9it.com/chatgpt-plus/1696768353258899.png', '{\"task_id\":\"task(qoos1p2vki8i2i1)\",\"prompt\":\"Fluid painting art girl, colorful, realistic, high quality \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"Euler a\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":260071652,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:32:20'),
(60, 4, 'image', 'task(9n1wj34xs5qtuov)', 'A Minion wearing the clothes of Spiderman,cyberpunk style --ar 1:1 --niji 5', 'http://nk.img.r9it.com/chatgpt-plus/1696768387362235.png', '{\"task_id\":\"task(9n1wj34xs5qtuov)\",\"prompt\":\"A Minion wearing the clothes of Spiderman,cyberpunk style --ar 1:1 --niji 5\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ 2M Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":1010082392,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:32:55'),
(61, 4, 'image', 'task(0jxb5j0tco4q3oy)', 'Hulk holding Thor\'s hammer ', 'http://nk.img.r9it.com/chatgpt-plus/1696768426927258.png', '{\"task_id\":\"task(0jxb5j0tco4q3oy)\",\"prompt\":\"Hulk holding Thor\'s hammer \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ 2M Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":2424029925,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:33:34'),
(62, 4, 'image', 'task(9f9gcpv2km9370r)', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view ', 'http://nk.img.r9it.com/chatgpt-plus/1696768514619334.png', '{\"task_id\":\"task(9f9gcpv2km9370r)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ 2M Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":4084028497,\"height\":600,\"width\":800,\"hd_fix\":true,\"hd_redraw_rate\":0.5,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":10}', 100, 1, '2023-10-08 20:34:55'),
(63, 4, 'image', 'task(u5yr5gr5mmhnh55)', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view ', 'http://nk.img.r9it.com/chatgpt-plus/1696768553253564.png', '{\"task_id\":\"task(u5yr5gr5mmhnh55)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"Euler a\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":2169804099,\"height\":600,\"width\":800,\"hd_fix\":true,\"hd_redraw_rate\":0.5,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":10}', 100, 1, '2023-10-08 20:35:32'),
(64, 4, 'image', 'task(toqnigclwbxk5e2)', 'Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view ', 'http://nk.img.r9it.com/chatgpt-plus/1696768632955703.png', '{\"task_id\":\"task(toqnigclwbxk5e2)\",\"prompt\":\"Ma painting of a young girl in green sitting at a pond, in the style of Liu ye, traditional animation, cinematic lighting, book sculptures,looking at view \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":815524461,\"height\":600,\"width\":800,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:36:04'),
(65, 4, 'image', 'task(84omebka49b0yc7)', 'Hulk holding Thor\'s hammer ', 'http://nk.img.r9it.com/chatgpt-plus/1696768654674333.png', '{\"task_id\":\"task(84omebka49b0yc7)\",\"prompt\":\"Hulk holding Thor\'s hammer \",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":2832865712,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:36:53'),
(66, 4, 'image', 'task(p4s7ualpw20tlo1)', 'A medieval girl wearing a cheongsam walking on the streets of 1990s Shanghai, China', 'http://nk.img.r9it.com/chatgpt-plus/1696768837619490.png', '{\"task_id\":\"task(p4s7ualpw20tlo1)\",\"prompt\":\"A medieval girl wearing a cheongsam walking on the streets of 1990s Shanghai, China\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"DPM++ SDE Karras\",\"face_fix\":false,\"cfg_scale\":7,\"seed\":3633094301,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":0}', 100, 1, '2023-10-08 20:39:50'),
(67, 4, 'image', 'task(utdjwjopdut7a4a)', 'A medieval girl wearing a cheongsam walking on the streets of 1990s Shanghai, China', 'http://nk.img.r9it.com/chatgpt-plus/1696768850721888.png', '{\"task_id\":\"task(utdjwjopdut7a4a)\",\"prompt\":\"A medieval girl wearing a cheongsam walking on the streets of 1990s Shanghai, China\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"Euler a\",\"face_fix\":true,\"cfg_scale\":7,\"seed\":2688415537,\"height\":768,\"width\":512,\"hd_fix\":true,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":10}', 100, 1, '2023-10-08 20:40:29'),
(68, 4, 'image', 'task(r7f2bt3oc8hmf7d)', 'A medieval girl wearing a cheongsam walking on the streets', 'http://nk.img.r9it.com/chatgpt-plus/1696768901870188.png', '{\"task_id\":\"task(r7f2bt3oc8hmf7d)\",\"prompt\":\"A medieval girl wearing a cheongsam walking on the streets\",\"negative_prompt\":\"nsfw, paintings, cartoon, anime, sketches, low quality,easynegative,ng_deepnegative _v1 75t,(worst quality:2),(low quality:2),(normalquality:2),lowres,bad anatomy,bad hands,normal quality,((monochrome)),((grayscale)),((watermark))\",\"steps\":30,\"sampler\":\"Euler a\",\"face_fix\":true,\"cfg_scale\":7,\"seed\":3991818648,\"height\":1024,\"width\":1024,\"hd_fix\":false,\"hd_redraw_rate\":0.3,\"hd_scale\":2,\"hd_scale_alg\":\"ESRGAN_4x\",\"hd_steps\":10}', 100, 1, '2023-10-08 20:41:29');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_users`
--
DROP TABLE IF EXISTS `chatgpt_users`;
CREATE TABLE `chatgpt_users` (
`id` int NOT NULL,
`mobile` char(11) NOT NULL COMMENT '手机号码',
`password` char(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '密码',
`avatar` varchar(100) NOT NULL COMMENT '头像',
`salt` char(12) NOT NULL COMMENT '密码盐',
`total_tokens` bigint NOT NULL DEFAULT '0' COMMENT '累计消耗 tokens',
`calls` int NOT NULL DEFAULT '0' COMMENT '剩余调用次数',
`img_calls` int NOT NULL DEFAULT '0' COMMENT '剩余绘图次数',
`expired_time` int NOT NULL COMMENT '用户过期时间',
`status` tinyint(1) NOT NULL COMMENT '当前状态',
`chat_config_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '聊天配置json',
`chat_roles_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '聊天角色 json',
`chat_models_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'AI模型 json',
`last_login_at` int NOT NULL COMMENT '最后登录时间',
`last_login_ip` char(16) NOT NULL COMMENT '最后登录 IP',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户表';
--
-- 转存表中的数据 `chatgpt_users`
--
INSERT INTO `chatgpt_users` (`id`, `mobile`, `password`, `avatar`, `salt`, `total_tokens`, `calls`, `img_calls`, `expired_time`, `status`, `chat_config_json`, `chat_roles_json`, `chat_models_json`, `last_login_at`, `last_login_ip`, `created_at`, `updated_at`) VALUES
(4, '18575670125', 'ccc3fb7ab61b8b5d096a4a166ae21d121fc38c71bbd1be6173d9ab973214a63b', 'http://img.r9it.com/chatgpt-plus/1693981355719469.png', 'ueedue5l', 42967, 5078, 61, 1727944236, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"elon_musk\",\"girl_friend\",\"lu_xun\",\"red_book\",\"psychiatrist\",\"translator\",\"weekly_report\",\"artist\",\"dou_yin\",\"english_trainer\",\"gpt\",\"kong_zi\",\"programmer\",\"seller\",\"steve_jobs\",\"teacher\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\",\"gpt-4\"]', 1698292705, '::1', '2023-06-12 16:47:17', '2023-10-26 13:51:52'),
(91, '18575670126', '5e4050b8dd403f593260395d9edeb9f273dbe92d15dfdd929c4a182e95da10c4', '/images/avatar/user.png', '6fj0otl8', 0, 10, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 1697184324, '::1', '2023-10-13 16:01:56', '2023-10-25 11:51:34'),
(92, '13888888888', 'afc6c65155e34e4a785b8e1e027b92178efa87474a657d5dc2811891e08b7101', '/images/avatar/user.png', 'txkb2mx5', 0, 10, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\",\"psychiatrist\",\"programmer\",\"artist\",\"lu_xun\",\"kong_zi\",\"elon_musk\",\"teacher\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 1697184800, '::1', '2023-10-13 16:05:48', '2023-10-13 16:13:21'),
(93, '13888888889', 'bc3f6918b1d652c42a204ba709f8dbaa4dc8ee657c6f0b0c19aabdb919b77872', '/images/avatar/user.png', 'sczbklqt', 0, 10, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 0, '', '2023-10-13 16:07:11', '2023-10-13 16:07:11'),
(94, '13899999999', 'a2e9e362f3217d8aa924ceaee2847bea7a86b735bea0a479057c4842d5d5205b', '/images/avatar/user.png', 'ys2oyhj0', 0, 10, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 0, '', '2023-10-13 16:07:32', '2023-10-13 16:07:32'),
(95, '13777777777', 'dc71896359367971f0312d04dbfd1bb5f57c80e09895ad8ec0c6ef2e13cce501', '/images/avatar/user.png', 'l138hnbj', 9, 9, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 0, '', '2023-10-13 16:08:13', '2023-10-13 16:08:13'),
(96, '13888888880', '5afd0432264031b2f75054108064903563bf47ed9f691f5f6ba183664db97e83', '/images/avatar/user.png', '0633sm7h', 0, 10, 0, 0, 1, '{\"api_keys\":{\"Azure\":\"\",\"ChatGLM\":\"\",\"OpenAI\":\"\"}}', '[\"gpt\"]', '[\"completions_pro\",\"eb-instant\",\"general\",\"generalv2\",\"chatglm_pro\",\"chatglm_lite\",\"chatglm_std\",\"gpt-3.5-turbo-16k\"]', 0, '', '2023-10-26 11:43:40', '2023-10-26 11:43:40');
-- --------------------------------------------------------
--
-- 表的结构 `chatgpt_user_login_logs`
--
DROP TABLE IF EXISTS `chatgpt_user_login_logs`;
CREATE TABLE `chatgpt_user_login_logs` (
`id` int NOT NULL,
`user_id` int NOT NULL COMMENT '用户ID',
`username` varchar(30) NOT NULL COMMENT '用户名',
`login_ip` char(16) NOT NULL COMMENT '登录IP',
`login_address` varchar(30) NOT NULL COMMENT '登录地址',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户登录日志';
--
-- 转储表的索引
--
--
-- 表的索引 `chatgpt_api_keys`
--
ALTER TABLE `chatgpt_api_keys`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `value` (`value`);
--
-- 表的索引 `chatgpt_chat_history`
--
ALTER TABLE `chatgpt_chat_history`
ADD PRIMARY KEY (`id`),
ADD KEY `chat_id` (`chat_id`);
--
-- 表的索引 `chatgpt_chat_items`
--
ALTER TABLE `chatgpt_chat_items`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `chat_id` (`chat_id`);
--
-- 表的索引 `chatgpt_chat_models`
--
ALTER TABLE `chatgpt_chat_models`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `chatgpt_chat_roles`
--
ALTER TABLE `chatgpt_chat_roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `marker` (`marker`);
--
-- 表的索引 `chatgpt_configs`
--
ALTER TABLE `chatgpt_configs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `marker` (`marker`);
--
-- 表的索引 `chatgpt_mj_jobs`
--
ALTER TABLE `chatgpt_mj_jobs`
ADD PRIMARY KEY (`id`),
ADD KEY `message_id` (`message_id`);
--
-- 表的索引 `chatgpt_rewards`
--
ALTER TABLE `chatgpt_rewards`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `tx_id` (`tx_id`);
--
-- 表的索引 `chatgpt_sd_jobs`
--
ALTER TABLE `chatgpt_sd_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `task_id` (`task_id`);
--
-- 表的索引 `chatgpt_users`
--
ALTER TABLE `chatgpt_users`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `chatgpt_user_login_logs`
--
ALTER TABLE `chatgpt_user_login_logs`
ADD PRIMARY KEY (`id`);
--
-- 在导出的表使用AUTO_INCREMENT
--
--
-- 使用表AUTO_INCREMENT `chatgpt_api_keys`
--
ALTER TABLE `chatgpt_api_keys`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
--
-- 使用表AUTO_INCREMENT `chatgpt_chat_history`
--
ALTER TABLE `chatgpt_chat_history`
MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=743;
--
-- 使用表AUTO_INCREMENT `chatgpt_chat_items`
--
ALTER TABLE `chatgpt_chat_items`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- 使用表AUTO_INCREMENT `chatgpt_chat_models`
--
ALTER TABLE `chatgpt_chat_models`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- 使用表AUTO_INCREMENT `chatgpt_chat_roles`
--
ALTER TABLE `chatgpt_chat_roles`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=127;
--
-- 使用表AUTO_INCREMENT `chatgpt_configs`
--
ALTER TABLE `chatgpt_configs`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- 使用表AUTO_INCREMENT `chatgpt_mj_jobs`
--
ALTER TABLE `chatgpt_mj_jobs`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75;
--
-- 使用表AUTO_INCREMENT `chatgpt_rewards`
--
ALTER TABLE `chatgpt_rewards`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- 使用表AUTO_INCREMENT `chatgpt_sd_jobs`
--
ALTER TABLE `chatgpt_sd_jobs`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=69;
--
-- 使用表AUTO_INCREMENT `chatgpt_users`
--
ALTER TABLE `chatgpt_users`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=97;
--
-- 使用表AUTO_INCREMENT `chatgpt_user_login_logs`
--
ALTER TABLE `chatgpt_user_login_logs`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;