Guiyom commited on
Commit
e7bcaf5
·
verified ·
1 Parent(s): 30d608e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -791,7 +791,7 @@ User Adjustment Request:
791
 
792
  Only output valid JSON."""
793
  )
794
- response_identify = llm_call(prompt=prompt_identify, model="o3-mini", temperature=0, max_tokens_param=5000)
795
  logging.info("fine_tune_report: Raw unique string identification response: %s", response_identify)
796
 
797
  try:
@@ -866,7 +866,7 @@ Output a JSON object with exactly two keys:
866
  Only output valid JSON with no comments or code fences."""
867
  )
868
 
869
- response_adjust = llm_call(prompt=prompt_adjust, model="o3-mini", temperature=0, max_tokens_param=5000)
870
  logging.info("fine_tune_report: Raw container adjustment response: %s", response_adjust)
871
  try:
872
  response_adjust = clean_llm_response(response_adjust.strip().strip("```"))
 
791
 
792
  Only output valid JSON."""
793
  )
794
+ response_identify = llm_call(prompt=prompt_identify, model="o3-mini", temperature=0, max_tokens_param=10000)
795
  logging.info("fine_tune_report: Raw unique string identification response: %s", response_identify)
796
 
797
  try:
 
866
  Only output valid JSON with no comments or code fences."""
867
  )
868
 
869
+ response_adjust = llm_call(prompt=prompt_adjust, model="o3-mini", temperature=0, max_tokens_param=10000)
870
  logging.info("fine_tune_report: Raw container adjustment response: %s", response_adjust)
871
  try:
872
  response_adjust = clean_llm_response(response_adjust.strip().strip("```"))