File size: 18,364 Bytes
a789e9c 4da2869 a789e9c |
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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
import gradio as gr import openai import fitz # PyMuPDF for PDF processing import os import tempfile # Variable to store API key api_key = "" # Function to update API key def set_api_key(key): global api_key api_key = key return "API Key Set Successfully!" # Function to extract text from PDF def extract_text_from_pdf(pdf_path): try: doc = fitz.open(pdf_path) text = "\n".join([page.get_text("text") for page in doc]) return text except Exception as e: return f"Error extracting text from PDF: {str(e)}" # Function to interact with OpenAI API for systematic review def generate_systematic_review(pdf_files, review_question, include_tables=True): if not api_key: return "Please enter your OpenAI API key first." if not pdf_files: return "Please upload at least one PDF file." if not review_question: return "Please enter a review question." try: openai.api_key = api_key # Create the system message with systematic review guidelines system_prompt = """You are an expert academic assistant. Create a systematic review using academic research paper formatting. The Systematic Review must be in great details. Structure it using these steps: Step 1: Identify a Research Field The first step in writing a systematic review paper is to identify a research field. This involves selecting a specific area of study that you are interested in and want to explore further. Step 2: Generate a Research Question Once you have identified your research field, the next step is to generate a research question. This question should be specific, measurable, achievable, relevant, and time-bound (SMART). Step 3: Create a Protocol After generating your research question, the next step is to create a protocol. A detailed plan of how you will conduct your research, including the methods you will use, the data you will collect, and the analysis you will perform. Step 4: Evaluate Relevant Literature The fourth step is to evaluate relevant literature. This involves searching for and reviewing existing studies related to your research question. You should critically evaluate the quality of these studies and identify any gaps or limitations in the current literature. Step 5: Investigate Sources for Answers The fifth step is to investigate sources for answers. This involves searching for and accessing relevant data and information that will help you answer your research question. Step 6: Collect Data as per Protocol The sixth step is to collect data as per protocol. This involves implementing the methods outlined in your protocol and collecting the data specified. You should ensure that your data collection methods are rigorous and reliable. Step 7: Data Extraction The seventh step is to extract the data. This involves organizing and analyzing the data you have collected, and extracting the relevant information that will help you answer your research question. Step 8: Critical Analysis of Results The eighth step is to conduct a critical analysis of your results. This involves interpreting your findings, identifying patterns and trends, and drawing conclusions based on your data. Step 9: Interpreting Derivations The ninth step is to interpret the derivations. This involves taking the conclusions you have drawn from your data and interpreting them in the context of your research question. Step 10: Concluding Statements The final step is to make concluding statements. This involves summarizing your findings and drawing conclusions based on your research. You should also provide recommendations for future research and implications for practice. Step-11: Please include references in the form of citation and also link to the reference papers. Your response should be formatted in HTML (but avoid showing these tags ```html ```) but generate the content to look like a professional academic paper. Include proper section headers, abstracts, methodology sections, etc. Number all sections like an academic paper. """ # Extract text from each PDF pdf_texts = [] pdf_names = [] for pdf_file in pdf_files: if isinstance(pdf_file, str): # If it's already a path pdf_path = pdf_file else: # If it's a file object pdf_path = pdf_file.name pdf_name = os.path.basename(pdf_path) pdf_text = extract_text_from_pdf(pdf_path) pdf_texts.append(pdf_text) pdf_names.append(pdf_name) # Prepare the user prompt with the review question and instructions table_instruction = "" if include_tables: table_instruction = " Please include important new generated tables in your review." user_prompt = f"Please generate a systematic review of the following {len(pdf_files)} papers: {', '.join(pdf_names)}.{table_instruction}\n\nReview Question: {review_question}" # Create the messages for the API call messages = [ {"role": "system", "content": system_prompt}, {"role": "user", "content": user_prompt + "\n\n" + "\n\n".join([f"Paper {i+1} - {pdf_names[i]}:\n{pdf_texts[i]}" for i in range(len(pdf_texts))])} ] # Call the API with temperature=0.7 and top_p=1 response = openai.ChatCompletion.create( model="gpt-4.1", messages=messages, temperature=0.7, top_p=1, max_tokens=16384 ) # Get the AI response review_content = response["choices"][0]["message"]["content"] # Apply professional academic paper styling styled_html = f""" <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Systematic Review</title> <style> /* Academic Paper Styling */ body {{ font-family: 'Times New Roman', Times, serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f9f9f9; }} .paper-container {{ max-width: 800px; margin: 0 auto; padding: 40px; background-color: white; box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); }} header {{ text-align: center; margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 20px; }} h1 {{ font-size: 24px; margin: 0 0 15px; font-weight: bold; }} .author-info {{ font-size: 14px; margin-bottom: 15px; }} .abstract {{ font-style: italic; margin: 20px 0; padding: 15px; background-color: #f8f8f8; border-left: 3px solid #ccc; }} h2 {{ font-size: 18px; margin: 30px 0 15px; border-bottom: 1px solid #eee; padding-bottom: 5px; }} h3 {{ font-size: 16px; margin: 25px 0 10px; }} p {{ margin: 0 0 15px; text-align: justify; }} .section {{ margin-bottom: 30px; }} table {{ width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }} table, th, td {{ border: 1px solid #ddd; }} th, td {{ padding: 10px; text-align: left; }} th {{ background-color: #f2f2f2; }} tr:nth-child(even) {{ background-color: #f9f9f9; }} .citation {{ font-size: 14px; color: #555; }} .reference-list {{ margin-top: 40px; border-top: 1px solid #ddd; padding-top: 20px; }} .reference-list h2 {{ margin-top: 0; }} .reference-item {{ margin-bottom: 10px; padding-left: 25px; text-indent: -25px; }} ul, ol {{ margin: 15px 0; padding-left: 25px; }} li {{ margin-bottom: 5px; }} .figure {{ margin: 25px 0; text-align: center; }} .figure img {{ max-width: 100%; }} .figure-caption {{ font-size: 14px; color: #666; margin-top: 10px; }} .footnote {{ font-size: 12px; color: #777; }} @media print {{ body {{ background-color: white; }} .paper-container {{ box-shadow: none; padding: 0; }} }} </style> </head> <body> <div class="paper-container"> {review_content} </div> </body> </html> """ return styled_html except Exception as e: return f""" <div style="color: red; padding: 20px; border: 1px solid red; border-radius: 5px; background-color: #ffecec;"> <h3>Error Generating Systematic Review</h3> <p>{str(e)}</p> </div> """ # Function to save uploaded files def save_uploaded_files(files): if not files: return [] saved_paths = [] for file in files: if file is not None: # Create a temporary file with tempfile.NamedTemporaryFile(delete=False, suffix=".pdf") as tmp_file: tmp_file.write(file) saved_paths.append(tmp_file.name) return saved_paths # Add CSS styling for the Gradio interface custom_css = """ <style> /* Main UI */ .gradio-container { font-family: 'Arial', sans-serif; background-color: #f9f9f9; } /* Header */ h1 { font-size: 28px; color: #333; margin-bottom: 20px; text-align: center; padding-bottom: 10px; border-bottom: 2px solid #4a00e0; } /* Primary Button */ #generate_button { background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%); color: white; font-weight: bold; padding: 10px 20px; border-radius: 5px; transition: all 0.3s ease; } #generate_button:hover { background: linear-gradient(135deg, #5b10f1 0%, #9f3ef3 100%); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); } /* API Key Button */ #api_key_button { background: linear-gradient(135deg, #68d391 0%, #48bb78 100%); color: white; font-weight: bold; margin-top: 27px; padding: 10px 20px; border-radius: 5px; transition: all 0.3s ease; } #api_key_button:hover { background: linear-gradient(135deg, #38a169 0%, #68d391 100%); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); } /* Form Elements */ .input-container { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 20px; } /* Labels */ label { font-weight: 600; color: #555; margin-bottom: 8px; } /* Instructions Accordion */ .accordion { background-color: white; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 20px; } /* Output Container */ .output-container { background-color: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } /* File Upload Area */ .file-upload { border: 2px dashed #ccc; border-radius: 5px; padding: 20px; text-align: center; margin-bottom: 20px; } /* Responsive adjustments */ @media screen and (max-width: 768px) { .gradio-container { padding: 10px; } } </style> """ # Gradio UI Layout with improved styling with gr.Blocks(css=custom_css) as demo: gr.Markdown("# Systematic Review Generator for Research Papers") with gr.Accordion("How to Use This App", open=False): gr.Markdown(""" ### Getting Started: 1. Enter your OpenAI API key in the field below and click "Set API Key" 2. Upload multiple PDF research papers (2 or more recommended) 3. Enter your review question or topic 4. Check the "Include Tables" option if you want the review to include comparison tables 5. Click "Generate Systematic Review" to start the process ### Tips for Best Results: - Upload papers that are related to the same research topic or field - Be specific in your review question to get more focused results - The generated review will follow a systematic structure including research field identification, data extraction, analysis, and conclusions - The more papers you upload, the more comprehensive the review will be - The review will be formatted as a professional academic paper with proper sections and citations """) # API Key Input in a styled container with gr.Row(elem_classes="input-container"): with gr.Column(scale=3): api_key_input = gr.Textbox(label="Enter OpenAI API Key", type="password", placeholder="sk-...") with gr.Column(scale=1): api_key_button = gr.Button("Set API Key", elem_id="api_key_button") api_key_output = gr.Textbox(label="API Key Status", interactive=False) # PDF Upload and Review Settings with gr.Row(elem_classes="input-container"): with gr.Column(): gr.Markdown("### Upload Research Papers") pdf_files = gr.File(label="Upload PDF Research Papers", file_count="multiple", type="binary", elem_classes="file-upload") review_question = gr.Textbox( label="Review Question or Topic", value="Please generate a systematic review of the following papers.", placeholder="e.g., What are the effects of mindfulness meditation on stress reduction?" ) include_tables = gr.Checkbox(label="Include Comparison Tables", value=True) generate_button = gr.Button("Generate Systematic Review", elem_id="generate_button", size="large") # Output with improved styling with gr.Row(elem_classes="output-container"): review_output = gr.HTML(label="Systematic Review") # Button actions api_key_button.click(set_api_key, inputs=[api_key_input], outputs=[api_key_output]) # Generate systematic review def process_files_and_generate_review(files, question, include_tables): if not files: return """ <div style="padding: 20px; border: 1px solid #e0e0e0; border-radius: 5px; background-color: #f9f9f9;"> <h3 style="color: #666;">Please upload at least one PDF file.</h3> <p>To generate a systematic review, upload one or more research papers in PDF format.</p> </div> """ # Save uploaded files saved_paths = save_uploaded_files(files) # Show loading message yield """ <div style="padding: 20px; text-align: center;"> <h3>Generating Systematic Review...</h3> <p>This may take a few minutes depending on the number and size of papers.</p> <div style="width: 100%; height: 4px; background-color: #f0f0f0; margin: 20px 0; border-radius: 2px; overflow: hidden;"> <div style="width: 30%; height: 100%; background: linear-gradient(90deg, #4a00e0, #8e2de2); animation: progress 2s infinite linear;"></div> </div> <style> @keyframes progress { 0% { margin-left: -30%; } 100% { margin-left: 100%; } } </style> </div> """ # Generate review review = generate_systematic_review(saved_paths, question, include_tables) # Clean up temporary files for path in saved_paths: try: os.remove(path) except: pass yield review generate_button.click( process_files_and_generate_review, inputs=[pdf_files, review_question, include_tables], outputs=[review_output] ) # Launch the app if __name__ == "__main__": demo.launch(share=True) |