Skip to content

Commit 90512d0

Browse files
committed
chore: add article type
1 parent fbede0c commit 90512d0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/analysis.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
import OpenAI from "openai";
22

3+
type Article = {
4+
uniqueId: string,
5+
title: string,
6+
summary: string
7+
}
8+
39
type ResearchOptions = {
410
researchQuestion: string,
5-
articles: any[]
11+
articles: Article[]
612
}
713

814
export class NarrativeAnalysis {

0 commit comments

Comments
 (0)