Spaces:
Running
Running
File size: 1,477 Bytes
a2780b1 f638900 a2780b1 f638900 a2780b1 f638900 a2780b1 f638900 a2780b1 f638900 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 |
import openai
import os
from openai import OpenAI
# Define the Clauses class
class Clauses:
def __init__(self):
self.client = OpenAI()
def get_extracted_clauses(self,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:
conversation = [
{"role": "system", "content": "You are a helpful Cluases and SubCluases Extracter From Given Content."},
{"role": "user", "content": f"""Extract clauses and sub-clauses from the provided contract PDF
{extracted_summary}"""}
]
# Call OpenAI GPT-3.5-turbo
chat_completion = self.client.chat.completions.create(
model = "gpt-3.5-turbo",
messages = conversation,
max_tokens=500,
temperature=0
)
response = chat_completion.choices[0].message.content
return response
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
|