 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			116 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as util from "../core/util.js";
 | ||
| export const parsedType = (data) => {
 | ||
|     const t = typeof data;
 | ||
|     switch (t) {
 | ||
|         case "number": {
 | ||
|             return Number.isNaN(data) ? "NaN" : "number";
 | ||
|         }
 | ||
|         case "object": {
 | ||
|             if (Array.isArray(data)) {
 | ||
|                 return "array";
 | ||
|             }
 | ||
|             if (data === null) {
 | ||
|                 return "null";
 | ||
|             }
 | ||
|             if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) {
 | ||
|                 return data.constructor.name;
 | ||
|             }
 | ||
|         }
 | ||
|     }
 | ||
|     return t;
 | ||
| };
 | ||
| const error = () => {
 | ||
|     const Sizable = {
 | ||
|         string: { unit: "karakter", verb: "olmalı" },
 | ||
|         file: { unit: "bayt", verb: "olmalı" },
 | ||
|         array: { unit: "öğe", verb: "olmalı" },
 | ||
|         set: { unit: "öğe", verb: "olmalı" },
 | ||
|     };
 | ||
|     function getSizing(origin) {
 | ||
|         return Sizable[origin] ?? null;
 | ||
|     }
 | ||
|     const Nouns = {
 | ||
|         regex: "girdi",
 | ||
|         email: "e-posta adresi",
 | ||
|         url: "URL",
 | ||
|         emoji: "emoji",
 | ||
|         uuid: "UUID",
 | ||
|         uuidv4: "UUIDv4",
 | ||
|         uuidv6: "UUIDv6",
 | ||
|         nanoid: "nanoid",
 | ||
|         guid: "GUID",
 | ||
|         cuid: "cuid",
 | ||
|         cuid2: "cuid2",
 | ||
|         ulid: "ULID",
 | ||
|         xid: "XID",
 | ||
|         ksuid: "KSUID",
 | ||
|         datetime: "ISO tarih ve saat",
 | ||
|         date: "ISO tarih",
 | ||
|         time: "ISO saat",
 | ||
|         duration: "ISO süre",
 | ||
|         ipv4: "IPv4 adresi",
 | ||
|         ipv6: "IPv6 adresi",
 | ||
|         cidrv4: "IPv4 aralığı",
 | ||
|         cidrv6: "IPv6 aralığı",
 | ||
|         base64: "base64 ile şifrelenmiş metin",
 | ||
|         base64url: "base64url ile şifrelenmiş metin",
 | ||
|         json_string: "JSON dizesi",
 | ||
|         e164: "E.164 sayısı",
 | ||
|         jwt: "JWT",
 | ||
|         template_literal: "Şablon dizesi",
 | ||
|     };
 | ||
|     return (issue) => {
 | ||
|         switch (issue.code) {
 | ||
|             case "invalid_type":
 | ||
|                 return `Geçersiz değer: beklenen ${issue.expected}, alınan ${parsedType(issue.input)}`;
 | ||
|             case "invalid_value":
 | ||
|                 if (issue.values.length === 1)
 | ||
|                     return `Geçersiz değer: beklenen ${util.stringifyPrimitive(issue.values[0])}`;
 | ||
|                 return `Geçersiz seçenek: aşağıdakilerden biri olmalı: ${util.joinValues(issue.values, "|")}`;
 | ||
|             case "too_big": {
 | ||
|                 const adj = issue.inclusive ? "<=" : "<";
 | ||
|                 const sizing = getSizing(issue.origin);
 | ||
|                 if (sizing)
 | ||
|                     return `Çok büyük: beklenen ${issue.origin ?? "değer"} ${adj}${issue.maximum.toString()} ${sizing.unit ?? "öğe"}`;
 | ||
|                 return `Çok büyük: beklenen ${issue.origin ?? "değer"} ${adj}${issue.maximum.toString()}`;
 | ||
|             }
 | ||
|             case "too_small": {
 | ||
|                 const adj = issue.inclusive ? ">=" : ">";
 | ||
|                 const sizing = getSizing(issue.origin);
 | ||
|                 if (sizing)
 | ||
|                     return `Çok küçük: beklenen ${issue.origin} ${adj}${issue.minimum.toString()} ${sizing.unit}`;
 | ||
|                 return `Çok küçük: beklenen ${issue.origin} ${adj}${issue.minimum.toString()}`;
 | ||
|             }
 | ||
|             case "invalid_format": {
 | ||
|                 const _issue = issue;
 | ||
|                 if (_issue.format === "starts_with")
 | ||
|                     return `Geçersiz metin: "${_issue.prefix}" ile başlamalı`;
 | ||
|                 if (_issue.format === "ends_with")
 | ||
|                     return `Geçersiz metin: "${_issue.suffix}" ile bitmeli`;
 | ||
|                 if (_issue.format === "includes")
 | ||
|                     return `Geçersiz metin: "${_issue.includes}" içermeli`;
 | ||
|                 if (_issue.format === "regex")
 | ||
|                     return `Geçersiz metin: ${_issue.pattern} desenine uymalı`;
 | ||
|                 return `Geçersiz ${Nouns[_issue.format] ?? issue.format}`;
 | ||
|             }
 | ||
|             case "not_multiple_of":
 | ||
|                 return `Geçersiz sayı: ${issue.divisor} ile tam bölünebilmeli`;
 | ||
|             case "unrecognized_keys":
 | ||
|                 return `Tanınmayan anahtar${issue.keys.length > 1 ? "lar" : ""}: ${util.joinValues(issue.keys, ", ")}`;
 | ||
|             case "invalid_key":
 | ||
|                 return `${issue.origin} içinde geçersiz anahtar`;
 | ||
|             case "invalid_union":
 | ||
|                 return "Geçersiz değer";
 | ||
|             case "invalid_element":
 | ||
|                 return `${issue.origin} içinde geçersiz değer`;
 | ||
|             default:
 | ||
|                 return `Geçersiz değer`;
 | ||
|         }
 | ||
|     };
 | ||
| };
 | ||
| export default function () {
 | ||
|     return {
 | ||
|         localeError: error(),
 | ||
|     };
 | ||
| }
 |