Add DeepSeek and LMStudio providers
- Integrate DeepSeek and LMStudio AI providers - Add message processing utilities for improved handling - Implement reasoning panel for message actions - Add logging functionality to UI - Update configurations and dependencies
This commit is contained in:
parent
4d24d73161
commit
a6e4402616
18 changed files with 8270 additions and 592 deletions
13
ui/lib/logger.ts
Normal file
13
ui/lib/logger.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const logger = {
|
||||
info: (...args: any[]) => {
|
||||
console.log('[INFO]', ...args);
|
||||
},
|
||||
warn: (...args: any[]) => {
|
||||
console.warn('[WARN]', ...args);
|
||||
},
|
||||
error: (...args: any[]) => {
|
||||
console.error('[ERROR]', ...args);
|
||||
}
|
||||
};
|
||||
|
||||
export default logger;
|
||||
Loading…
Add table
Add a link
Reference in a new issue