-
Notifications
You must be signed in to change notification settings - Fork 964
Expand file tree
/
Copy pathConfigs.js
More file actions
29 lines (25 loc) · 748 Bytes
/
Configs.js
File metadata and controls
29 lines (25 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import * as Tools from '../utils/Tools';
const APP_NANE = 'codelf';
const PAGE_URL = Tools.thisPage;
const PAGE_PATH = Tools.thisPath;
// Search engines configuration
const SEARCH_ENGINES = {
SEARCHCODE: 'searchcode',
DEEPSEEK: 'deepseek'
};
// Search engine display names and metadata
const SEARCH_ENGINE_CONFIG = {
[SEARCH_ENGINES.SEARCHCODE]: {
name: 'SearchCode',
description: 'Search real-world code from GitHub, BitBucket, GitLab',
icon: 'search',
color: 'blue'
},
[SEARCH_ENGINES.DEEPSEEK]: {
name: 'DeepSeek AI',
description: 'AI-powered code suggestions and variable naming',
icon: 'brain',
color: 'purple'
}
};
export { APP_NANE, PAGE_PATH, PAGE_URL, SEARCH_ENGINES, SEARCH_ENGINE_CONFIG }