Skip to content

Commit

Permalink
[Fix] Enabled AHDA routes (#1129)
Browse files Browse the repository at this point in the history
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **New Features**
- Integrated a new router for real-time transcription capabilities into
the application, enhancing routing functionality.
  
- **Bug Fixes**
- Maintained existing structure by leaving deprecated plugins and
external integrations unchanged.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
beastoin authored Oct 22, 2024
2 parents 0f08334 + c1d58d0 commit 449b0d0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/example/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from basic import memory_created as basic_memory_created_router
from oauth import memory_created as oauth_memory_created_router
from zapier import memory_created as zapier_memory_created_router
from ahda import client as ahda_realtime_transcription_router

# from advanced import openglass as advanced_openglass_router

Expand Down Expand Up @@ -49,6 +50,7 @@ def api():
app.include_router(basic_memory_created_router.router)
app.include_router(oauth_memory_created_router.router)
app.include_router(zapier_memory_created_router.router)
app.include_router(ahda_realtime_transcription_router.router)

# app.include_router(basic_realtime_router.router)
# app.include_router(advanced_realtime_router.router)
Expand Down

0 comments on commit 449b0d0

Please sign in to comment.