首页布局优化前

This commit is contained in:
iven
2026-03-17 23:26:16 +08:00
parent 74dbf42644
commit e262200f1e
89 changed files with 2266 additions and 2120 deletions

View File

@@ -90,10 +90,8 @@ const LLM_CONFIG_KEY = 'zclaw-llm-config';
// === Mock Adapter (for testing) ===
class MockLLMAdapter implements LLMServiceAdapter {
private config: LLMConfig;
constructor(config: LLMConfig) {
this.config = config;
constructor(_config: LLMConfig) {
// Config is stored for future use (e.g., custom mock behavior based on config)
}
async complete(messages: LLMMessage[]): Promise<LLMResponse> {