New Chat
Qwen2.5 14B

What can I help with?

Jebat Chat with local LLMs, LLM-to-LLM conversations, and BYOK support.

💡
Explain a concept
Break down complex topics
💻
Write code
Generate or debug code
🤖
LLM vs LLM
Watch models debate
🔍
Analyze & Review
Deep dive analysis
function exportChat() { const conv = conversations.find(c => c.id === currentConvId); if (!conv || conv.messages.length === 0) { alert('No messages to export'); return; } let text = `# Jebat Chat Export\n# Date: ${new Date().toISOString()}\n\n`; conv.messages.forEach(m => { const role = m.role === 'user' ? 'You' : (m.model || 'AI'); text += `## ${role}\n\n${m.content}\n\n---\n\n`; }); const blob = new Blob([text], { type: 'text/markdown' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `jebat-chat-${new Date().toISOString().split('T')[0]}.md`; a.click(); URL.revokeObjectURL(url); }