PSNbst commited on
Commit
a20a39a
·
verified ·
1 Parent(s): 551c5f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -64,9 +64,10 @@ def generate_natural_language_description(tags, api_key=None):
64
  "content": f"Here are the tags: {tags}\nPlease generate a vivid, imaginative scene description.",
65
  },
66
  ],
67
- model="gpt-4",
68
  )
69
- return response["choices"][0]["message"]["content"].strip()
 
70
  except Exception as e:
71
  return f"GPT generation failed. Error: {e}"
72
 
 
64
  "content": f"Here are the tags: {tags}\nPlease generate a vivid, imaginative scene description.",
65
  },
66
  ],
67
+ model="gpt-4o",
68
  )
69
+ # 通过属性访问 response 内容
70
+ return response.choices[0].message["content"].strip()
71
  except Exception as e:
72
  return f"GPT generation failed. Error: {e}"
73