File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
mpp-ui/src/jsMain/typescript Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1414import * as fs from 'fs/promises' ;
1515import * as path from 'path' ;
1616import * as os from 'os' ;
17- import type { LLMConfig } from '../config/ConfigManager.js ' ;
18- import { LLMService } from './ LLMService.js ' ;
19- import { OutputFormatter } from '../utils/outputFormatter.js ' ;
20- import { ErrorRecoveryAgent , RecoveryResult } from './ErrorRecoveryAgent.js ' ;
21- import { LogSummaryAgent , LogSummaryResult } from './LogSummaryAgent.js ' ;
17+ import type { LLMConfig } from '../config/ConfigManager' ;
18+ import { LLMService } from '../services/ LLMService' ;
19+ import { OutputFormatter } from '../utils/outputFormatter' ;
20+ import { ErrorRecoveryAgent , RecoveryResult } from './ErrorRecoveryAgent' ;
21+ import { LogSummaryAgent , LogSummaryResult } from './LogSummaryAgent' ;
2222
2323// Import mpp-core
2424// @ts -ignore
Original file line number Diff line number Diff line change 1111import * as path from 'path' ;
1212import { exec } from 'child_process' ;
1313import { promisify } from 'util' ;
14- import { LLMService } from './ LLMService.js ' ;
15- import type { LLMConfig } from '../config/ConfigManager.js ' ;
14+ import { LLMService } from '../services/ LLMService' ;
15+ import type { LLMConfig } from '../config/ConfigManager' ;
1616
1717const execAsync = promisify ( exec ) ;
1818
Original file line number Diff line number Diff line change 77 * Similar to Cursor's "Running Command" tool design.
88 */
99
10- import { LLMService } from './ LLMService.js ' ;
11- import type { LLMConfig } from '../config/ConfigManager.js ' ;
10+ import { LLMService } from '../services/ LLMService' ;
11+ import type { LLMConfig } from '../config/ConfigManager' ;
1212
1313export interface LogSummaryContext {
1414 command : string ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { render } from 'ink';
1212import { Command } from 'commander' ;
1313import { App } from './ui/App.js' ;
1414import { ConfigManager } from './config/ConfigManager.js' ;
15- import { CodingAgentService } from './services /CodingAgentService.js ' ;
15+ import { CodingAgentService } from './agents /CodingAgentService' ;
1616import * as path from 'path' ;
1717import * as fs from 'fs' ;
1818
You can’t perform that action at this time.
0 commit comments