MountainX's picture
我想要一个类似cherry studio的 那种agentic 交互的对话框,就是一般大模型工具调用不是会输出文字和tool call吗?我想要它流式输出 文字然后接着一行 tool call的信息
88d00ff verified
raw
history blame contribute delete
739 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agentic Chat Flow</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<agentic-chat></agentic-chat>
<script src="components/agentic-chat.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>