File size: 5,294 Bytes
a9177c5
 
aa5a88c
f8d4985
a9177c5
694b290
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
a9177c5
 
aa5a88c
 
a9177c5
 
aa5a88c
 
 
 
 
a9177c5
 
694b290
 
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694b290
 
aa5a88c
694b290
a9177c5
aa5a88c
 
 
 
 
 
 
 
 
a9177c5
694b290
 
aa5a88c
 
 
 
 
 
 
694b290
aa5a88c
694b290
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694b290
aa5a88c
694b290
 
aa5a88c
 
 
 
694b290
 
aa5a88c
 
 
694b290
 
aa5a88c
 
 
a9177c5
 
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
a9177c5
 
aa5a88c
 
 
694b290
 
 
aa5a88c
 
694b290
 
 
250dc59
694b290
 
250dc59
 
aa5a88c
250dc59
aa5a88c
250dc59
aa5a88c
 
 
 
694b290
 
aa5a88c
 
 
 
 
 
 
 
694b290
 
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694b290
 
 
 
aa5a88c
694b290
 
aa5a88c
 
 
 
694b290
 
aa5a88c
694b290
aa5a88c
 
 
 
 
694b290
 
aa5a88c
 
 
 
 
 
 
 
694b290
 
 
aa5a88c
 
 
 
694b290
 
aa5a88c
 
 
694b290
aa5a88c
694b290
aa5a88c
 
 
694b290
 
aa5a88c
 
 
694b290
 
aa5a88c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import streamlit as st
import pandas as pd

from src.bibtex import export_bibtex


def display_section(title, content, icon):

    st.markdown(
        f"### {icon} {title}"
    )

    if content:
        st.write(content)
    else:
        st.info(
            f"{title} not generated yet."
        )


def summary_section():

    st.header("πŸ“‘ Literature Analysis Dashboard")


    if not st.session_state.papers:

        st.info(
            "πŸ“‚ Upload research papers first."
        )

        return



    total = len(
        st.session_state.papers
    )


    st.success(
        f"πŸ“š Total Papers Analyzed: {total}"
    )



    # ===============================
    # PAPER CARDS
    # ===============================

    for index, paper in enumerate(
        st.session_state.papers,
        start=1
    ):


        title = paper.get(
            "title",
            "Untitled Paper"
        )


        with st.expander(
            f"πŸ“„ {index}. {title}",
            expanded=False
        ):


            # -------------------------
            # Metadata
            # -------------------------

            st.markdown(
                "## πŸ“Œ Paper Information"
            )


            authors = paper.get(
                "authors",
                ["Unknown"]
            )


            if isinstance(authors, list):

                authors_text = ", ".join(
                    authors
                )

                author_count = len(authors)

            else:

                authors_text = str(authors)
                author_count = 1



            col1, col2 = st.columns(2)


            with col1:

                st.write(
                    "πŸ‘€ **Authors**"
                )

                st.write(
                    authors_text
                )


            with col2:

                st.write(
                    "πŸ“„ **Title**"
                )

                st.write(
                    title
                )
            # -------------------------
            # Statistics
            # -------------------------

            text = paper.get(
                "text",
                ""
            )


            words = len(
                text.split()
            )


            reading_time = max(
                1,
                words // 220
            )



            c1, c2, c3 = st.columns(3)


            c1.metric(
                "πŸ“ Words",
                f"{words:,}"
            )


            c2.metric(
                "πŸ‘₯ Authors",
                author_count
            )


            c3.metric(
                "⏱ Reading Time",
                f"{reading_time} min"
            )



            st.divider()

            # -------------------------
            # AI Insights
            # -------------------------

            st.divider()

            display_section(
                "Abstract Summary",
                paper.get(
                    "abstract_summary",
                    ""
                ),
                "πŸ“–"
            )


            display_section(
                "AI Summary",
                paper.get(
                    "summary",
                    ""
                ),
                "🧠"
            )


            display_section(
                "Research Gaps",
                paper.get(
                    "research_gaps",
                    ""
                ),
                "πŸ”¬"
            )


            display_section(
                "Limitations",
                paper.get(
                    "limitations",
                    ""
                ),
                "⚠️"
            )



            # -------------------------
            # Keywords
            # -------------------------

            keywords = paper.get(
                "keywords",
                []
            )


            if keywords:

                st.divider()

                st.markdown(
                    "### 🏷 Keywords"
                )


                if isinstance(
                    keywords,
                    list
                ):

                    st.write(
                        " β€’ ".join(keywords)
                    )

                else:

                    st.write(
                        keywords
                    )



    # ===============================
    # EXPORT
    # ===============================

    st.divider()


    st.subheader(
        "πŸ“₯ Export Results"
    )


    df = pd.DataFrame(
        st.session_state.papers
    )


    col1, col2, col3 = st.columns(3)



    with col1:

        st.download_button(
            "⬇ CSV",
            df.to_csv(
                index=False
            ).encode("utf-8"),
            "litreviewai_results.csv",
            "text/csv"
        )



    with col2:

        st.download_button(
            "⬇ JSON",
            df.to_json(
                indent=2
            ).encode("utf-8"),
            "litreviewai_results.json",
            "application/json"
        )



    with col3:

        st.download_button(
            "⬇ BibTeX",
            export_bibtex(
                st.session_state.papers
            ),
            "papers.bib",
            "text/plain"
        )