Skip to content

Commit 4d90376

Browse files
committed
Address comments
Signed-off-by: Daishan Peng <[email protected]>
1 parent 2dcc992 commit 4d90376

File tree

8 files changed

+26
-22
lines changed

8 files changed

+26
-22
lines changed

actions/knowledge/filehelper.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import fs from 'fs';
44
import path from 'path';
5-
import { FileDetail } from '@/actions/knowledge/util';
65
import { WORKSPACE_DIR } from '@/config/env';
6+
import { FileDetail } from '@/model/knowledge';
77

88
export async function getFileOrFolderSizeInKB(
99
filePath: string
@@ -30,13 +30,12 @@ export async function getFileOrFolderSizeInKB(
3030
return 0;
3131
}
3232

33-
export async function importFiles(
34-
files: string[]
35-
): Promise<Map<string, FileDetail>> {
33+
export async function importFiles(files: string[]) {
3634
const result: Map<string, FileDetail> = new Map();
3735

3836
for (const file of files) {
3937
// check if filepath lives in notion or onedrive integration folders
38+
// The file should live in a folder with the pattern ${WORKSPACE_DIR}/knowledge/integrations/${type}/${DocumentId}/${fileName}
4039
const baseDir = path.dirname(path.dirname(file));
4140
let type = path.basename(baseDir);
4241
if (

actions/knowledge/knowledge.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import path from 'path';
44
import { exec } from 'child_process';
55
import { promisify } from 'util';
66
import { KNOWLEDGE_DIR } from '@/config/env';
7-
import { FileDetail } from '@/actions/knowledge/util';
87
import { getFileOrFolderSizeInKB } from '@/actions/knowledge/filehelper';
8+
import { FileDetail } from '@/model/knowledge';
99

1010
const execPromise = promisify(exec);
1111

actions/knowledge/notion.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ export async function isNotionConfigured() {
1717
);
1818
}
1919

20-
export async function getNotionFiles(): Promise<
21-
Map<string, { url: string; fileName: string }>
22-
> {
20+
export async function getNotionFiles() {
2321
const dir = path.join(WORKSPACE_DIR(), 'knowledge', 'integrations', 'notion');
2422
const metadataFromFiles = fs.readFileSync(path.join(dir, 'metadata.json'));
2523
const metadata = JSON.parse(metadataFromFiles.toString());

actions/knowledge/tool.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ export async function runSyncTool(
4343
return;
4444
}
4545

46-
// syncFiles syncs all files only when they are selected
47-
// todo: we can stop syncing once file is no longer used by any other script
46+
/**
47+
* syncFiles syncs all files only when they are selected
48+
* todo: we can stop syncing once file is no longer used by any other script
49+
*/
4850
export async function syncFiles(
4951
selectedFiles: string[],
5052
type: 'notion' | 'onedrive'

actions/knowledge/util.ts

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
export interface FileDetail {
2-
fileName: string;
3-
size: number;
4-
type: 'local' | 'notion' | 'onedrive';
5-
}
6-
71
export function gatewayTool(): string {
82
return 'github.com/gptscript-ai/knowledge/[email protected]';
93
}

contexts/edit.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ import {
1616
getFiles,
1717
runKnowledgeIngest,
1818
} from '@/actions/knowledge/knowledge';
19-
import {
20-
ensureKnowledgeTool,
21-
FileDetail,
22-
getCookie,
23-
} from '@/actions/knowledge/util';
19+
import { ensureKnowledgeTool, getCookie } from '@/actions/knowledge/util';
20+
import { FileDetail } from '@/model/knowledge';
2421

2522
const DEBOUNCE_TIME = 1000; // milliseconds
2623
const DYNAMIC_INSTRUCTIONS = 'dynamic-instructions';

model/knowledge.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export const FileProviderType = {
2+
Local: 'local',
3+
OneDrive: 'onedrive',
4+
Notion: 'notion',
5+
} as const;
6+
7+
export type FileProviderType =
8+
(typeof FileProviderType)[keyof typeof FileProviderType];
9+
10+
export interface FileDetail {
11+
fileName: string;
12+
size: number;
13+
type: FileProviderType;
14+
}

server/app.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const startAppServer = ({ dev, hostname, port, appDir }) => {
5959
() => {
6060
syncKnowledgeFilesFromIntegrations(gptscript);
6161
},
62-
24 * 60 * 60 * 1000
62+
24 * 60 * 60 * 1000 // 24 hours
6363
);
6464

6565
Promise.resolve(gptscriptInitPromise).then(() => {

0 commit comments

Comments
 (0)