This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import os | |
| import sys | |
| import json | |
| from PyPDF2 import PdfReader | |
| from openai import OpenAI | |
| def generate_faq_from_pdf(file_name, model_version="gpt-4o"): | |
| # Initialize the OpenAI Client | |
| client = OpenAI(api_key="OPEN_AI_API_KEY") |
OlderNewer