File size: 1,531 Bytes
a2780b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import openai
import os


# Define the Clauses class
class Clauses:
    def __init__(self):
        """
        Initialize the Extractor class.
        """

        # Set OpenAI API key
        # os.environ["OPENAI_API_KEY"] = ""

    def get_extracted_clauses(extracted_summary):
        """
        Gets extracted clauses using GPT-3 based on the provided PDF.

        Args:
            max_tokens (int, optional): Maximum number of tokens for GPT-3 response.

        Returns:
            str: Extracted clauses from GPT-3 response.
        """
        try:
            # Prepare a prompt for GPT-3 that includes the extracted PDF text and instructions
            prompt = f"""
            Extract clauses and sub-clauses from the provided contract PDF:

            {extracted_summary}

            Instructions: Organize the extracted clauses and sub clauses in a readable format.
            """
            # Use GPT-3 to process the prompt and generate clauses
            response = openai.Completion.create(
                engine="text-davinci-003",
                prompt=prompt,
                max_tokens=1000
            )

            # Extract the generated text from the GPT-3 response
            result = response['choices'][0]['text'].strip()
            return result

        except Exception as e:
            # If an error occurs during GPT-3 processing, log the error and raise an exception
            print(f"Error occurred while processing PDF with GPT-3. Error message: {str(e)}")
            raise