Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rpidanny committed Jul 5, 2024
1 parent 5d651dc commit 504fc89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/inputs/flags/summary-method.flag.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as oclif from '@oclif/core'

import { SummaryMethod } from '../../services/llm/llm.service'
import { SummaryMethod } from '../../services/llm/llm.service.js'

export default oclif.Flags.custom<SummaryMethod>({
summary: 'The method to use for generating summaries.',
Expand Down
4 changes: 2 additions & 2 deletions src/services/search/interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ICitation, IPaperSource } from '@rpidanny/google-scholar'

import { ITextMatch } from '../../utils/text/interfaces'
import { SummaryMethod } from '../llm/llm.service'
import { ITextMatch } from '../../utils/text/interfaces.js'
import { SummaryMethod } from '../llm/llm.service.js'

export interface IPaperEntity {
title: string
Expand Down

0 comments on commit 504fc89

Please sign in to comment.