Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,12 +4,12 @@ from flask import Flask, request, Response
|
|
| 4 |
|
| 5 |
app = Flask(__name__)
|
| 6 |
|
| 7 |
-
GEMINI_BASE_URL = "https://
|
| 8 |
|
| 9 |
|
| 10 |
@app.route("/", methods=["GET"])
|
| 11 |
def home():
|
| 12 |
-
return {"status": "ok", "message": "
|
| 13 |
|
| 14 |
|
| 15 |
@app.route("/<path:endpoint>", methods=["GET", "POST", "PUT", "PATCH", "DELETE"])
|
|
|
|
| 4 |
|
| 5 |
app = Flask(__name__)
|
| 6 |
|
| 7 |
+
GEMINI_BASE_URL = "https://openrouter.ai/api"
|
| 8 |
|
| 9 |
|
| 10 |
@app.route("/", methods=["GET"])
|
| 11 |
def home():
|
| 12 |
+
return {"status": "ok", "message": "OpenRouter proxy is working :3"}
|
| 13 |
|
| 14 |
|
| 15 |
@app.route("/<path:endpoint>", methods=["GET", "POST", "PUT", "PATCH", "DELETE"])
|