Muteeba commited on
Commit
344ea31
Β·
1 Parent(s): 10e78e3

fix syntax error in index route

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -137,7 +137,7 @@ def _run_prediction(fasta_text, taxon_id_override):
137
  # ── Routes ────────────────────────────────────────────────────
138
  @app.route("/", methods=["GET"])
139
  def index():
140
- return jsonify({"n"FunGO API","version":"2.0.0",
141
  "status":"running","models_ready":_models_ready,
142
  "endpoints":["/health","/model/info","/taxonomy/search",
143
  "/taxonomy/verify","/predict","/predict/csv","/predict/debug"]})
 
137
  # ── Routes ────────────────────────────────────────────────────
138
  @app.route("/", methods=["GET"])
139
  def index():
140
+ return jsonify({"name":"FunGO API","version":"2.0.0",
141
  "status":"running","models_ready":_models_ready,
142
  "endpoints":["/health","/model/info","/taxonomy/search",
143
  "/taxonomy/verify","/predict","/predict/csv","/predict/debug"]})