Spaces:
Sleeping
Sleeping
File size: 17,619 Bytes
78425d0 3644f88 78425d0 6bb98fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent Chat Interface</title>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@tailwindcss/typography/dist/typography.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdn.plot.ly/plotly-2.27.0.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
.chat-message {
transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-message-enter {
opacity: 0;
transform: translateY(10px);
}
.chat-message-enter-active {
opacity: 1;
transform: translateY(0);
}
.tool-section {
transition: max-height 0.3s ease, opacity 0.3s ease;
}
.tool-section.collapsed {
max-height: 0;
opacity: 0;
overflow: hidden;
}
.tool-section.expanded {
max-height: 1000px;
opacity: 1;
}
pre code {
display: block;
background: #f5f5f5;
padding: 1rem;
border-radius: 0.5rem;
overflow-x: auto;
}
</style>
</head>
<body class="bg-gray-50 font-inter">
<div id="app" class="min-h-screen flex flex-col">
<div class="max-w-4xl mx-auto p-4 flex-1 flex flex-col w-full">
<!-- Chat Messages -->
<div class="bg-white rounded-lg shadow-lg p-6 mb-4 flex-1 overflow-y-auto w-full">
<div v-for="(message, index) in messages" :key="index" class="chat-message mb-4">
<!-- User Message -->
<div v-if="message.role === 'user'" class="flex justify-end">
<div class="bg-blue-500 text-white rounded-lg py-2 px-4 max-w-[80%] shadow-sm">
{{ message.content }}
</div>
</div>
<!-- Assistant Message -->
<div v-else class="flex flex-col space-y-2">
<!-- Regular Message -->
<div v-if="message.content" class="bg-gray-100 rounded-lg py-2 px-4 max-w-[80%] shadow-sm prose">
<div v-html="formatMarkdown(message.content)"></div>
</div>
<!-- Tool Execution -->
<div v-if="message.tool_data" class="border border-gray-200 rounded-lg p-4 max-w-[80%] shadow-sm">
<div class="flex items-center justify-between cursor-pointer"
@click="toggleTool(index)">
<h3 class="font-semibold text-gray-700">
Tool: {{ message.tool_data.tool }}
</h3>
<span class="text-gray-500">
{{ isToolExpanded(index) ? '▼' : '▶' }}
</span>
</div>
<div :class="['tool-section', isToolExpanded(index) ? 'expanded' : 'collapsed']">
<!-- Tool Input -->
<div v-if="message.tool_data.input" class="mt-2">
<div class="text-sm text-gray-600">Input:</div>
<pre v-if="message.tool_data.tool === 'execute_python'"><code>{{ message.tool_data.input.code }}</code></pre>
<pre v-else class="bg-gray-50 p-2 rounded mt-1 text-sm overflow-x-auto">{{ JSON.stringify(message.tool_data.input, null, 2) }}</pre>
</div>
<!-- Tool Output -->
<div v-if="message.tool_data.output" class="mt-2">
<div class="text-sm text-gray-600">Output:</div>
<div v-if="message.tool_data.output.artifacts" class="space-y-4">
<div v-for="(artifact, artifactIndex) in message.tool_data.output.artifacts"
:key="artifact.artifact_id"
class="mt-4">
<!-- Image Artifact -->
<img v-if="artifact.artifact_type.startsWith('image/')"
:src="artifact.imageData ? `data:${artifact.artifact_type};base64,${artifact.imageData}` : ''"
class="max-w-full h-auto rounded shadow-sm"
:alt="artifact.artifact_id">
<!-- Plotly Artifact -->
<div v-else-if="artifact.artifact_type === 'application/vnd.plotly.v1+json'"
:id="'plot-' + index + '-' + artifactIndex"
class="w-full h-96">
</div>
<!-- HTML Artifact -->
<div v-else-if="artifact.artifact_type === 'text/html'"
class="border rounded p-2 bg-gray-50 shadow-sm"
v-html="artifact.content">
</div>
</div>
</div>
<pre v-if="message.tool_data.output.text"
class="bg-gray-50 p-2 rounded mt-1 text-sm overflow-x-auto shadow-sm">{{ message.tool_data.output.text }}</pre>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Input Area -->
<div class="flex space-x-4">
<input v-model="userInput"
@keyup.enter="sendMessage"
type="text"
class="flex-1 rounded-lg border border-gray-300 p-2 focus:outline-none focus:ring-2 focus:ring-blue-500 shadow-sm"
placeholder="Type your message...">
<button @click="sendMessage"
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-blue-500 shadow-sm">
Send
</button>
</div>
</div>
</div>
<script>
const { createApp } = Vue
createApp({
data() {
return {
messages: [],
userInput: '',
expandedTools: new Set(),
currentAssistantMessage: '',
session_token: crypto.randomUUID()
}
},
methods: {
formatMarkdown(text) {
return marked.parse(text)
},
toggleTool(index) {
if (this.expandedTools.has(index)) {
this.expandedTools.delete(index)
} else {
this.expandedTools.add(index)
// Re-render Plotly charts when expanding, only if they haven't been rendered
this.$nextTick(() => {
const message = this.messages[index]
if (message?.tool_data?.output?.artifacts) {
const needsRendering = message.tool_data.output.artifacts.some(artifact => {
if (artifact.artifact_type === 'application/vnd.plotly.v1+json') {
const elementId = `plot-${index}-${message.tool_data.output.artifacts.indexOf(artifact)}`
const element = document.getElementById(elementId)
return element && !element._fullData
}
return false
})
if (needsRendering) {
this.renderPlotlyCharts(index)
}
}
})
}
},
isToolExpanded(index) {
return this.expandedTools.has(index)
},
async fetchArtifact(artifactId) {
try {
const response = await fetch(`https://pvanand-code-execution-files-v5.hf.space/artifact/${artifactId}`)
if (!response.ok) throw new Error('Failed to fetch artifact')
const data = await response.json()
return data
} catch (error) {
console.error('Error fetching artifact:', error)
return null
}
},
renderPlotlyCharts(messageIndex) {
const message = this.messages[messageIndex]
if (!message?.tool_data?.output?.artifacts) return
message.tool_data.output.artifacts.forEach((artifact, artifactIndex) => {
if (artifact.artifact_type === 'application/vnd.plotly.v1+json' && artifact.plotData) {
const elementId = `plot-${messageIndex}-${artifactIndex}`
const element = document.getElementById(elementId)
if (element) {
// Check if a plot already exists in this element
if (element._fullData) {
// Update existing plot
Plotly.react(elementId, artifact.plotData)
} else {
// Create new plot
Plotly.newPlot(elementId, artifact.plotData)
}
}
}
})
},
async handleToolEnd(eventData) {
// Create a new message for each tool output
const newMessage = {
role: 'assistant',
tool_data: {
tool: eventData.tool,
output: {
text: eventData.output.text,
artifacts: []
}
}
}
if (eventData.output?.artifacts) {
for (const artifact of eventData.output.artifacts) {
const data = await this.fetchArtifact(artifact.artifact_id)
if (artifact.artifact_type.startsWith('image/')) {
artifact.imageData = data.data
}
else if (artifact.artifact_type === 'application/vnd.plotly.v1+json') {
artifact.plotData = JSON.parse(data.data)
}
else if (artifact.artifact_type === 'text/html') {
artifact.content = data.data
}
newMessage.tool_data.output.artifacts.push(artifact)
}
}
this.messages.push(newMessage)
// Expand the tool section automatically
this.expandedTools.add(this.messages.length - 1)
// Render Plotly charts after the DOM updates
this.$nextTick(() => {
this.renderPlotlyCharts(this.messages.length - 1)
})
},
async sendMessage() {
if (!this.userInput.trim()) return
// Add user message
this.messages.push({
role: 'user',
content: this.userInput
})
const data = {
message: this.userInput,
thread_id: this.session_token
}
this.userInput = ''
this.currentAssistantMessage = ''
try {
const response = await fetch('https://pvanand-code-chat-api.hf.space/chat', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'text/event-stream'
},
body: JSON.stringify(data)
})
const reader = response.body.getReader()
while (true) {
const { done, value } = await reader.read()
if (done) break
const chunk = new TextDecoder().decode(value)
const lines = chunk.split('\n')
for (const line of lines) {
if (!line.startsWith('data: ')) continue
try {
const eventData = JSON.parse(line.substring(6))
switch (eventData.type) {
case 'token':
this.handleToken(eventData)
break
case 'tool_start':
this.handleToolStart(eventData)
break
case 'tool_end':
await this.handleToolEnd(eventData)
break
}
} catch (e) {
console.error('Error parsing event:', e)
}
}
}
} catch (error) {
console.error('Error:', error)
}
},
handleToken(eventData) {
this.currentAssistantMessage += eventData.content
this.updateAssistantMessage(this.currentAssistantMessage)
},
handleToolStart(eventData) {
// Only create a new message if it's a new tool execution
if (!this.messages.length ||
this.messages[this.messages.length - 1].role !== 'assistant' ||
this.messages[this.messages.length - 1].tool_data?.output) {
this.messages.push({
role: 'assistant',
tool_data: {
tool: eventData.tool,
input: eventData.input
}
})
}
},
updateAssistantMessage(content) {
const lastMessage = this.messages[this.messages.length - 1]
if (lastMessage?.role === 'assistant' && !lastMessage.tool_data) {
lastMessage.content = content
} else {
this.messages.push({
role: 'assistant',
content: content
})
}
}
},
beforeUnmount() {
// Clean up all Plotly charts when component is destroyed
this.messages.forEach((message, index) => {
if (message?.tool_data?.output?.artifacts) {
message.tool_data.output.artifacts.forEach((artifact, artifactIndex) => {
if (artifact.artifact_type === 'application/vnd.plotly.v1+json') {
const elementId = `plot-${index}-${artifactIndex}`
Plotly.purge(elementId)
}
})
}
})
}
}).mount('#app')
</script>
</body>
</html> |