Payknayk's picture
функциональные агенты и их настройки
ea4086f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Functional Agents | ScreenPipe</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<nav class="blur-bg bg-gray-800/50 border-b border-gray-700">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold gradient-text">ScreenPipe</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="index.html" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Home</a>
<a href="agents.html" class="px-3 py-2 rounded-md text-sm font-medium bg-indigo-600 text-white">Agents</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Features</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pricing</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold mb-6 gradient-text">Functional Agents</h1>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">Configure and manage your specialized workflow agents</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-500/20 p-3 rounded-lg mr-4">
<i data-feather="cpu" class="text-blue-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">Rendering Agent</h3>
</div>
<p class="text-gray-400 mb-4">Optimizes visual output processing</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Quality</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded px-3 py-2">
<option>Low</option>
<option selected>Medium</option>
<option>High</option>
<option>Ultra</option>
</select>
</div>
<div>
<label class="block text-sm font-medium mb-1">Performance Mode</label>
<div class="flex items-center space-x-4">
<label class="inline-flex items-center">
<input type="radio" name="perf_mode" class="form-radio text-blue-500" checked>
<span class="ml-2">Balanced</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="perf_mode" class="form-radio text-blue-500">
<span class="ml-2">Speed</span>
</label>
</div>
</div>
</div>
</div>
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-purple-500/20 p-3 rounded-lg mr-4">
<i data-feather="layers" class="text-purple-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">Composition Agent</h3>
</div>
<p class="text-gray-400 mb-4">Manages layer stacking and effects</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Max Layers</label>
<input type="range" min="5" max="100" value="25" class="w-full">
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>5</span>
<span>100</span>
</div>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-purple-500" checked>
<span class="ml-2">Auto-blend layers</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-purple-500">
<span class="ml-2">Smart layer grouping</span>
</label>
</div>
</div>
</div>
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-pink-500/20 p-3 rounded-lg mr-4">
<i data-feather="share-2" class="text-pink-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">Collaboration Agent</h3>
</div>
<p class="text-gray-400 mb-4">Controls real-time team workflows</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Sync Frequency</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded px-3 py-2">
<option>Manual</option>
<option selected>Every 15s</option>
<option>Every 30s</option>
<option>Real-time</option>
</select>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-pink-500" checked>
<span class="ml-2">Conflict detection</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-pink-500">
<span class="ml-2">Version history</span>
</label>
</div>
</div>
</div>
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-green-500/20 p-3 rounded-lg mr-4">
<i data-feather="zap" class="text-green-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">Performance Agent</h3>
</div>
<p class="text-gray-400 mb-4">Optimizes system resource usage</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">GPU Utilization</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded px-3 py-2">
<option>Low (25%)</option>
<option selected>Medium (50%)</option>
<option>High (75%)</option>
<option>Full (100%)</option>
</select>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-green-500" checked>
<span class="ml-2">Background throttling</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-green-500">
<span class="ml-2">Smart cache management</span>
</label>
</div>
</div>
</div>
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-yellow-500/20 p-3 rounded-lg mr-4">
<i data-feather="alert-triangle" class="text-yellow-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">AI Assistant</h3>
</div>
<p class="text-gray-400 mb-4">Provides intelligent suggestions</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Suggestions Level</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded px-3 py-2">
<option>Minimal</option>
<option selected>Balanced</option>
<option>Aggressive</option>
</select>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-yellow-500" checked>
<span class="ml-2">Color suggestions</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-yellow-500">
<span class="ml-2">Layout suggestions</span>
</label>
</div>
</div>
</div>
<div class="bg-gray-800/70 border border-gray-700 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="bg-red-500/20 p-3 rounded-lg mr-4">
<i data-feather="alert-circle" class="text-red-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold">Security Agent</h3>
</div>
<p class="text-gray-400 mb-4">Manages access and permissions</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Sharing Restrictions</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded px-3 py-2">
<option>None</option>
<option selected>Team Only</option>
<option>Password Protected</option>
</select>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-red-500" checked>
<span class="ml-2">Watermark exports</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-red-500">
<span class="ml-2">Download restrictions</span>
</label>
</div>
</div>
</div>
</div>
<div class="mt-16 text-center">
<button class="px-8 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-lg font-bold transition-all transform hover:scale-105">
Save All Agent Settings
</button>
</div>
</main>
<footer class="bg-gray-800/50 border-t border-gray-700 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-gray-500 text-sm">
<p>© 2023 ScreenPipe. All rights reserved.</p>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>