1 2 3 4 5 6 7 8 9 10 11
"""Endpoints for running the gemma cmd""" from flask import Blueprint from flask import jsonify gemma = Blueprint("gemma", __name__) @gemma.route("/") def index() -> str: """Test endpoint""" return jsonify(result="hello world")