chore: update runtime logs to use 'LLM enrichment' instead of 'Agent skill'

- agent_handlers.py: 'Agent skill' -> 'LLM enrichment' in all log messages
- skill_registry.py: 'agent skills' -> 'prompt-based skills' in discovery log
- llm_service.py: docstring 'agent skills' -> 'LLM-based enrichment features'
This commit is contained in:
Will Miao
2026-07-04 16:53:41 +08:00
parent f7632a47f9
commit 905c37290f
3 changed files with 9 additions and 9 deletions

View File

@@ -187,8 +187,8 @@ _LLM_TIMEOUT = aiohttp.ClientTimeout(total=120)
class LLMService:
"""Centralized LLM API client.
All agent skills call LLMs through this service so that BYOK config,
retry logic, and error handling live in one place.
All LLM-based enrichment features call through this service so
that BYOK config, retry logic, and error handling live in one place.
"""
_instance: Optional["LLMService"] = None