Bump to 2603.15.ext.rc11 and fix route registration problem.#146
Conversation
Greptile SummaryThis PR bumps the deployment version to Key changes and issues found:
Confidence Score: 3/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[AIQAPIWorker.build_app - sync] --> B[Create APIRouter]
B --> C[add_collection_routes - def, sync]
B --> D[add_document_routes - def, sync]
C --> E[Register POST /v1/collections]
C --> F[Register GET /v1/collections]
C --> G[Register GET /v1/collections/name]
C --> H[Register DELETE /v1/collections/name]
C --> I[Register GET /v1/knowledge/health]
D --> J[Register POST /v1/collections/collection_name/documents]
D --> K[Register GET /v1/collections/collection_name/documents]
D --> L[Register DELETE /v1/collections/collection_name/documents]
D --> M[Register GET /v1/documents/job_id/status]
E & F & G & H & I & J & K & L & M --> N[app.include_router]
N --> O[AIQAPIWorker.add_routes - async]
O --> P[register_job_routes - await]
P --> Q[Async Job & SSE routes registered]
style A fill:#4CAF50,color:#fff
style O fill:#2196F3,color:#fff
style N fill:#9C27B0,color:#fff
|

Update versions and fix async issue.