Skip to content

Commit

Permalink
Chore: parse관련 함수 및 서비스 명에서 URL 대신 Link로 대체
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Hoplin committed Jun 29, 2024
1 parent 6d0583b commit 8f52575
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/utils/parser.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as cheerio from 'cheerio';
*
* Parse Content and Title
*/
export async function parseURLTitleAndContent(url: string): Promise<{
export async function parseLinkTitleAndContent(url: string): Promise<{
title: string;
content: string;
}> {
Expand Down
2 changes: 1 addition & 1 deletion src/infrastructure/ai/ai.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class AiService {
});
}

async summarizeURLContent(
async summarizeLinkContent(
content: string,
userFolderList: string[],
temperature = 0.5,
Expand Down

0 comments on commit 8f52575

Please sign in to comment.