VAPI Python Server SDK docs?
# support
m
To use the server SDK (https://github.com/VapiAI/server-sdk-python) I have to cross reference between the API docs and the actuall sdk code, Is there no docs for the sdk itself?
v
You can find Python Server SDK usage examples and setup instructions in the Vapi Quickstart Web documentation. Here’s a basic example to get started:
Copy code
python
from vapi import Vapi
client = Vapi(token="YOUR_TOKEN")
# Example: create a call, list assistants, etc.
For more details and additional code samples, check the [Vapi Quickstart Web guide](https://docs.vapi.ai/quickstart/web). There is currently no separate, comprehensive SDK documentation beyond these examples and the GitHub repo. Source: - [Vapi Quickstart Web](https://docs.vapi.ai/quickstart/web)
c
There are some docs for the SDKs, but they are quite limited in information. For python specifically we will check with the team to gather those if available
5 Views