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
Copy file name to clipboardExpand all lines: README.rst
+89-6Lines changed: 89 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,101 @@ Vapi Python SDK
14
14
:alt:Documentation Status
15
15
16
16
17
+
This package lets you start Vapi calls directly from Python.
17
18
19
+
Installation
20
+
------------
18
21
19
-
This package lets you start Vapi calls directly from Python.
22
+
You can install the package via pip:
23
+
24
+
.. code-block:: bash
25
+
26
+
pip install vapi_python
27
+
28
+
Usage
29
+
-----
30
+
31
+
First, import the Vapi class from the package:
32
+
33
+
.. code-block:: python
34
+
35
+
from vapi_python import Vapi
36
+
37
+
Then, create a new instance of the Vapi class, passing your API Key as a parameter to the constructor:
38
+
39
+
.. code-block:: python
40
+
41
+
vapi = Vapi(api_key='your-api-key')
42
+
43
+
You can start a new call by calling the `start` method and passing an `assistant` object or `assistantId`. You can find the available options here: `docs.vapi.ai <https://docs.vapi.ai/api-reference/assistants/create-assistant>`
0 commit comments