Skip to content

Commit eabda8e

Browse files
committed
refactor: clean up imports
- Add explicit import for CUSTOM_PROMPTS_DIR in server.ts - Remove unused path import in config-manager.ts
1 parent 2872494 commit eabda8e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/server.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@ import { z, ZodError } from 'zod';
6363
import { zodToJsonSchema } from 'zod-to-json-schema';
6464
import { PromptManager } from './prompts/manager.js';
6565
import { configManager, type CodeReasoningConfig } from './utils/config-manager.js';
66-
import { CONFIG_DIR, MAX_THOUGHT_LENGTH, MAX_THOUGHTS } from './utils/config.js';
66+
import {
67+
CONFIG_DIR,
68+
MAX_THOUGHT_LENGTH,
69+
MAX_THOUGHTS,
70+
CUSTOM_PROMPTS_DIR,
71+
} from './utils/config.js';
6772

6873
/* -------------------------------------------------------------------------- */
6974
/* CONFIGURATION */

src/utils/config-manager.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* configuration settings for the code-reasoning server.
66
*/
77

8-
import path from 'path';
98
import { CONFIG_DIR } from './config.js';
109

1110
/**

0 commit comments

Comments
 (0)