Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b0d453

Browse files
committedFeb 7, 2025·
fix: move comment
1 parent 058264b commit 6b0d453

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src/services/api/codeAssist.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// IMPORTANT!
2+
// In the future code assist api will be provided to ydb-ui component explicitly by consumer service.
3+
// Current solution is temporary and aimed to satisfy internal puproses.
4+
// It means this whole file will be moved to customer service
5+
16
import type {PromptFile, Suggestions} from '@ydb-platform/monaco-ghost';
27

38
import {codeAssistBackend as CODE_ASSISTANT_BACKEND} from '../../store';
@@ -76,8 +81,6 @@ function prepareCodeAssistPrompt(promptFiles: PromptFile[]): CodeAssistSuggestio
7681
});
7782
}
7883

79-
// In the future code assist api will be provided to ydb-ui component explicitly by consumer service.
80-
// Current solution is temporary and aimed to satisfy internal puproses.
8184
export class CodeAssistAPI extends BaseYdbAPI {
8285
getPath(path: string) {
8386
return `${CODE_ASSISTANT_BACKEND ?? ''}${path}`;

0 commit comments

Comments
 (0)
Please sign in to comment.