🤖 Agentic AI Playground
Watch autonomous AI agents collaborate in real-time! Learn the hottest AI trend of 2025 - multi-agent systems.
Discover how autonomous AI agents work together to solve complex problems. Choose your learning level:
/* WIA AI Modal CSS */ .wia-ai-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 10000; backdrop-filter: blur(5px); } .wia-ai-modal.show { display: flex; align-items: center; justify-content: center; } .modal-content { background: #fff; border-radius: 20px; width: 90%; max-width: 800px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .modal-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 20px; color: white; display: flex; justify-content: space-between; align-items: center; } .modal-title { font-size: 24px; font-weight: bold; margin: 0; } .close-btn { background: none; border: none; color: white; font-size: 30px; cursor: pointer; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; } .close-btn:hover { background: rgba(255, 255, 255, 0.2); } .ai-selector { display: flex; background: #f8f9fa; border-bottom: 1px solid #dee2e6; } .ai-tab { flex: 1; padding: 15px; text-align: center; cursor: pointer; border: none; background: none; font-size: 16px; font-weight: 500; transition: all 0.3s; border-bottom: 3px solid transparent; } .ai-tab.active { background: white; border-bottom-color: #667eea; color: #667eea; } .ai-tab:hover:not(.active) { background: #e9ecef; } .api-setup { padding: 20px; border-bottom: 1px solid #dee2e6; background: #f8f9fa; } .api-input-group { display: flex; gap: 10px; align-items: center; } .api-input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; } .api-save-btn { background: #28a745; color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 500; transition: background 0.3s; } .api-save-btn:hover { background: #218838; } .api-status { margin-top: 10px; padding: 10px; border-radius: 8px; font-size: 14px; } .api-status.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .api-status.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .chat-container { flex: 1; display: flex; flex-direction: column; min-height: 400px; } .chat-messages { flex: 1; padding: 20px; overflow-y: auto; background: white; } .message { margin-bottom: 15px; display: flex; gap: 10px; } .message.user { justify-content: flex-end; } .message.assistant { justify-content: flex-start; } .message-content { max-width: 70%; padding: 12px 16px; border-radius: 18px; font-size: 14px; line-height: 1.4; } .message.user .message-content { background: #667eea; color: white; border-bottom-right-radius: 6px; } .message.assistant .message-content { background: #f1f3f5; color: #333; border-bottom-left-radius: 6px; } .message-input-area { padding: 20px; border-top: 1px solid #dee2e6; background: #f8f9fa; } .message-input-group { display: flex; gap: 10px; align-items: flex-end; } .message-input { flex: 1; padding: 12px; border: 1px solid #ddd; border-radius: 20px; font-size: 14px; resize: none; max-height: 100px; outline: none; } .message-input:focus { border-color: #667eea; } .send-btn { background: #667eea; color: white; border: none; padding: 12px 20px; border-radius: 20px; cursor: pointer; font-weight: 500; transition: background 0.3s; white-space: nowrap; } .send-btn:hover { background: #5a6fd8; } .send-btn:disabled { background: #6c757d; cursor: not-allowed; } .loading { display: flex; align-items: center; gap: 5px; color: #6c757d; font-style: italic; } .loading::after { content: "●●●"; animation: loading 1.5s infinite; } @keyframes loading { 0%, 33% { content: "●○○"; } 34%, 66% { content: "○●○"; } 67%, 100% { content: "○○●"; } } @media (max-width: 768px) { .modal-content { width: 95%; height: 95vh; max-height: 95vh; } .ai-tab { font-size: 14px; padding: 12px 8px; } .modal-title { font-size: 20px; } } @media (prefers-color-scheme: dark) { .modal-content { background: #2d3748; color: #e2e8f0; } .chat-messages { background: #2d3748; } .message.assistant .message-content { background: #4a5568; color: #e2e8f0; } .api-setup, .message-input-area { background: #4a5568; } .ai-selector { background: #4a5568; } .ai-tab.active { background: #2d3748; } }
Watch autonomous AI agents collaborate in real-time! Learn the hottest AI trend of 2025 - multi-agent systems.
Discover how autonomous AI agents work together to solve complex problems. Choose your learning level: