You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An agent is a piece of software that allows your backend server to participate in a Fishjam room, similar to how the Fishjam client SDKs allow your client-side application to participate in a Fishjam room.
4
-
They can be used to implement features such as real-time audio transcription, audio recording, real-time content moderation and more.
4
+
They can be used to implement features such as real-time audio transcription, real-time content moderation, conversations with AI agents and more.
5
5
6
6
You can simply think of an agent as a peer running within your backend application.
Copy file name to clipboardExpand all lines: docs/how-to/backend/fastapi-example.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ If you wish to see more general info, visit [**Set up your server**](../../how-t
11
11
## Minimal setup
12
12
13
13
The same way as in the [**FastAPI docs**](https://fastapi.tiangolo.com/tutorial/first-steps/), the code below can be copied and run immediately.
14
-
Just make sure you set `FISHJAM_URL` and `FISHJAM_MANAGEMENT_TOKEN` environment variables.
14
+
Just make sure you set `FISHJAM_ID` and `FISHJAM_MANAGEMENT_TOKEN` environment variables.
15
15
The `Depends` function allows the `FishjamClient` to be provided to the route function as a dependency, which avoids code duplication and allows easy mocking.
16
16
17
17
```python
@@ -24,9 +24,9 @@ from fishjam import FishjamClient
0 commit comments