Farhan1572 commited on
Commit
e3ed55c
·
verified ·
1 Parent(s): 4bb81a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,7 +12,7 @@ api_key = os.getenv("OPENAI_API_KEY")
12
  client = OpenAI(api_key = api_key)
13
 
14
  # finetuned model instance
15
- finetuned_model = "ft:gpt-3.5-turbo-0125:personal::9th4MZsu"
16
 
17
 
18
 
@@ -132,7 +132,7 @@ def humanize_text(AI_text):
132
 
133
  def main_function(AI_text):
134
  humanized_text = humanize_text(AI_text)
135
- humanized_text= transform_text(humanized_text)
136
  return humanized_text
137
 
138
 
 
12
  client = OpenAI(api_key = api_key)
13
 
14
  # finetuned model instance
15
+ finetuned_model = "ft:gpt-3.5-turbo-0125:noaigpt::9yxjlcBC"
16
 
17
 
18
 
 
132
 
133
  def main_function(AI_text):
134
  humanized_text = humanize_text(AI_text)
135
+ # humanized_text= transform_text(humanized_text)
136
  return humanized_text
137
 
138