Skip to content

Commit

Permalink
Merge pull request #327 from airtai/fix-minor-issues
Browse files Browse the repository at this point in the history
Include websockets in dependencies
  • Loading branch information
davorrunje authored Oct 7, 2024
2 parents 47814b7 + e49dc10 commit 16ead22
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ search:
- [ConsoleUI](api/fastagency/ui/console/base/ConsoleUI.md)
- fastapi
- [FastAPIProvider](api/fastagency/ui/fastapi/FastAPIProvider.md)
- [FastAPIWorkflows](api/fastagency/ui/fastapi/FastAPIWorkflows.md)
- base
- [FastAPIProvider](api/fastagency/ui/fastapi/base/FastAPIProvider.md)
- [FastAPIWorkflows](api/fastagency/ui/fastapi/base/FastAPIWorkflows.md)
Expand Down
11 changes: 11 additions & 0 deletions docs/docs/en/api/fastagency/ui/fastapi/FastAPIWorkflows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
# 0.5 - API
# 2 - Release
# 3 - Contributing
# 5 - Template Page
# 10 - Default
search:
boost: 0.5
---

::: fastagency.ui.fastapi.FastAPIWorkflows
4 changes: 2 additions & 2 deletions fastagency/ui/fastapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .base import FastAPIProvider
from .base import FastAPIProvider, FastAPIWorkflows

__all__ = ["FastAPIProvider"]
__all__ = ["FastAPIProvider", "FastAPIWorkflows"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fastapi = [
"faststream[nats]>=0.5.10,<0.6",
"asyncer==0.0.8",
"fastapi>=0.112,<1",
"websockets>=13.1",
"websockets>=13,<14",
]

submodules = [
Expand Down

0 comments on commit 16ead22

Please sign in to comment.