diff options
| author | Alexander_Kabui | 2025-01-09 10:28:26 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2025-01-09 10:35:45 +0300 |
| commit | 4e63aa2246c2f3ca6c09c284f7f78b896fe0e33b (patch) | |
| tree | 24a65454878c268a231a355f7e57839ccf2846a6 | |
| parent | 8bfe9616012deab8f910e89b233ea819ec22c1c3 (diff) | |
| download | genenetwork3-4e63aa2246c2f3ca6c09c284f7f78b896fe0e33b.tar.gz | |
feat: Add and register streaming blueprint.
| -rw-r--r-- | gn3/api/streaming.py | 6 | ||||
| -rw-r--r-- | gn3/app.py | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gn3/api/streaming.py b/gn3/api/streaming.py index 6569ceb..213d97f 100644 --- a/gn3/api/streaming.py +++ b/gn3/api/streaming.py @@ -5,11 +5,11 @@ from flask import jsonify from flask import Blueprint from flask import request -streaming = Blueprint("streaming", __name__) +streaming = Blueprint("stream", __name__) -@streaming.route("/stream/<identifier>", methods=["GET"]) -def stream(identifier="output"): +@streaming.route("/<identifier>", methods=["GET"]) +def stream(identifier): """ This endpoints streams stdout from a file expects the indetifier to be the file """ output_file = os.path.join(current_app.config.get("TMPDIR"), diff --git a/gn3/app.py b/gn3/app.py index 0bec32a..3841396 100644 --- a/gn3/app.py +++ b/gn3/app.py @@ -28,6 +28,7 @@ from gn3.api.metadata import metadata from gn3.api.sampledata import sampledata from gn3.api.llm import gnqa from gn3.api.rqtl2 import rqtl2 +from gn3.api.streaming import streaming from gn3.case_attributes import caseattr @@ -109,6 +110,7 @@ def create_app(config: Union[Dict, str, None] = None) -> Flask: app.register_blueprint(caseattr, url_prefix="/api/case-attribute") app.register_blueprint(gnqa, url_prefix="/api/llm") app.register_blueprint(rqtl2, url_prefix="/api/rqtl2") + app.register_blueprint(streaming, url_prefix="/api/stream") register_error_handlers(app) return app |
