Hello, I’m trying to create a Flask application that interacts with the OpenAI API for chat completions. However, I’m encountering an error message: “An error occurred while fetching the response.” Below is my code
import os
from openai import OpenAI, OpenAIError
from dotenv import load_dotenv
from flask import Flask, request, jsonify, render_template
load_dotenv()
api_key = os.getenv('OPENAI_API_KEY')
client = OpenAI(api_key=api_key)
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
@app.route('/chat', methods=['POST'])
def chat():
try:
data = request.get_json()
user_input = data.get('message')
if not user_input:
return jsonify({'error': 'No message provided'}), 400
response = client.chat.completions.create(
model="gpt-4",
messages=[{
"role": "user",
"content": user_input
}],
max_tokens=150
)
return jsonify({'response': response.choices[0].message['content']})
except OpenAIError as e:
return jsonify({'error': str(e)}), 500
except Exception as e:
return jsonify({'error': 'An unexpected error occurred'}), 500
if __name__ == '__main__':
app.run(debug=True)
Error Message:
An error occurred while fetching the response.
Steps Taken:
- Verified API key is correctly loaded from the .env file.
- Ensured Flask and other dependencies are installed and up to date.
- Checked for any indentation or syntax issues.
Can anyone help me identify what might be causing this issue? Thank you!