Phase 1+2: Rename CrowdSight + fix Thai vocabulary

Phase 1: Rename MiroFish → CrowdSight across all files
- 39 files, 114+ occurrences replaced
- Frontend, backend, locales, config, README, docker-compose

Phase 2: Fix difficult Thai vocabulary
- เมล็ดพันธุ์แห่งความจริง → ข้อมูลตั้งต้น
- สกัดเอนทิตี → ดึงตัวละคร
- ฉีดความจำ → เพิ่มความจำ
- ออนโทโลยี → โครงสร้างข้อมูล
- เอนทิตี → ตัวละคร
- พลวัตกลุ่ม → พฤติกรรมกลุ่ม
- โลกคู่ขนาน → โลกจำลอง

Only string changes, no logic changes.
This commit is contained in:
Kunthawat Greethong
2026-06-26 10:27:48 +07:00
parent 0e263f0490
commit 596a75c229
39 changed files with 166 additions and 166 deletions

View File

@@ -27,7 +27,7 @@ def _ensure_utf8_stdout():
LOG_DIR = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'logs')
def setup_logger(name: str = 'mirofish', level: int = logging.DEBUG) -> logging.Logger:
def setup_logger(name: str = 'crowdsight', level: int = logging.DEBUG) -> logging.Logger:
"""
设置日志器
@@ -88,7 +88,7 @@ def setup_logger(name: str = 'mirofish', level: int = logging.DEBUG) -> logging.
return logger
def get_logger(name: str = 'mirofish') -> logging.Logger:
def get_logger(name: str = 'crowdsight') -> logging.Logger:
"""
获取日志器(如果不存在则创建)

View File

@@ -9,7 +9,7 @@ import functools
from typing import Callable, Any, Optional, Type, Tuple
from ..utils.logger import get_logger
logger = get_logger('mirofish.retry')
logger = get_logger('crowdsight.retry')
def retry_with_backoff(

View File

@@ -15,7 +15,7 @@ from zep_cloud.client import Zep
from .logger import get_logger
logger = get_logger('mirofish.zep_paging')
logger = get_logger('crowdsight.zep_paging')
_DEFAULT_PAGE_SIZE = 100
_MAX_NODES = 2000