Skip to content

Commit c2e8b99

Browse files
committed
fix: add manifest alias endpoint
Expose /manifest.json as an alias to the Omi tools manifest to support clients that expect that path.
1 parent 36116ad commit c2e8b99

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@ async def get_omi_tools_manifest():
239239
}
240240

241241

242+
@app.get("/manifest.json")
243+
async def get_manifest_alias():
244+
"""Alias for Omi tools manifest."""
245+
return await get_omi_tools_manifest()
246+
247+
242248
# ============================================
243249
# Chat Tool Endpoints
244250
# ============================================

0 commit comments

Comments
 (0)