BACK GROUND

0
AI Content Humanizer

AI Content Humanizer

Humanized Content:

from flask import Flask, request, jsonify import openai app = Flask(__name__) # Configure OpenAI API Key openai.api_key = "your_openai_api_key" @app.route('/humanize', methods=['POST']) def humanize_text(): data = request.json ai_text = data.get("text", "") if not ai_text.strip(): return jsonify({"error": "No text provided."}), 400 try: response = openai.ChatCompletion.create( model="gpt-4", messages=[ {"role": "system", "content": "You are a content editor who makes text sound more natural and engaging."}, {"role": "user", "content": ai_text} ] ) humanized_text = response["choices"][0]["message"]["content"].strip() return jsonify({"humanizedText": humanized_text}) except Exception as e: return jsonify({"error": str(e)}), 500 if __name__ == '__main__': app.run(host='0.0.0.0', port=5000, debug=True)

Post a Comment

0Comments
Post a Comment (0)