1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Repositories\Contracts;
- /**
- *
- * @author lilin
- *
- */
- interface AiChatContentInterface
- {
- /**
- * 发送消息网址
- */
- const SEND_CHAT_URL = "/v1/chat-messages";
- /**
- * 发送数据信息
- * @param int $userId 用户ID
- * @param string $conversation_id 回话ID
- * @param string $content 对话内容
- * @return mixed
- */
- public function sendData(int $userId,string $conversation_id,string $content);
- /**
- * 得到最近的聊天内容
- * @param array $conditions 多个查询条件
- * @param array $fields 显示字段
- * @param string $sort 排序
- * @param int $page 页码
- * @param int $limit 显示条数
- * @return mixed
- */
- public function getChatContentList(array $conditions, array $fields, string $sort, int $page, int $limit);
- }
|