robertselvam commited on
Commit
9b6522a
·
verified ·
1 Parent(s): b5decb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -4,10 +4,13 @@ import fitz
4
  from openai import AzureOpenAI
5
  import re
6
 
7
- client = AzureOpenAI(api_key=os.getenv("AZURE_OPENAI_KEY"),
8
- api_version="2023-07-01-preview",
9
- azure_endpoint = os.getenv("AZURE_OPENAI_ENDPOINT")
10
- )
 
 
 
11
  class ResumeAnalyser:
12
  def __init__(self):
13
  pass
 
4
  from openai import AzureOpenAI
5
  import re
6
 
7
+ # client = AzureOpenAI(api_key=os.getenv("AZURE_OPENAI_KEY"),
8
+ # api_version="2023-07-01-preview",
9
+ # azure_endpoint = os.getenv("AZURE_OPENAI_ENDPOINT")
10
+ # )
11
+
12
+ client = AzureOpenAI()
13
+
14
  class ResumeAnalyser:
15
  def __init__(self):
16
  pass