You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try with multiple phases, I am getting socket hang up error on Postman. Actually I have created app,py file on top of run.py and using Flask like
On each phase I am giving responsibility to create multiple files based on my requirement.
app = Flask(__name__)
@app.route('/generate_project', methods=['POST'])
def run_endpoint():
try:
# Only pass the required parameters and use defaults for the rest
result = run_chat_chain(app_name=app_name, other_detail: details
)
return jsonify(result), 200
# return result, 200
except Exception as e:
return jsonify({"status": "error", "message": str(e)}), 500
The text was updated successfully, but these errors were encountered:
paritosh-apexon
changed the title
Want to get all generated files in JSON format.
Want to get all generated files in JSON format. Also getting socket hang up issue
Sep 11, 2024
paritosh-apexon
changed the title
Want to get all generated files in JSON format. Also getting socket hang up issue
Getting socket hang up issue
Sep 11, 2024
When I try with multiple phases, I am getting socket hang up error on Postman. Actually I have created app,py file on top of run.py and using Flask like
On each phase I am giving responsibility to create multiple files based on my requirement.
The text was updated successfully, but these errors were encountered: