Skip to content

Commit

Permalink
fix: ignore broadcast and bot APIs for SDK generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Sep 12, 2024
1 parent 0c715a4 commit c0ac5d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions routers/bots_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ class CreateStreamResponse(BaseModel):
operation_id=VideoBotsPage.slug_versions[0] + "__stream_create",
tags=["Copilot Integrations"],
name="Copilot Integrations Create Stream",
openapi_extra={"x-fern-ignore": True},
)
def stream_create(request: CreateStreamRequest, response: Response):
request_id = str(uuid.uuid4())
Expand Down Expand Up @@ -173,6 +174,7 @@ class StreamError(BaseModel):
operation_id=VideoBotsPage.slug_versions[0] + "__stream",
tags=["Copilot Integrations"],
name="Copilot integrations Stream Response",
openapi_extra={"x-fern-ignore": True},
)
def stream_response(request_id: str):
r = get_redis_cache().getdel(f"gooey/stream-init/v1/{request_id}")
Expand Down
1 change: 1 addition & 0 deletions routers/broadcast_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class BotBroadcastRequestModel(BaseModel):
operation_id=VideoBotsPage.slug_versions[0] + "__broadcast",
tags=["Misc"],
name=f"Send Broadcast Message",
openapi_extra={"x-fern-ignore": True},
)
@app.post(
f"/v2/{VideoBotsPage.slug_versions[0]}/broadcast/send",
Expand Down

0 comments on commit c0ac5d9

Please sign in to comment.