vapi-server-sdk 0.0.0a7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (571) hide show
  1. vapi/__init__.py +1081 -0
  2. vapi/analytics/__init__.py +2 -0
  3. vapi/analytics/client.py +159 -0
  4. vapi/assistants/__init__.py +21 -0
  5. vapi/assistants/client.py +1593 -0
  6. vapi/assistants/types/__init__.py +19 -0
  7. vapi/assistants/types/update_assistant_dto_background_sound.py +5 -0
  8. vapi/assistants/types/update_assistant_dto_client_messages_item.py +23 -0
  9. vapi/assistants/types/update_assistant_dto_first_message_mode.py +10 -0
  10. vapi/assistants/types/update_assistant_dto_model.py +26 -0
  11. vapi/assistants/types/update_assistant_dto_server_messages_item.py +24 -0
  12. vapi/assistants/types/update_assistant_dto_transcriber.py +8 -0
  13. vapi/assistants/types/update_assistant_dto_voice.py +24 -0
  14. vapi/blocks/__init__.py +25 -0
  15. vapi/blocks/client.py +804 -0
  16. vapi/blocks/types/__init__.py +23 -0
  17. vapi/blocks/types/blocks_create_request.py +8 -0
  18. vapi/blocks/types/blocks_create_response.py +8 -0
  19. vapi/blocks/types/blocks_delete_response.py +8 -0
  20. vapi/blocks/types/blocks_get_response.py +8 -0
  21. vapi/blocks/types/blocks_list_response_item.py +8 -0
  22. vapi/blocks/types/blocks_update_response.py +8 -0
  23. vapi/blocks/types/update_block_dto_messages_item.py +7 -0
  24. vapi/blocks/types/update_block_dto_steps_item.py +7 -0
  25. vapi/blocks/types/update_block_dto_tool.py +20 -0
  26. vapi/calls/__init__.py +2 -0
  27. vapi/calls/client.py +776 -0
  28. vapi/client.py +172 -0
  29. vapi/core/__init__.py +50 -0
  30. vapi/core/api_error.py +15 -0
  31. vapi/core/client_wrapper.py +76 -0
  32. vapi/core/datetime_utils.py +28 -0
  33. vapi/core/file.py +62 -0
  34. vapi/core/http_client.py +487 -0
  35. vapi/core/jsonable_encoder.py +101 -0
  36. vapi/core/pagination.py +88 -0
  37. vapi/core/pydantic_utilities.py +296 -0
  38. vapi/core/query_encoder.py +58 -0
  39. vapi/core/remove_none_from_dict.py +11 -0
  40. vapi/core/request_options.py +32 -0
  41. vapi/core/serialization.py +272 -0
  42. vapi/environment.py +7 -0
  43. vapi/errors/__init__.py +5 -0
  44. vapi/errors/bad_request_error.py +9 -0
  45. vapi/files/__init__.py +2 -0
  46. vapi/files/client.py +544 -0
  47. vapi/logs/__init__.py +5 -0
  48. vapi/logs/client.py +367 -0
  49. vapi/logs/types/__init__.py +6 -0
  50. vapi/logs/types/logs_get_request_sort_order.py +5 -0
  51. vapi/logs/types/logs_get_request_type.py +5 -0
  52. vapi/phone_numbers/__init__.py +21 -0
  53. vapi/phone_numbers/client.py +735 -0
  54. vapi/phone_numbers/types/__init__.py +19 -0
  55. vapi/phone_numbers/types/phone_numbers_create_request.py +11 -0
  56. vapi/phone_numbers/types/phone_numbers_create_response.py +9 -0
  57. vapi/phone_numbers/types/phone_numbers_delete_response.py +9 -0
  58. vapi/phone_numbers/types/phone_numbers_get_response.py +9 -0
  59. vapi/phone_numbers/types/phone_numbers_list_response_item.py +9 -0
  60. vapi/phone_numbers/types/phone_numbers_update_response.py +9 -0
  61. vapi/phone_numbers/types/update_phone_number_dto_fallback_destination.py +7 -0
  62. vapi/py.typed +0 -0
  63. vapi/squads/__init__.py +2 -0
  64. vapi/squads/client.py +723 -0
  65. vapi/tools/__init__.py +21 -0
  66. vapi/tools/client.py +717 -0
  67. vapi/tools/types/__init__.py +19 -0
  68. vapi/tools/types/tools_create_request.py +20 -0
  69. vapi/tools/types/tools_create_response.py +12 -0
  70. vapi/tools/types/tools_delete_response.py +12 -0
  71. vapi/tools/types/tools_get_response.py +12 -0
  72. vapi/tools/types/tools_list_response_item.py +14 -0
  73. vapi/tools/types/tools_update_response.py +12 -0
  74. vapi/tools/types/update_tool_dto_messages_item.py +9 -0
  75. vapi/types/__init__.py +993 -0
  76. vapi/types/add_voice_to_provider_dto.py +34 -0
  77. vapi/types/analysis.py +38 -0
  78. vapi/types/analysis_cost.py +52 -0
  79. vapi/types/analysis_cost_analysis_type.py +5 -0
  80. vapi/types/analysis_cost_breakdown.py +80 -0
  81. vapi/types/analysis_plan.py +43 -0
  82. vapi/types/analytics_operation.py +34 -0
  83. vapi/types/analytics_operation_column.py +19 -0
  84. vapi/types/analytics_operation_operation.py +5 -0
  85. vapi/types/analytics_query.py +51 -0
  86. vapi/types/analytics_query_group_by_item.py +7 -0
  87. vapi/types/analytics_query_result.py +42 -0
  88. vapi/types/anthropic_credential.py +46 -0
  89. vapi/types/anthropic_model.py +91 -0
  90. vapi/types/anthropic_model_model.py +10 -0
  91. vapi/types/anthropic_model_tools_item.py +20 -0
  92. vapi/types/anyscale_credential.py +46 -0
  93. vapi/types/anyscale_model.py +90 -0
  94. vapi/types/anyscale_model_tools_item.py +20 -0
  95. vapi/types/artifact.py +66 -0
  96. vapi/types/artifact_messages_item.py +10 -0
  97. vapi/types/artifact_plan.py +70 -0
  98. vapi/types/assignment_mutation.py +85 -0
  99. vapi/types/assignment_mutation_conditions_item.py +7 -0
  100. vapi/types/assistant.py +330 -0
  101. vapi/types/assistant_background_sound.py +5 -0
  102. vapi/types/assistant_client_messages_item.py +23 -0
  103. vapi/types/assistant_first_message_mode.py +10 -0
  104. vapi/types/assistant_model.py +26 -0
  105. vapi/types/assistant_overrides.py +316 -0
  106. vapi/types/assistant_overrides_background_sound.py +5 -0
  107. vapi/types/assistant_overrides_client_messages_item.py +23 -0
  108. vapi/types/assistant_overrides_first_message_mode.py +10 -0
  109. vapi/types/assistant_overrides_model.py +26 -0
  110. vapi/types/assistant_overrides_server_messages_item.py +24 -0
  111. vapi/types/assistant_overrides_transcriber.py +8 -0
  112. vapi/types/assistant_overrides_voice.py +24 -0
  113. vapi/types/assistant_server_messages_item.py +24 -0
  114. vapi/types/assistant_transcriber.py +8 -0
  115. vapi/types/assistant_voice.py +24 -0
  116. vapi/types/azure_open_ai_credential.py +52 -0
  117. vapi/types/azure_open_ai_credential_models_item.py +17 -0
  118. vapi/types/azure_open_ai_credential_region.py +24 -0
  119. vapi/types/azure_voice.py +52 -0
  120. vapi/types/azure_voice_id.py +6 -0
  121. vapi/types/azure_voice_id_enum.py +5 -0
  122. vapi/types/block_complete_message.py +33 -0
  123. vapi/types/block_complete_message_conditions_item.py +7 -0
  124. vapi/types/block_start_message.py +33 -0
  125. vapi/types/block_start_message_conditions_item.py +7 -0
  126. vapi/types/bot_message.py +54 -0
  127. vapi/types/bucket_plan.py +72 -0
  128. vapi/types/buy_phone_number_dto.py +81 -0
  129. vapi/types/buy_phone_number_dto_fallback_destination.py +7 -0
  130. vapi/types/byo_phone_number.py +126 -0
  131. vapi/types/byo_phone_number_fallback_destination.py +7 -0
  132. vapi/types/byo_sip_trunk_credential.py +85 -0
  133. vapi/types/call.py +241 -0
  134. vapi/types/call_costs_item.py +11 -0
  135. vapi/types/call_destination.py +7 -0
  136. vapi/types/call_ended_reason.py +177 -0
  137. vapi/types/call_messages_item.py +10 -0
  138. vapi/types/call_paginated_response.py +32 -0
  139. vapi/types/call_phone_call_provider.py +5 -0
  140. vapi/types/call_phone_call_transport.py +5 -0
  141. vapi/types/call_status.py +5 -0
  142. vapi/types/call_type.py +5 -0
  143. vapi/types/callback_step.py +116 -0
  144. vapi/types/callback_step_block.py +11 -0
  145. vapi/types/cartesia_credential.py +46 -0
  146. vapi/types/cartesia_voice.py +58 -0
  147. vapi/types/cartesia_voice_language.py +5 -0
  148. vapi/types/cartesia_voice_model.py +5 -0
  149. vapi/types/chunk_plan.py +70 -0
  150. vapi/types/client_inbound_message.py +23 -0
  151. vapi/types/client_inbound_message_add_message.py +28 -0
  152. vapi/types/client_inbound_message_control.py +32 -0
  153. vapi/types/client_inbound_message_control_control.py +7 -0
  154. vapi/types/client_inbound_message_message.py +10 -0
  155. vapi/types/client_inbound_message_say.py +36 -0
  156. vapi/types/client_message.py +23 -0
  157. vapi/types/client_message_conversation_update.py +38 -0
  158. vapi/types/client_message_conversation_update_messages_item.py +12 -0
  159. vapi/types/client_message_hang.py +27 -0
  160. vapi/types/client_message_language_changed.py +27 -0
  161. vapi/types/client_message_message.py +28 -0
  162. vapi/types/client_message_metadata.py +27 -0
  163. vapi/types/client_message_model_output.py +27 -0
  164. vapi/types/client_message_speech_update.py +34 -0
  165. vapi/types/client_message_speech_update_role.py +5 -0
  166. vapi/types/client_message_speech_update_status.py +5 -0
  167. vapi/types/client_message_tool_calls.py +40 -0
  168. vapi/types/client_message_tool_calls_result.py +31 -0
  169. vapi/types/client_message_tool_calls_tool_with_tool_call_list_item.py +10 -0
  170. vapi/types/client_message_transcript.py +43 -0
  171. vapi/types/client_message_transcript_role.py +5 -0
  172. vapi/types/client_message_transcript_transcript_type.py +5 -0
  173. vapi/types/client_message_user_interrupted.py +22 -0
  174. vapi/types/client_message_voice_input.py +27 -0
  175. vapi/types/clone_voice_dto.py +37 -0
  176. vapi/types/condition.py +33 -0
  177. vapi/types/condition_operator.py +5 -0
  178. vapi/types/conversation_block.py +109 -0
  179. vapi/types/conversation_block_messages_item.py +7 -0
  180. vapi/types/cost_breakdown.py +78 -0
  181. vapi/types/create_anthropic_credential_dto.py +25 -0
  182. vapi/types/create_anyscale_credential_dto.py +25 -0
  183. vapi/types/create_assistant_dto.py +309 -0
  184. vapi/types/create_assistant_dto_background_sound.py +5 -0
  185. vapi/types/create_assistant_dto_client_messages_item.py +23 -0
  186. vapi/types/create_assistant_dto_first_message_mode.py +10 -0
  187. vapi/types/create_assistant_dto_model.py +26 -0
  188. vapi/types/create_assistant_dto_server_messages_item.py +24 -0
  189. vapi/types/create_assistant_dto_transcriber.py +8 -0
  190. vapi/types/create_assistant_dto_voice.py +24 -0
  191. vapi/types/create_azure_open_ai_credential_dto.py +31 -0
  192. vapi/types/create_azure_open_ai_credential_dto_models_item.py +17 -0
  193. vapi/types/create_azure_open_ai_credential_dto_region.py +24 -0
  194. vapi/types/create_byo_phone_number_dto.py +105 -0
  195. vapi/types/create_byo_phone_number_dto_fallback_destination.py +7 -0
  196. vapi/types/create_byo_sip_trunk_credential_dto.py +64 -0
  197. vapi/types/create_cartesia_credential_dto.py +25 -0
  198. vapi/types/create_conversation_block_dto.py +88 -0
  199. vapi/types/create_conversation_block_dto_messages_item.py +7 -0
  200. vapi/types/create_custom_llm_credential_dto.py +25 -0
  201. vapi/types/create_customer_dto.py +59 -0
  202. vapi/types/create_deep_infra_credential_dto.py +25 -0
  203. vapi/types/create_deepgram_credential_dto.py +32 -0
  204. vapi/types/create_dtmf_tool_dto.py +61 -0
  205. vapi/types/create_dtmf_tool_dto_messages_item.py +11 -0
  206. vapi/types/create_eleven_labs_credential_dto.py +25 -0
  207. vapi/types/create_end_call_tool_dto.py +61 -0
  208. vapi/types/create_end_call_tool_dto_messages_item.py +11 -0
  209. vapi/types/create_function_tool_dto.py +61 -0
  210. vapi/types/create_function_tool_dto_messages_item.py +11 -0
  211. vapi/types/create_gcp_credential_dto.py +41 -0
  212. vapi/types/create_ghl_tool_dto.py +63 -0
  213. vapi/types/create_ghl_tool_dto_messages_item.py +11 -0
  214. vapi/types/create_gladia_credential_dto.py +25 -0
  215. vapi/types/create_go_high_level_credential_dto.py +25 -0
  216. vapi/types/create_groq_credential_dto.py +25 -0
  217. vapi/types/create_lmnt_credential_dto.py +25 -0
  218. vapi/types/create_make_credential_dto.py +35 -0
  219. vapi/types/create_make_tool_dto.py +63 -0
  220. vapi/types/create_make_tool_dto_messages_item.py +11 -0
  221. vapi/types/create_open_ai_credential_dto.py +25 -0
  222. vapi/types/create_open_router_credential_dto.py +25 -0
  223. vapi/types/create_org_dto.py +63 -0
  224. vapi/types/create_outbound_call_dto.py +104 -0
  225. vapi/types/create_output_tool_dto.py +61 -0
  226. vapi/types/create_output_tool_dto_messages_item.py +11 -0
  227. vapi/types/create_perplexity_ai_credential_dto.py +25 -0
  228. vapi/types/create_play_ht_credential_dto.py +27 -0
  229. vapi/types/create_rime_ai_credential_dto.py +25 -0
  230. vapi/types/create_runpod_credential_dto.py +25 -0
  231. vapi/types/create_s_3_credential_dto.py +51 -0
  232. vapi/types/create_squad_dto.py +52 -0
  233. vapi/types/create_together_ai_credential_dto.py +25 -0
  234. vapi/types/create_token_dto.py +34 -0
  235. vapi/types/create_token_dto_tag.py +5 -0
  236. vapi/types/create_tool_call_block_dto.py +75 -0
  237. vapi/types/create_tool_call_block_dto_messages_item.py +7 -0
  238. vapi/types/create_tool_call_block_dto_tool.py +20 -0
  239. vapi/types/create_tool_template_dto.py +38 -0
  240. vapi/types/create_tool_template_dto_details.py +20 -0
  241. vapi/types/create_tool_template_dto_provider.py +5 -0
  242. vapi/types/create_tool_template_dto_provider_details.py +10 -0
  243. vapi/types/create_tool_template_dto_visibility.py +5 -0
  244. vapi/types/create_transfer_call_tool_dto.py +67 -0
  245. vapi/types/create_transfer_call_tool_dto_destinations_item.py +11 -0
  246. vapi/types/create_transfer_call_tool_dto_messages_item.py +11 -0
  247. vapi/types/create_twilio_credential_dto.py +27 -0
  248. vapi/types/create_twilio_phone_number_dto.py +92 -0
  249. vapi/types/create_twilio_phone_number_dto_fallback_destination.py +7 -0
  250. vapi/types/create_vapi_phone_number_dto.py +84 -0
  251. vapi/types/create_vapi_phone_number_dto_fallback_destination.py +7 -0
  252. vapi/types/create_voicemail_tool_dto.py +65 -0
  253. vapi/types/create_voicemail_tool_dto_messages_item.py +11 -0
  254. vapi/types/create_vonage_credential_dto.py +27 -0
  255. vapi/types/create_vonage_phone_number_dto.py +87 -0
  256. vapi/types/create_vonage_phone_number_dto_fallback_destination.py +7 -0
  257. vapi/types/create_web_call_dto.py +63 -0
  258. vapi/types/create_workflow_block_dto.py +78 -0
  259. vapi/types/create_workflow_block_dto_messages_item.py +7 -0
  260. vapi/types/create_workflow_block_dto_steps_item.py +10 -0
  261. vapi/types/custom_llm_credential.py +46 -0
  262. vapi/types/custom_llm_model.py +115 -0
  263. vapi/types/custom_llm_model_metadata_send_mode.py +5 -0
  264. vapi/types/custom_llm_model_tools_item.py +20 -0
  265. vapi/types/deep_infra_credential.py +46 -0
  266. vapi/types/deep_infra_model.py +90 -0
  267. vapi/types/deep_infra_model_tools_item.py +20 -0
  268. vapi/types/deepgram_credential.py +53 -0
  269. vapi/types/deepgram_transcriber.py +68 -0
  270. vapi/types/deepgram_transcriber_language.py +65 -0
  271. vapi/types/deepgram_transcriber_model.py +37 -0
  272. vapi/types/deepgram_voice.py +47 -0
  273. vapi/types/deepgram_voice_id.py +6 -0
  274. vapi/types/deepgram_voice_id_enum.py +10 -0
  275. vapi/types/dtmf_tool.py +82 -0
  276. vapi/types/dtmf_tool_messages_item.py +9 -0
  277. vapi/types/eleven_labs_credential.py +46 -0
  278. vapi/types/eleven_labs_voice.py +98 -0
  279. vapi/types/eleven_labs_voice_id.py +6 -0
  280. vapi/types/eleven_labs_voice_id_enum.py +24 -0
  281. vapi/types/eleven_labs_voice_model.py +8 -0
  282. vapi/types/end_call_tool.py +82 -0
  283. vapi/types/end_call_tool_messages_item.py +9 -0
  284. vapi/types/error.py +19 -0
  285. vapi/types/exact_replacement.py +40 -0
  286. vapi/types/file.py +57 -0
  287. vapi/types/file_status.py +5 -0
  288. vapi/types/format_plan.py +64 -0
  289. vapi/types/format_plan_replacements_item.py +7 -0
  290. vapi/types/function_tool.py +82 -0
  291. vapi/types/function_tool_messages_item.py +9 -0
  292. vapi/types/function_tool_provider_details.py +35 -0
  293. vapi/types/function_tool_with_tool_call.py +67 -0
  294. vapi/types/function_tool_with_tool_call_messages_item.py +11 -0
  295. vapi/types/gcp_credential.py +62 -0
  296. vapi/types/gcp_key.py +78 -0
  297. vapi/types/ghl_tool.py +85 -0
  298. vapi/types/ghl_tool_messages_item.py +9 -0
  299. vapi/types/ghl_tool_metadata.py +22 -0
  300. vapi/types/ghl_tool_provider_details.py +41 -0
  301. vapi/types/ghl_tool_with_tool_call.py +69 -0
  302. vapi/types/ghl_tool_with_tool_call_messages_item.py +11 -0
  303. vapi/types/gladia_credential.py +46 -0
  304. vapi/types/gladia_transcriber.py +56 -0
  305. vapi/types/gladia_transcriber_language.py +109 -0
  306. vapi/types/gladia_transcriber_language_behaviour.py +7 -0
  307. vapi/types/gladia_transcriber_model.py +5 -0
  308. vapi/types/go_high_level_credential.py +46 -0
  309. vapi/types/groq_credential.py +46 -0
  310. vapi/types/groq_model.py +91 -0
  311. vapi/types/groq_model_model.py +19 -0
  312. vapi/types/groq_model_tools_item.py +20 -0
  313. vapi/types/handoff_step.py +116 -0
  314. vapi/types/handoff_step_block.py +11 -0
  315. vapi/types/import_twilio_phone_number_dto.py +91 -0
  316. vapi/types/import_twilio_phone_number_dto_fallback_destination.py +7 -0
  317. vapi/types/import_vonage_phone_number_dto.py +88 -0
  318. vapi/types/import_vonage_phone_number_dto_fallback_destination.py +7 -0
  319. vapi/types/invite_user_dto.py +21 -0
  320. vapi/types/invite_user_dto_role.py +5 -0
  321. vapi/types/json_schema.py +57 -0
  322. vapi/types/json_schema_type.py +5 -0
  323. vapi/types/knowledge_base.py +23 -0
  324. vapi/types/lmnt_credential.py +46 -0
  325. vapi/types/lmnt_voice.py +52 -0
  326. vapi/types/lmnt_voice_id.py +6 -0
  327. vapi/types/lmnt_voice_id_enum.py +5 -0
  328. vapi/types/log.py +164 -0
  329. vapi/types/log_request_http_method.py +5 -0
  330. vapi/types/log_resource.py +7 -0
  331. vapi/types/log_type.py +5 -0
  332. vapi/types/logs_paginated_response.py +22 -0
  333. vapi/types/make_credential.py +56 -0
  334. vapi/types/make_tool.py +85 -0
  335. vapi/types/make_tool_messages_item.py +9 -0
  336. vapi/types/make_tool_metadata.py +22 -0
  337. vapi/types/make_tool_provider_details.py +40 -0
  338. vapi/types/make_tool_with_tool_call.py +69 -0
  339. vapi/types/make_tool_with_tool_call_messages_item.py +11 -0
  340. vapi/types/message_plan.py +51 -0
  341. vapi/types/metrics.py +44 -0
  342. vapi/types/model_based_condition.py +54 -0
  343. vapi/types/model_cost.py +53 -0
  344. vapi/types/monitor.py +33 -0
  345. vapi/types/monitor_plan.py +43 -0
  346. vapi/types/neets_voice.py +47 -0
  347. vapi/types/neets_voice_id.py +6 -0
  348. vapi/types/neets_voice_id_enum.py +5 -0
  349. vapi/types/open_ai_credential.py +46 -0
  350. vapi/types/open_ai_function.py +35 -0
  351. vapi/types/open_ai_function_parameters.py +35 -0
  352. vapi/types/open_ai_message.py +21 -0
  353. vapi/types/open_ai_message_role.py +5 -0
  354. vapi/types/open_ai_model.py +106 -0
  355. vapi/types/open_ai_model_fallback_models_item.py +26 -0
  356. vapi/types/open_ai_model_model.py +26 -0
  357. vapi/types/open_ai_model_tools_item.py +20 -0
  358. vapi/types/open_ai_voice.py +52 -0
  359. vapi/types/open_ai_voice_id.py +5 -0
  360. vapi/types/open_router_credential.py +46 -0
  361. vapi/types/open_router_model.py +90 -0
  362. vapi/types/open_router_model_tools_item.py +20 -0
  363. vapi/types/org.py +120 -0
  364. vapi/types/org_plan.py +28 -0
  365. vapi/types/output_tool.py +82 -0
  366. vapi/types/output_tool_messages_item.py +9 -0
  367. vapi/types/pagination_meta.py +23 -0
  368. vapi/types/perplexity_ai_credential.py +46 -0
  369. vapi/types/perplexity_ai_model.py +90 -0
  370. vapi/types/perplexity_ai_model_tools_item.py +20 -0
  371. vapi/types/play_ht_credential.py +48 -0
  372. vapi/types/play_ht_voice.py +84 -0
  373. vapi/types/play_ht_voice_emotion.py +21 -0
  374. vapi/types/play_ht_voice_id.py +6 -0
  375. vapi/types/play_ht_voice_id_enum.py +8 -0
  376. vapi/types/punctuation_boundary.py +7 -0
  377. vapi/types/regex_option.py +34 -0
  378. vapi/types/regex_option_type.py +5 -0
  379. vapi/types/regex_replacement.py +48 -0
  380. vapi/types/rime_ai_credential.py +46 -0
  381. vapi/types/rime_ai_voice.py +58 -0
  382. vapi/types/rime_ai_voice_id.py +6 -0
  383. vapi/types/rime_ai_voice_id_enum.py +90 -0
  384. vapi/types/rime_ai_voice_model.py +5 -0
  385. vapi/types/rule_based_condition.py +96 -0
  386. vapi/types/rule_based_condition_operator.py +5 -0
  387. vapi/types/runpod_credential.py +46 -0
  388. vapi/types/s_3_credential.py +72 -0
  389. vapi/types/sbc_configuration.py +17 -0
  390. vapi/types/server.py +40 -0
  391. vapi/types/server_message.py +40 -0
  392. vapi/types/server_message_assistant_request.py +96 -0
  393. vapi/types/server_message_assistant_request_phone_number.py +11 -0
  394. vapi/types/server_message_conversation_update.py +110 -0
  395. vapi/types/server_message_conversation_update_messages_item.py +12 -0
  396. vapi/types/server_message_conversation_update_phone_number.py +11 -0
  397. vapi/types/server_message_end_of_call_report.py +134 -0
  398. vapi/types/server_message_end_of_call_report_costs_item.py +13 -0
  399. vapi/types/server_message_end_of_call_report_ended_reason.py +177 -0
  400. vapi/types/server_message_end_of_call_report_phone_number.py +11 -0
  401. vapi/types/server_message_hang.py +101 -0
  402. vapi/types/server_message_hang_phone_number.py +11 -0
  403. vapi/types/server_message_language_changed.py +101 -0
  404. vapi/types/server_message_language_changed_phone_number.py +11 -0
  405. vapi/types/server_message_message.py +38 -0
  406. vapi/types/server_message_model_output.py +101 -0
  407. vapi/types/server_message_model_output_phone_number.py +11 -0
  408. vapi/types/server_message_phone_call_control.py +110 -0
  409. vapi/types/server_message_phone_call_control_destination.py +7 -0
  410. vapi/types/server_message_phone_call_control_phone_number.py +11 -0
  411. vapi/types/server_message_phone_call_control_request.py +5 -0
  412. vapi/types/server_message_response.py +39 -0
  413. vapi/types/server_message_response_assistant_request.py +80 -0
  414. vapi/types/server_message_response_assistant_request_destination.py +7 -0
  415. vapi/types/server_message_response_message_response.py +14 -0
  416. vapi/types/server_message_response_tool_calls.py +28 -0
  417. vapi/types/server_message_response_transfer_destination_request.py +32 -0
  418. vapi/types/server_message_response_transfer_destination_request_destination.py +11 -0
  419. vapi/types/server_message_response_voice_request.py +44 -0
  420. vapi/types/server_message_speech_update.py +108 -0
  421. vapi/types/server_message_speech_update_phone_number.py +11 -0
  422. vapi/types/server_message_speech_update_role.py +5 -0
  423. vapi/types/server_message_speech_update_status.py +5 -0
  424. vapi/types/server_message_status_update.py +145 -0
  425. vapi/types/server_message_status_update_destination.py +7 -0
  426. vapi/types/server_message_status_update_ended_reason.py +177 -0
  427. vapi/types/server_message_status_update_messages_item.py +12 -0
  428. vapi/types/server_message_status_update_phone_number.py +11 -0
  429. vapi/types/server_message_status_update_status.py +7 -0
  430. vapi/types/server_message_tool_calls.py +112 -0
  431. vapi/types/server_message_tool_calls_phone_number.py +11 -0
  432. vapi/types/server_message_tool_calls_tool_with_tool_call_list_item.py +10 -0
  433. vapi/types/server_message_transcript.py +115 -0
  434. vapi/types/server_message_transcript_phone_number.py +11 -0
  435. vapi/types/server_message_transcript_role.py +5 -0
  436. vapi/types/server_message_transcript_transcript_type.py +5 -0
  437. vapi/types/server_message_transfer_destination_request.py +98 -0
  438. vapi/types/server_message_transfer_destination_request_phone_number.py +11 -0
  439. vapi/types/server_message_transfer_update.py +116 -0
  440. vapi/types/server_message_transfer_update_destination.py +11 -0
  441. vapi/types/server_message_transfer_update_phone_number.py +11 -0
  442. vapi/types/server_message_user_interrupted.py +96 -0
  443. vapi/types/server_message_user_interrupted_phone_number.py +11 -0
  444. vapi/types/server_message_voice_input.py +101 -0
  445. vapi/types/server_message_voice_input_phone_number.py +11 -0
  446. vapi/types/server_message_voice_request.py +128 -0
  447. vapi/types/server_message_voice_request_phone_number.py +11 -0
  448. vapi/types/sip_trunk_gateway.py +79 -0
  449. vapi/types/sip_trunk_gateway_outbound_protocol.py +5 -0
  450. vapi/types/sip_trunk_outbound_authentication_plan.py +35 -0
  451. vapi/types/sip_trunk_outbound_sip_register_plan.py +21 -0
  452. vapi/types/squad.py +73 -0
  453. vapi/types/squad_member_dto.py +60 -0
  454. vapi/types/start_speaking_plan.py +62 -0
  455. vapi/types/step_destination.py +28 -0
  456. vapi/types/step_destination_conditions_item.py +7 -0
  457. vapi/types/stop_speaking_plan.py +65 -0
  458. vapi/types/structured_data_plan.py +66 -0
  459. vapi/types/success_evaluation_plan.py +75 -0
  460. vapi/types/success_evaluation_plan_rubric.py +17 -0
  461. vapi/types/summary_plan.py +56 -0
  462. vapi/types/sync_voice_library_dto.py +23 -0
  463. vapi/types/sync_voice_library_dto_providers_item.py +10 -0
  464. vapi/types/system_message.py +39 -0
  465. vapi/types/talkscriber_transcriber.py +33 -0
  466. vapi/types/talkscriber_transcriber_language.py +109 -0
  467. vapi/types/template.py +58 -0
  468. vapi/types/template_details.py +20 -0
  469. vapi/types/template_provider.py +5 -0
  470. vapi/types/template_provider_details.py +8 -0
  471. vapi/types/template_visibility.py +5 -0
  472. vapi/types/time_range.py +47 -0
  473. vapi/types/time_range_step.py +8 -0
  474. vapi/types/together_ai_credential.py +46 -0
  475. vapi/types/together_ai_model.py +90 -0
  476. vapi/types/together_ai_model_tools_item.py +20 -0
  477. vapi/types/token.py +62 -0
  478. vapi/types/token_restrictions.py +53 -0
  479. vapi/types/token_tag.py +5 -0
  480. vapi/types/tool_call.py +33 -0
  481. vapi/types/tool_call_block.py +96 -0
  482. vapi/types/tool_call_block_messages_item.py +7 -0
  483. vapi/types/tool_call_block_tool.py +20 -0
  484. vapi/types/tool_call_function.py +27 -0
  485. vapi/types/tool_call_message.py +46 -0
  486. vapi/types/tool_call_result.py +62 -0
  487. vapi/types/tool_call_result_message.py +49 -0
  488. vapi/types/tool_call_result_message_item.py +7 -0
  489. vapi/types/tool_message_complete.py +74 -0
  490. vapi/types/tool_message_complete_role.py +5 -0
  491. vapi/types/tool_message_delayed.py +49 -0
  492. vapi/types/tool_message_failed.py +50 -0
  493. vapi/types/tool_message_start.py +37 -0
  494. vapi/types/tool_template_metadata.py +23 -0
  495. vapi/types/tool_template_setup.py +24 -0
  496. vapi/types/transcriber_cost.py +46 -0
  497. vapi/types/transcript_plan.py +66 -0
  498. vapi/types/transcription_endpointing_plan.py +52 -0
  499. vapi/types/transfer_call_tool.py +88 -0
  500. vapi/types/transfer_call_tool_destinations_item.py +11 -0
  501. vapi/types/transfer_call_tool_messages_item.py +11 -0
  502. vapi/types/transfer_destination_assistant.py +90 -0
  503. vapi/types/transfer_destination_number.py +77 -0
  504. vapi/types/transfer_destination_sip.py +39 -0
  505. vapi/types/transfer_destination_step.py +39 -0
  506. vapi/types/transfer_mode.py +5 -0
  507. vapi/types/transport_configuration_twilio.py +55 -0
  508. vapi/types/transport_configuration_twilio_recording_channels.py +5 -0
  509. vapi/types/transport_cost.py +32 -0
  510. vapi/types/twilio_credential.py +48 -0
  511. vapi/types/twilio_phone_number.py +113 -0
  512. vapi/types/twilio_phone_number_fallback_destination.py +7 -0
  513. vapi/types/twilio_voicemail_detection.py +107 -0
  514. vapi/types/twilio_voicemail_detection_voicemail_detection_types_item.py +10 -0
  515. vapi/types/update_anthropic_credential_dto.py +25 -0
  516. vapi/types/update_anyscale_credential_dto.py +25 -0
  517. vapi/types/update_azure_open_ai_credential_dto.py +31 -0
  518. vapi/types/update_azure_open_ai_credential_dto_models_item.py +17 -0
  519. vapi/types/update_azure_open_ai_credential_dto_region.py +24 -0
  520. vapi/types/update_byo_sip_trunk_credential_dto.py +64 -0
  521. vapi/types/update_cartesia_credential_dto.py +25 -0
  522. vapi/types/update_custom_llm_credential_dto.py +25 -0
  523. vapi/types/update_deep_infra_credential_dto.py +25 -0
  524. vapi/types/update_deepgram_credential_dto.py +32 -0
  525. vapi/types/update_eleven_labs_credential_dto.py +25 -0
  526. vapi/types/update_gcp_credential_dto.py +41 -0
  527. vapi/types/update_gladia_credential_dto.py +25 -0
  528. vapi/types/update_go_high_level_credential_dto.py +25 -0
  529. vapi/types/update_groq_credential_dto.py +25 -0
  530. vapi/types/update_lmnt_credential_dto.py +25 -0
  531. vapi/types/update_make_credential_dto.py +35 -0
  532. vapi/types/update_open_ai_credential_dto.py +25 -0
  533. vapi/types/update_open_router_credential_dto.py +25 -0
  534. vapi/types/update_org_dto.py +63 -0
  535. vapi/types/update_perplexity_ai_credential_dto.py +25 -0
  536. vapi/types/update_play_ht_credential_dto.py +27 -0
  537. vapi/types/update_rime_ai_credential_dto.py +25 -0
  538. vapi/types/update_runpod_credential_dto.py +25 -0
  539. vapi/types/update_s_3_credential_dto.py +51 -0
  540. vapi/types/update_together_ai_credential_dto.py +25 -0
  541. vapi/types/update_tool_template_dto.py +38 -0
  542. vapi/types/update_tool_template_dto_details.py +20 -0
  543. vapi/types/update_tool_template_dto_provider.py +5 -0
  544. vapi/types/update_tool_template_dto_provider_details.py +10 -0
  545. vapi/types/update_tool_template_dto_visibility.py +5 -0
  546. vapi/types/update_twilio_credential_dto.py +27 -0
  547. vapi/types/update_user_role_dto.py +23 -0
  548. vapi/types/update_user_role_dto_role.py +5 -0
  549. vapi/types/update_vonage_credential_dto.py +27 -0
  550. vapi/types/user.py +47 -0
  551. vapi/types/user_message.py +49 -0
  552. vapi/types/vapi_cost.py +32 -0
  553. vapi/types/vapi_model.py +102 -0
  554. vapi/types/vapi_model_steps_item.py +7 -0
  555. vapi/types/vapi_model_tools_item.py +20 -0
  556. vapi/types/vapi_phone_number.py +105 -0
  557. vapi/types/vapi_phone_number_fallback_destination.py +7 -0
  558. vapi/types/voice_cost.py +46 -0
  559. vapi/types/voice_library.py +126 -0
  560. vapi/types/voice_library_gender.py +5 -0
  561. vapi/types/voice_library_voice_response.py +27 -0
  562. vapi/types/vonage_credential.py +64 -0
  563. vapi/types/vonage_phone_number.py +108 -0
  564. vapi/types/vonage_phone_number_fallback_destination.py +7 -0
  565. vapi/types/workflow_block.py +99 -0
  566. vapi/types/workflow_block_messages_item.py +7 -0
  567. vapi/types/workflow_block_steps_item.py +7 -0
  568. vapi/version.py +3 -0
  569. vapi_server_sdk-0.0.0a7.dist-info/METADATA +179 -0
  570. vapi_server_sdk-0.0.0a7.dist-info/RECORD +571 -0
  571. vapi_server_sdk-0.0.0a7.dist-info/WHEEL +4 -0
@@ -0,0 +1,571 @@
1
+ vapi/__init__.py,sha256=hXstHMuDBWhmBS5GCbaJtDWlDHyR1Fo2M-BjkMeBeqQ,31763
2
+ vapi/analytics/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
+ vapi/analytics/client.py,sha256=uXFfTERzm4DKNlqhWJKKVAs7vgaAN_v8l5tlu0nV3AY,5261
4
+ vapi/assistants/__init__.py,sha256=X7B6pYOasAyX3m7Y835lRPQTMZJdQzwe4IBwqM9VJJQ,629
5
+ vapi/assistants/client.py,sha256=YfjDF0dshmZkoPy5lbP37WisfXrjSnkye5xwr9CBTFU,79093
6
+ vapi/assistants/types/__init__.py,sha256=mjOvICUHFbOpdAG4fgTBhImpe0q0vqSXxRxVs_JlsDE,911
7
+ vapi/assistants/types/update_assistant_dto_background_sound.py,sha256=GKfpBIVdrTs8PFzhjej9t3-hUIBDgwpVul9RTMQpvfU,174
8
+ vapi/assistants/types/update_assistant_dto_client_messages_item.py,sha256=lhamtqQebXaFVDkOYK0upI5GZC5dhqjqDT3l9gETex0,528
9
+ vapi/assistants/types/update_assistant_dto_first_message_mode.py,sha256=d5g90sQam1_rIzXmgqOX8_21PD5Zx_tF0Cpp8JsMwwk,292
10
+ vapi/assistants/types/update_assistant_dto_model.py,sha256=xnwJ2-_ITGeVAdySyK98aiFECsVsBqiO9cDuYzM3qOE,821
11
+ vapi/assistants/types/update_assistant_dto_server_messages_item.py,sha256=NaTRDxCDbExD13n-qA0yk7Iao06zD9e0piVTpsXm51s,574
12
+ vapi/assistants/types/update_assistant_dto_transcriber.py,sha256=27y3qLJCMelNnIh6hK1wBYUvzOCHRve4W9ETolnb_oI,377
13
+ vapi/assistants/types/update_assistant_dto_voice.py,sha256=G5TNCVXGB81k4p0DgpNEt5N4YXgeVgR8P8Co8C-wuAw,705
14
+ vapi/blocks/__init__.py,sha256=MaV6Y2qACrf0yRDYUH0EsM4rsdOgewhgkkZAiE13L9Y,599
15
+ vapi/blocks/client.py,sha256=lNYAijROWjM4TkbPfT1DNhbXDUIxxVgYq94Sf4o1VIc,32726
16
+ vapi/blocks/types/__init__.py,sha256=YXcValJptyLdtQilE9a4ejQlm63CTkPwWjKlvFHMBj8,866
17
+ vapi/blocks/types/blocks_create_request.py,sha256=EqQCM8hCB2miqCy-dcw1pOT-YT_Q7eZCV52f10N5Mxs,410
18
+ vapi/blocks/types/blocks_create_response.py,sha256=-wOV3Fyr6e8f7L867L7oA7vGJCp1crVmhm9_oZ5QHAs,324
19
+ vapi/blocks/types/blocks_delete_response.py,sha256=Rba3xpNNfmVsclgJ-7WZc4ahSjCxQBGOmhleufrwhL4,324
20
+ vapi/blocks/types/blocks_get_response.py,sha256=bEWltf5fosTXFaHD-0k6aUQ_C88XXUJkkkAB8RQZq4o,321
21
+ vapi/blocks/types/blocks_list_response_item.py,sha256=ZT6TgPCVgF6mQRdAV2q-rZxnnQCu0LBUExLBidWqESs,326
22
+ vapi/blocks/types/blocks_update_response.py,sha256=GMHuVPuk1qb4cnFVreobfF2Do0X1j--t4q-4o6D4Qy0,324
23
+ vapi/blocks/types/update_block_dto_messages_item.py,sha256=VFHSPQV0gqwZAdyyw3lobUTAlL74yt0it98kUW6U7xY,287
24
+ vapi/blocks/types/update_block_dto_steps_item.py,sha256=lNIyf19XP0YnMnrwmMFMI7rI8NeI4Tu9Tk9-p9c80p4,240
25
+ vapi/blocks/types/update_block_dto_tool.py,sha256=vcfLk6bnk_kxpdBiS72pPP7KvRbrq2lhGPuBGzBk7A4,757
26
+ vapi/calls/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
+ vapi/calls/client.py,sha256=e5ZrYKVYAfaUMRWwCES6W12k3LUNoo3VXX1aS7oh1ls,28095
28
+ vapi/client.py,sha256=9RrkFebJyuPfTjDgOcTBHlvTmIHhvNGKPknQ2T_FHUM,7305
29
+ vapi/core/__init__.py,sha256=-t9txgeQZL_1FDw_08GEoj4ft1Cn9Dti6X0Drsadlr0,1519
30
+ vapi/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
31
+ vapi/core/client_wrapper.py,sha256=SHR0kU44GBFYGHH1XwjM9ERtxKIhCJ1aezO9bmX_SOk,2223
32
+ vapi/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
33
+ vapi/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
34
+ vapi/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
35
+ vapi/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
36
+ vapi/core/pagination.py,sha256=gm_vRmEjiMzt_0Cuju37HALD_chp8iWTv9N3K40aaUQ,3176
37
+ vapi/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
38
+ vapi/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
39
+ vapi/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
40
+ vapi/core/request_options.py,sha256=5cCGt5AEGgtP5xifDl4oVQUmSjlIA8FmRItAlJawM18,1417
41
+ vapi/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
42
+ vapi/environment.py,sha256=Hy4HcxutZpskxyX5B_okf3R4cQzdLRmh3lUMQuG3e34,149
43
+ vapi/errors/__init__.py,sha256=xk8rlG9L11AS1-eCxbKxcm1ISmRXyGAeTbzhajWYCaA,143
44
+ vapi/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
45
+ vapi/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
46
+ vapi/files/client.py,sha256=DFs4S5MQGYa2SUMRBwNSKm_4PU3BRL89j4AwJkJ60Ik,15597
47
+ vapi/logs/__init__.py,sha256=bNx-9cSJEEA-Ja_Sm7eN1LghnY83KBi2_wo2Yv99aXc,189
48
+ vapi/logs/client.py,sha256=foEY4u9lI6C6C0zhF5Oom1QWEwFi4ULXUmJWn472yd4,15184
49
+ vapi/logs/types/__init__.py,sha256=aFIApbhZk8FGZ0hn5BiCc-uZRFbYuUNgVZvAAZqAbR8,245
50
+ vapi/logs/types/logs_get_request_sort_order.py,sha256=wsaN02iek-tlRIYcDz9KQlKnJxxQ0eCPrcUcTCSKBVg,162
51
+ vapi/logs/types/logs_get_request_type.py,sha256=eNV4bleR2qjWEga05jzteR6HaWRzXcNaAFx14QRKYfk,180
52
+ vapi/phone_numbers/__init__.py,sha256=j3c6-ETIxj0KnflgcC-TmTqoPEG5ykXnrtebY9cisGk,587
53
+ vapi/phone_numbers/client.py,sha256=dSgUz-T5JB5y8z2NqLnbrtQMq2kIEo4RB7YeiVp2vtQ,27421
54
+ vapi/phone_numbers/types/__init__.py,sha256=1dW8_lfBucTTAb6JNKkyJHHmDXURm4PghkfAQYtcyXc,844
55
+ vapi/phone_numbers/types/phone_numbers_create_request.py,sha256=bhhj35Kb7zmyOzb0WoI0Sb8h-YKeLRwyjYQCp2XzXWM,540
56
+ vapi/phone_numbers/types/phone_numbers_create_response.py,sha256=kZOBlzNCWHgU-kFWUqtoN-W9NZUpCvc1d-DxT97RltA,419
57
+ vapi/phone_numbers/types/phone_numbers_delete_response.py,sha256=D2ZJyG2BTcSPcpW-ZFrCfLqpqlAL88Uu4wQB-Cb9Bgk,419
58
+ vapi/phone_numbers/types/phone_numbers_get_response.py,sha256=j44BcrvntiddepnUknf8PAhi4tjOwvxS3xLyjRJzioA,416
59
+ vapi/phone_numbers/types/phone_numbers_list_response_item.py,sha256=sHO_vK6F2sVEVVNGzCfi4wGFR0_VGOTEKtfCQan9x_I,421
60
+ vapi/phone_numbers/types/phone_numbers_update_response.py,sha256=42y1zXctwDGguB20slRv9DazXBjco3TI-kTTT8T7cOQ,419
61
+ vapi/phone_numbers/types/update_phone_number_dto_fallback_destination.py,sha256=R_ta1PpVe2IZpXktWWLcjEncIhFZdIj7ESK-3Q4-mDo,330
62
+ vapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ vapi/squads/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
64
+ vapi/squads/client.py,sha256=yJmpI5YRk83EApVJ-qJ9BPwNfbBbIz3gN6eT-hwrFM4,25155
65
+ vapi/tools/__init__.py,sha256=nehAYMhXNzgRtLO2ARzgmcocucNKPHb2TpjtvIFxcO0,475
66
+ vapi/tools/client.py,sha256=kGOo-HccNlFGwTHIo-K2NR_LyOLN_oq5VjCFoez1TGE,26848
67
+ vapi/tools/types/__init__.py,sha256=7W7NTVkTqt1AywT6MRUxYiGhZZ6YgEGHQ3YEW_8uGgg,669
68
+ vapi/tools/types/tools_create_request.py,sha256=X0G-ndIGTVl9rvXwBnLU7evtLMvDZSWTM-rbT6iAHHM,748
69
+ vapi/tools/types/tools_create_response.py,sha256=OBFMsm1vjTEKW93KPB0euaoXtm3yS5KWLs8l7OSF-6U,515
70
+ vapi/tools/types/tools_delete_response.py,sha256=IrD1aGf_POxjfu_9tOlRi63bggwWyiYXtjkXKhFZwcM,515
71
+ vapi/tools/types/tools_get_response.py,sha256=xs4U6YJSj8wE0QZEHnDkMQtAofbHQl-hFEVdsyWD3sI,512
72
+ vapi/tools/types/tools_list_response_item.py,sha256=a61AwCD4ULCk7BMP3Oqv_L8I2fM7PjhRh-RJYDHkqT8,523
73
+ vapi/tools/types/tools_update_response.py,sha256=O-v5ZtZNu3kmL-JmVQLysCaXBL6avIKE9_MG2UChXjk,515
74
+ vapi/tools/types/update_tool_dto_messages_item.py,sha256=eqm3YlCPYsqtomBq1B0WM3qY6U96bYqSBICw2whuhuk,439
75
+ vapi/types/__init__.py,sha256=hxPiRNQojcBmGQvSKGLFZnMs1PTATpkFeV_ibMENlbo,46130
76
+ vapi/types/add_voice_to_provider_dto.py,sha256=6Nn0LmarSL_3yAz3Poocs0wT_zWlLf_M0pey9CEtUKw,1282
77
+ vapi/types/analysis.py,sha256=iX9Ul9XsoALbLMoexQTFRi2HCeo4X-6_cDB6IbzbhpE,1527
78
+ vapi/types/analysis_cost.py,sha256=UKtpIf3PnPin4L8U7lbwubyPXv6ZI4o3qbESuH2rJ1c,1686
79
+ vapi/types/analysis_cost_analysis_type.py,sha256=zgXjzg9lWu1aoi9vBFonasR00hW47a2UXFskwOEeSzI,198
80
+ vapi/types/analysis_cost_breakdown.py,sha256=aYvOrSbobhiGbXuVokYeMIUonwjOFF0JlYXCcC1KYgc,2927
81
+ vapi/types/analysis_plan.py,sha256=t9kSes-9_vqnD7ElHPbckRrXkEsTuPjFxXpk0v1KNCQ,1683
82
+ vapi/types/analytics_operation.py,sha256=EerDYAQTRvpb6W1RtUAA0i0jHSkvVHfIzn6ykGnK9FA,1132
83
+ vapi/types/analytics_operation_column.py,sha256=sU3GwUVXEH_FxOg0g4NFvL5xfSojDvC9QUfEPpd4p-I,458
84
+ vapi/types/analytics_operation_operation.py,sha256=ibd9jj89FfkTbzxvKYlUtNdCCgDSMXJtHaZGjQQcpBM,188
85
+ vapi/types/analytics_query.py,sha256=1eQm5rudSjJLwr2bO5jeAoz_hATRqCgxt4KPHS8QXOw,1635
86
+ vapi/types/analytics_query_group_by_item.py,sha256=FB9GAOVkkCyud2GC7nz6vi3VCji0uo9uaTEjfiA1vjw,233
87
+ vapi/types/analytics_query_result.py,sha256=AIkF3WXDbPMbEnnHDLRmmteapJYIs89iwbZaKAML7b4,1455
88
+ vapi/types/anthropic_credential.py,sha256=mpkBR337so6oVph73giVYzUFbAEJfot7JSVbhjQzQmQ,1553
89
+ vapi/types/anthropic_model.py,sha256=OZM3mFvqXn-QFluQa9U1CakY47d3sahoOOOYsCH69KY,3358
90
+ vapi/types/anthropic_model_model.py,sha256=LiW_5iIfJgWP5r4KdLGj1MT7rel3iDqySVTqUsYHiMw,279
91
+ vapi/types/anthropic_model_tools_item.py,sha256=8y4bZkTdTXEOEu8MOeNfqfsZQgVin91OPKSiU83fEv8,706
92
+ vapi/types/anyscale_credential.py,sha256=GaJAjrbbZbF9DmgBLNqDuZ5BAlilAF2pnGGu4tiJKkI,1550
93
+ vapi/types/anyscale_model.py,sha256=tLxqVC0p0v1eqAqCIOO1Ath7n_Y8uWl5i5qVq5oJuLU,3304
94
+ vapi/types/anyscale_model_tools_item.py,sha256=LsjPlksaYhwCNf0cC-ThfDfitjKx5gmxtojvpUu_0fk,705
95
+ vapi/types/artifact.py,sha256=WbR30XUOpX2zVmJ9lP13THeIhz157kmc5dJFsH7bkvg,2640
96
+ vapi/types/artifact_messages_item.py,sha256=h2Eh1JOD0LQuK8Vvk6vqhw32Pz0fhcyQJ1ni_vQtfr8,419
97
+ vapi/types/artifact_plan.py,sha256=8Yv2kKl3Y9JfKsgwTXQQXqVdPa4U_VLkOhfeqfbS0kQ,2761
98
+ vapi/types/assignment_mutation.py,sha256=ZSOxfKaezPYym41H0YN4u1b0lPgxESNFcndYlm9uKb0,4027
99
+ vapi/types/assignment_mutation_conditions_item.py,sha256=zSXMWMNVoTRPE4qNeQaZ1nrRhR8X4WViqXBhiXP3CrE,277
100
+ vapi/types/assistant.py,sha256=kIMvq61Tu8xVBb1zq0MlhsrnzeYYIA20lgt5xqTRSXc,14537
101
+ vapi/types/assistant_background_sound.py,sha256=dDeU1VGeqvG4DqQIE2-_pVDBVsLbyZGNRS0l1Z55I2c,165
102
+ vapi/types/assistant_client_messages_item.py,sha256=HyHcsm0Q6LC_ymedgU_kx9kyorvsSN1Qt2XX6_6K0os,519
103
+ vapi/types/assistant_first_message_mode.py,sha256=xb7Te5kw3YKw496Si0v7Wr9E1rwF5x5uyofERPfuwsY,283
104
+ vapi/types/assistant_model.py,sha256=gfaVQmC50XLeJ1ZaN2u3-y5IloFZZkSSfy_-SXhE_6I,732
105
+ vapi/types/assistant_overrides.py,sha256=pXPLoCWfiLZ-zEgsKy36HqqvgaaMowXB2vOGtkO0b9c,14413
106
+ vapi/types/assistant_overrides_background_sound.py,sha256=C5_8pYwZyfyEErke1vjHSJI0MpTpKnsmdPT9T4FR0gk,174
107
+ vapi/types/assistant_overrides_client_messages_item.py,sha256=tRrvOWXnLZ1SXDQ-BJo8vW9F8Fo0gU7ynBCH5flL5Fs,528
108
+ vapi/types/assistant_overrides_first_message_mode.py,sha256=enwBPsimdpuHuAzSpupVcIWRNp7KgVnnToENfGU2jeQ,292
109
+ vapi/types/assistant_overrides_model.py,sha256=_mbthFJ29DkMpOG397_1G3H5uhiEVwejMABPpz3oKqk,741
110
+ vapi/types/assistant_overrides_server_messages_item.py,sha256=OxTRGk4Z5pZQqiBWpGpb_lvdwxSs-4ShWnknJTBbxnQ,574
111
+ vapi/types/assistant_overrides_transcriber.py,sha256=zGK7yR0BSgp7tNzjqgDjp08-vVvDqc6WJEciune9qXM,353
112
+ vapi/types/assistant_overrides_voice.py,sha256=Fd6pKOvXdIoG49k_jZVoF6OUMQi8VBXf5heVLPWwiTM,633
113
+ vapi/types/assistant_server_messages_item.py,sha256=UnzifumUnls3kh2iUoqfPbiHJbhw28Tp0NNAxVGer-A,565
114
+ vapi/types/assistant_transcriber.py,sha256=KH7xHfqjk6nGzXtNaeC6MXfvqLcW9UjDkcWaBHFJTT4,344
115
+ vapi/types/assistant_voice.py,sha256=Ho90-Bzm53ABXg8dEzV8I_sRwbzEIZu5O9qP66CoTyQ,624
116
+ vapi/types/azure_open_ai_credential.py,sha256=zLUkGmoy-3e2iv3lunUj_0YfjvmFtKvUNjBNCcnKBJ8,1915
117
+ vapi/types/azure_open_ai_credential_models_item.py,sha256=QX2Iezt3VaIbryD7Bku67d2UiKOK-RYz3_DRpOIaP3A,410
118
+ vapi/types/azure_open_ai_credential_region.py,sha256=XYUUrMTa2QnN-iqgN7aQUr89cDdgnryY7WTzsDme8JY,459
119
+ vapi/types/azure_voice.py,sha256=MiDOkbGla8UnZMLKaORjoclx5J2nUXZrcMWdPQGsbfU,1796
120
+ vapi/types/azure_voice_id.py,sha256=JFkybQunOHAGeCTxuaLrJgJXBwxeTVbWQTqdqrGS2TY,181
121
+ vapi/types/azure_voice_id_enum.py,sha256=w_QIynOITa9TeY7xME7aiVGPNlPnFioPf90X-eLXEd8,167
122
+ vapi/types/block_complete_message.py,sha256=rqwfq5AXHJ45RtvBNJIZgvZjQHLR2VETXDSkbGFg3Oo,1172
123
+ vapi/types/block_complete_message_conditions_item.py,sha256=me2gvO17A2X2Xd9sQORRw-gHi6pJEdZ-c0vmLACUgDI,279
124
+ vapi/types/block_start_message.py,sha256=n1cF2i6VQtq9qKkmU3i0j3nu_9VGiO44ooUBkEXhP7c,1151
125
+ vapi/types/block_start_message_conditions_item.py,sha256=Kc3vt7ZjBZOb16wmqeOihg25FGP-qEpaMdAqWq6EBCE,276
126
+ vapi/types/bot_message.py,sha256=i5OHqABEf3JYgO5lrRytkpS8uKWdbBn6cXPrleFR0K8,1491
127
+ vapi/types/bucket_plan.py,sha256=OrxfpSJ7EcMuDZlia0subvbjDmRx_n9vQyd9qWfOThE,2641
128
+ vapi/types/buy_phone_number_dto.py,sha256=KBbZ_L8E8Uu6sSQk7GNAS8CYCG4qBNmpvius7j860uY,3353
129
+ vapi/types/buy_phone_number_dto_fallback_destination.py,sha256=u-Xx-ThBNC6F3yMlkil4Kna_ZtWIs2O5qqr6Xc8zfRs,311
130
+ vapi/types/byo_phone_number.py,sha256=tXiWKi0N4w00f2iX9zmlOAVJJ2oMe1DxjaAUim0B1Qg,5290
131
+ vapi/types/byo_phone_number_fallback_destination.py,sha256=6D1FalNJiimF3CdG6th2SXPYNZePrVf-RNdnBJwVaX0,308
132
+ vapi/types/byo_sip_trunk_credential.py,sha256=xcuhs-J_YvCpv3WP7d-A8y0weBhK-O95RUp9-kfBSRY,3142
133
+ vapi/types/call.py,sha256=tgyGR11aQPwLywfBegzAqF49JqeK5hC4N7k_IRuoRlc,8883
134
+ vapi/types/call_costs_item.py,sha256=QMhPski1w2lXm9SFGoepqv5ESUjHKM89m5uCBW_eIIE,415
135
+ vapi/types/call_destination.py,sha256=mT61KmGaAgF9SX3EovlzvzVthIKqOBVidCR5_v1Ja8s,290
136
+ vapi/types/call_ended_reason.py,sha256=o69tAtPwjQGafygVzPu3InBIP7buxGv5ET9RA_GguuY,9044
137
+ vapi/types/call_messages_item.py,sha256=wU7cU2NLXic1YI193n5O6spGqvRwFRtVIsT9CSYaT8A,415
138
+ vapi/types/call_paginated_response.py,sha256=D2AFghfYQqmyJg6__tK66kAAqaSTLq53Y_2vM9JT4g4,1158
139
+ vapi/types/call_phone_call_provider.py,sha256=DkXOr8mZuCA0yLKKEXlR6rNOeDCKEP93XdMGdshAeQ8,173
140
+ vapi/types/call_phone_call_transport.py,sha256=iOcY_KTSvLUMY9Vp8tQDiftHh8i4V7B6LehdyU8hI7A,161
141
+ vapi/types/call_status.py,sha256=3KqUXw6yS8NaVAiASI9wnjTqUWeyx-QrhnBuGvpKQuo,193
142
+ vapi/types/call_type.py,sha256=YkTJHByL6crYNZQdgpGADa2mhQYo087FU3bAUri3-wI,184
143
+ vapi/types/callback_step.py,sha256=o5XXJQYoHCzQN5-2tE64EoAK8Tmb2u3AhRPQ2qcFabI,4578
144
+ vapi/types/callback_step_block.py,sha256=oMgGCaxwt_x8324n2hbhdZVwwFLMzBeZHkbMStQEgfU,464
145
+ vapi/types/cartesia_credential.py,sha256=0bLwsjAkEDr5PJvziTRjC5YKdki5qaKMhiVUq8-8pm4,1550
146
+ vapi/types/cartesia_voice.py,sha256=x6ZDSsSXN2o2bagYsC3UVIXyHxqoDWqsZ9YRu1glYe8,2161
147
+ vapi/types/cartesia_voice_language.py,sha256=tEu7OI3lPZxH3xh37Hq5t4tRgq3WHo9LW79x85i1KOg,187
148
+ vapi/types/cartesia_voice_model.py,sha256=5o-tq4bZj0yneNhAHSpf3PPs8GHA8t8NnP1e7cdxbXQ,181
149
+ vapi/types/chunk_plan.py,sha256=_ufoGDMwSpNDRQNjPdgrHQSL6RjOHStcCy6E8kAqFfA,2350
150
+ vapi/types/client_inbound_message.py,sha256=-HS6_nDsXDWLW_vuJFBVNoeKV1KS8RBMTNXHuAOefew,784
151
+ vapi/types/client_inbound_message_add_message.py,sha256=hXyaT6QrFKixkMEBKxXjUWTXhuR3IIJenIDmPkL7zPc,923
152
+ vapi/types/client_inbound_message_control.py,sha256=6zJl3hrKnFbvY4FpsCfjK9fM9Md8RJWUSLgZlhBF4uc,1231
153
+ vapi/types/client_inbound_message_control_control.py,sha256=-EEs5uX7SzgiVLeHpWKwBvkdthnrqB27hoLRKy0Fy-A,223
154
+ vapi/types/client_inbound_message_message.py,sha256=P8u1f8i5CAyeGxSwJ6zHPBBIdiSoUa0R3GU7oWhscNU,430
155
+ vapi/types/client_inbound_message_say.py,sha256=_-0XsHFO-DIkng1MRHsB_zxJu5e6Jkt2_qO0saX70K4,1168
156
+ vapi/types/client_message.py,sha256=gmVw10q3j-mSnBMb296eGloj1EU1Xyc-32X2UD0b9-Q,833
157
+ vapi/types/client_message_conversation_update.py,sha256=fWVAD47Q4nZEpC492H4KbJVvw4zNSyaCr5INdGZT34Y,1533
158
+ vapi/types/client_message_conversation_update_messages_item.py,sha256=rVL3PjymjT73azDjnVSzXKrfW1NHTAJfCFxydjH-6KA,448
159
+ vapi/types/client_message_hang.py,sha256=eIbriPUZeIUWzHqjSNKdoJKkfCOm1b16vIVo9_7jkxg,939
160
+ vapi/types/client_message_language_changed.py,sha256=qUa4bXRSYLa1NkguSw3ARx3uCKkaul_16R04fr26V54,918
161
+ vapi/types/client_message_message.py,sha256=Fq9feIyFZFi4OUe0RhmoOujw6WU5Nu9Ms5fntXyhmIQ,1191
162
+ vapi/types/client_message_metadata.py,sha256=QNa_wkeZmgryr2gYnDzrhQEllM3XMAWx5auV6GipY-Q,818
163
+ vapi/types/client_message_model_output.py,sha256=c7TsFuBsMnNJKb1VMOen8rD94dQm2AJ4SWQnzdKurZ0,903
164
+ vapi/types/client_message_speech_update.py,sha256=FdFB0SoCt4cB9hB7A6WpZTZ6KkH8cnQYzyez2aZvpVw,1178
165
+ vapi/types/client_message_speech_update_role.py,sha256=u-Xoumrye7-fG-l2CZJyINXd7zJ4JI6JaB4HA1M8opI,174
166
+ vapi/types/client_message_speech_update_status.py,sha256=goptq2nxyw9zbvdQtEw27VuwUqSgD1xIQZQlQ8Ba6u4,177
167
+ vapi/types/client_message_tool_calls.py,sha256=BinJ5ARei3hvjaC-g3rKEEneMqJczevNJJZsmUwXhjs,1496
168
+ vapi/types/client_message_tool_calls_result.py,sha256=a9HlJZTR_2SXNUtveRGOOSqH59MNmEg1WgRgniYRMWE,1081
169
+ vapi/types/client_message_tool_calls_tool_with_tool_call_list_item.py,sha256=2CXqkGnGmlKKFY_lmFjco7QTJ_A4oZDelFJUsi9dwAw,400
170
+ vapi/types/client_message_transcript.py,sha256=7gjpuUgPxOhFCH8HTzfT_Xz7mgVBSjUz8D3cX21dTfY,1430
171
+ vapi/types/client_message_transcript_role.py,sha256=Wwh9hQngD5WMnN7d5IiJmWAuZZ-zs_zy7JBcy1xGX98,172
172
+ vapi/types/client_message_transcript_transcript_type.py,sha256=XuAlDCZ7DUK6rRfls-j1-Fznz31YfoK6yw7_hH3b8_I,181
173
+ vapi/types/client_message_user_interrupted.py,sha256=1r-Gp1AQXvDS3QX0cQvc-GiNnAJGV0rxKiTT0ZFnbLk,767
174
+ vapi/types/client_message_voice_input.py,sha256=Hsyzd0Kak7vQNRDCVTtf1MnNiRD1MxLvT-BRFPpttYY,846
175
+ vapi/types/clone_voice_dto.py,sha256=JrBZgvhEkh-SO2HcpKVFG1N7JfNq4w2hCs1pGkQi57o,1079
176
+ vapi/types/condition.py,sha256=Yo_SPm0pzWmd-TgLbelT1EyV7PZ3Gv3zRnxe9Kr8bUE,961
177
+ vapi/types/condition_operator.py,sha256=MSzPkJB0kLh8lARnGvLl4PgcKykQ79J0v4sUopRxaZM,180
178
+ vapi/types/conversation_block.py,sha256=qPjrqjJB6MEy4r3emmBup01ABCrnb40HGbGLOfHYd1M,5259
179
+ vapi/types/conversation_block_messages_item.py,sha256=V1Ee0DCwA7_xNAGXYdazB5XbKWjHGxiPG1H8SZDsTLY,274
180
+ vapi/types/cost_breakdown.py,sha256=NnYGEhdWEGO_5uEM3Fl9Lz07ZJeb4hMvow2Asp18bS8,2391
181
+ vapi/types/create_anthropic_credential_dto.py,sha256=vca6ZL7oYhDuzctU8yxONGsLUqrI7JFJk1dmln45UX4,834
182
+ vapi/types/create_anyscale_credential_dto.py,sha256=2B-ikCEfsxGxZkS2xx2HEt11ZkM2GGx01s93J0G36BA,831
183
+ vapi/types/create_assistant_dto.py,sha256=fdN6zXkrwOydz204uUUZ4_wuNpBjNxTJQF6_Y7YA5oU,14078
184
+ vapi/types/create_assistant_dto_background_sound.py,sha256=4jueIO5zoaDNBdHrbdbW1ajlQrINurziq0JPCZ8ZYC8,174
185
+ vapi/types/create_assistant_dto_client_messages_item.py,sha256=bde3VlT6MjOOGo5P_YZFzn7MRqZnFaCA8J3Fg0FJzgA,528
186
+ vapi/types/create_assistant_dto_first_message_mode.py,sha256=3KMJvcRoO9nzGsETa0aEbgsV8z8rr_QX5J_RD0GdoPY,292
187
+ vapi/types/create_assistant_dto_model.py,sha256=QhV2k36Zr-HR12JL26HX0kNumVBOdFJCYYLAeg5ig6Y,741
188
+ vapi/types/create_assistant_dto_server_messages_item.py,sha256=B-hzOHAa54yncWFL6SO3-G70-TlgHmEcuNcZp5wp1EQ,574
189
+ vapi/types/create_assistant_dto_transcriber.py,sha256=0VcQdDap8f13aAXZ2yuvDjKYqCnTPNYoQSFK8vYflRg,353
190
+ vapi/types/create_assistant_dto_voice.py,sha256=VhtQh77uY2pqShBl9gGVliL-UV1HLGzW35mLeDTyH8o,633
191
+ vapi/types/create_azure_open_ai_credential_dto.py,sha256=eOedLIfAcWWtwwGcRNKlcWW96yMxHm--P4FwLumBO_8,1254
192
+ vapi/types/create_azure_open_ai_credential_dto_models_item.py,sha256=OgvUAbMrjv6ecAD5LriENie-Gx_hbKPmtsRLzVBkiEQ,419
193
+ vapi/types/create_azure_open_ai_credential_dto_region.py,sha256=gEoNOQ-ZX1NaIUbu85iNDQpMjykTAim3EI4UzbpPh6E,468
194
+ vapi/types/create_byo_phone_number_dto.py,sha256=81SfCrwDdzSZqDXsCUL9QWTDATlh1HHuhjsLRju1ewE,4591
195
+ vapi/types/create_byo_phone_number_dto_fallback_destination.py,sha256=icLTbjuEDMQ8E_-fckba68PzFYmRzeOW1gTLSWxO9NY,317
196
+ vapi/types/create_byo_sip_trunk_credential_dto.py,sha256=3bzEiainqxksIoUPu7ky51c1wvRSwmacqLQX_W4Xask,2423
197
+ vapi/types/create_cartesia_credential_dto.py,sha256=l5Qyh0qaR5ar0DUX8r6oWWB68FqIeWuvU_rVJM4HP54,831
198
+ vapi/types/create_conversation_block_dto.py,sha256=dUGYQX_rNTszkp528YhYhM9V0NPtBIrzdQpCzjmRg6s,4579
199
+ vapi/types/create_conversation_block_dto_messages_item.py,sha256=28qMaNCbN-cMvis7zCe61W-JxoUe05OaTpZ_TOsBo90,283
200
+ vapi/types/create_custom_llm_credential_dto.py,sha256=3cJziqmYt4cuFoo4ajlyWPoGJb6y9dkDMLnjtb8gLH4,836
201
+ vapi/types/create_customer_dto.py,sha256=HtVuzs1i71k42yvRDh3TK2fF_tYrtVzgwWWLoQpMiMU,2180
202
+ vapi/types/create_deep_infra_credential_dto.py,sha256=ps-r5vuEIDt9kEnky2P2aUq2D6A2UCDULlDcZcbC2pg,834
203
+ vapi/types/create_deepgram_credential_dto.py,sha256=zZ1ExL0YocLl8y801i4alwUcY3w2Nl32PrsyVfSNFQ4,1079
204
+ vapi/types/create_dtmf_tool_dto.py,sha256=JUyL6qkVtjSO1LlbsUdMsr1Rfxuyz5YfzcvcZCESgs4,2956
205
+ vapi/types/create_dtmf_tool_dto_messages_item.py,sha256=zE_M3mL1krVhBG3rMULEwWmkcq4q7Gm0bEN4MTsZ2es,417
206
+ vapi/types/create_eleven_labs_credential_dto.py,sha256=i6dL3sVS0e8T_sif4H5tcaI8r9KKkiMGA_1m1JXfHLc,829
207
+ vapi/types/create_end_call_tool_dto.py,sha256=gBKcC5pqHBsdLghyDSsh5n0oRpVH8KLi18KNIC5D6GE,2975
208
+ vapi/types/create_end_call_tool_dto_messages_item.py,sha256=RDhUoPJZrTnpGFNp2WL5i4DRz-_zx7-JDBnoTvHKyaQ,420
209
+ vapi/types/create_function_tool_dto.py,sha256=_-u9kZB6SRoG47A7HSLIQ0S3Ho-OmegjQ94WDH6lda4,2980
210
+ vapi/types/create_function_tool_dto_messages_item.py,sha256=YkrtAETxzOPHSaQDqJoU-293KUZmA25tykmTfQZ1eQw,421
211
+ vapi/types/create_gcp_credential_dto.py,sha256=MEpmNgqTNR4ZWUyaxfVzSMtWU9Ti6qiAYyY2jhcU7SY,1508
212
+ vapi/types/create_ghl_tool_dto.py,sha256=5wB-PBW002uENF-4ODXVOSRPg844n8Or_toTmmuAv0U,3027
213
+ vapi/types/create_ghl_tool_dto_messages_item.py,sha256=mgcI49dTo6A8EgbJXwNHwKy2cH-dotLPLCuf_N40sL8,416
214
+ vapi/types/create_gladia_credential_dto.py,sha256=UQbmPHxVcL9Jxc6RMw2xxr1v6Cuyiq99S7n82J-KjW4,825
215
+ vapi/types/create_go_high_level_credential_dto.py,sha256=6wIL0t78tqky9dZ3y6RM5hLaLEHan2t_5vD5u5La9H0,840
216
+ vapi/types/create_groq_credential_dto.py,sha256=mJmWnoQ1GJo1MO4yZgQRvSQRybpt1dm3s8BLe-BvVus,819
217
+ vapi/types/create_lmnt_credential_dto.py,sha256=UgsROfb3bwuq4Yyez_SBiY9hav-e82iCHfBUl-hPTAM,819
218
+ vapi/types/create_make_credential_dto.py,sha256=mTSpIeu-6USzSbKTYp-SX6dRih1-sDDOoaPlq5yBCkc,1060
219
+ vapi/types/create_make_tool_dto.py,sha256=YzRmYlPJ0ikGGjK6CYYkLCok4oMES9joui5wF78oUSI,3036
220
+ vapi/types/create_make_tool_dto_messages_item.py,sha256=2UaKFpyONyk2QVpuogpagxA_s8jL1wUNYhHx3DZWB6k,417
221
+ vapi/types/create_open_ai_credential_dto.py,sha256=t5UhRtR7wBiHQA7m-vns_vzbQOqU-En8U51rg4A8FWQ,825
222
+ vapi/types/create_open_router_credential_dto.py,sha256=hvDyNPvRnzXNOZTQ9Dw9GPHE1_SlXj4o7EYPP4SQZ3U,837
223
+ vapi/types/create_org_dto.py,sha256=_VgjKBau7H--mRcen5izJPEyjHOXeTCe9Lbx4jbd4r8,2794
224
+ vapi/types/create_outbound_call_dto.py,sha256=xtIS9dNsx2k9mbg4nsmK6RW0QfPAALUh9H269xwDmFQ,4127
225
+ vapi/types/create_output_tool_dto.py,sha256=7fCFiuPfDybYQ9HyRXbgpdS0Ozt5cuxB7dCb_-K2rII,2968
226
+ vapi/types/create_output_tool_dto_messages_item.py,sha256=anwaxFgYcLGEeFHrjulJLPN8oC0ZNAgTevwoRu525HA,419
227
+ vapi/types/create_perplexity_ai_credential_dto.py,sha256=UOnS40xWkFX1yil9J82wn6lhEOsNzdahMAwPzELH_R8,845
228
+ vapi/types/create_play_ht_credential_dto.py,sha256=31iufRtjHI6pzXt29HXPSb_WulrdocLd0mh3PstRXIo,903
229
+ vapi/types/create_rime_ai_credential_dto.py,sha256=hy6sLn2Wh7Ykbh36SiFZ1Hjy9y5Ci8NGUuGkTj-UjrY,827
230
+ vapi/types/create_runpod_credential_dto.py,sha256=HwzIw3gQ7L56VXGMXr-i2p7nozTV3nA9_pjSYK5JW2U,825
231
+ vapi/types/create_s_3_credential_dto.py,sha256=m2xEmJAD7F_3r2emtQC3iLX3usmQzXa10Nu_e9wgInw,1569
232
+ vapi/types/create_squad_dto.py,sha256=cs4SMRrqYUFHOF6rLF8OmH_rpYz61NgWwX97sEDs_gE,1969
233
+ vapi/types/create_together_ai_credential_dto.py,sha256=k828TguvyQjI-rVhn1eK0t1opURdB5Eyqyu8m9RFd08,839
234
+ vapi/types/create_token_dto.py,sha256=fM8lTA11A-qbm_qVDzT69bmCiPqcSI5DdHE1Fvd5qV4,1093
235
+ vapi/types/create_token_dto_tag.py,sha256=z6GgX5o8gtNmK-9pmPyZVUXVelN1LRfJu8og7SF4Rms,162
236
+ vapi/types/create_tool_call_block_dto.py,sha256=1oTxRyKGXXA0-pFdZjB_R9TLGdwioAoGDqePa_pOWY0,3298
237
+ vapi/types/create_tool_call_block_dto_messages_item.py,sha256=wKvzMkhPmO6mA3Oo2yfxLDc2oGIQgYfUTq_xNYwnrA0,279
238
+ vapi/types/create_tool_call_block_dto_tool.py,sha256=qVzPvQ3CWf3VGCsrtvZAA4JppZ-c5Ouu1P25CX040_o,709
239
+ vapi/types/create_tool_template_dto.py,sha256=Y4sNGItoOmttGjGTEPUDutChuC1GdY37U4cD3hL9qzE,1623
240
+ vapi/types/create_tool_template_dto_details.py,sha256=A6VfpbtCbn94zi8Mq5JTXdmYEdr80tI4rJbnuOe0JGw,711
241
+ vapi/types/create_tool_template_dto_provider.py,sha256=dIgf5iyNA45ZnY6iHxjdG5PxN2V8PEX-8GVZW5J9Ixg,188
242
+ vapi/types/create_tool_template_dto_provider_details.py,sha256=YWGQCWKSmjECTsNeiGZTRg7zpuzv2p2XCEGyM3Xl6E0,414
243
+ vapi/types/create_tool_template_dto_visibility.py,sha256=OjC4CDEw_sNF0KaWOxvSFjd1Jk5Q8S8m0wSd4M5YoGI,176
244
+ vapi/types/create_transfer_call_tool_dto.py,sha256=TEHmeSZ_lH7QxJQDwDuF_4Wn3glMLD0-_CG5icfJhs0,3428
245
+ vapi/types/create_transfer_call_tool_dto_destinations_item.py,sha256=5CwSYVz_ak-idKnPrvjKMFxdsAg4yfZcmQAMSQCx6UU,513
246
+ vapi/types/create_transfer_call_tool_dto_messages_item.py,sha256=939fImJ_nFuXRYt2twCUujvm5SDYlSMKh0N-qLMpM7A,425
247
+ vapi/types/create_twilio_credential_dto.py,sha256=AHC05paIurwRQwEwgcRSvx7pa8iWIXLxHNGWdePYnCc,917
248
+ vapi/types/create_twilio_phone_number_dto.py,sha256=FD8rRSTWElIAlgwYz8wdrWjXf9hA1EvuP_lSnDIw1JQ,3764
249
+ vapi/types/create_twilio_phone_number_dto_fallback_destination.py,sha256=ZRonKVsPhQCiXBW5oLWLs5LfZYJjFJ5h-IZg_XcR0j8,320
250
+ vapi/types/create_vapi_phone_number_dto.py,sha256=dr6hjoXKYhdCOxRVzBexOaJz1Z3DypShgGyNZBH1hno,3521
251
+ vapi/types/create_vapi_phone_number_dto_fallback_destination.py,sha256=lix9X3DEA4MRfbhmAGkx_Xx2csrJLsMUp3WqwaCEh00,318
252
+ vapi/types/create_voicemail_tool_dto.py,sha256=R6W74esYjt5RW31OjelYjFm6a9VY3xaYX3bIb_PpvJQ,3195
253
+ vapi/types/create_voicemail_tool_dto_messages_item.py,sha256=OQGYMLh_QEf9AK0ex1MQiZZo-6I5VDA8nSdvs7xlhP0,422
254
+ vapi/types/create_vonage_credential_dto.py,sha256=_2LiVRCaNpCNc26CT7HxqyWtynxTW8XKWVNycjbQ11E,909
255
+ vapi/types/create_vonage_phone_number_dto.py,sha256=VlBdzTUB42ErmH_zPHz0ATuF89oc9szhNSzyG7fuF28,3624
256
+ vapi/types/create_vonage_phone_number_dto_fallback_destination.py,sha256=XuX_1qq7LJQ47qTJ3xHPBSBQl_i96tzmg86R8bWK-YQ,320
257
+ vapi/types/create_web_call_dto.py,sha256=kQndcHB3BQZ8S5OWNSBgRdBW2opL3sL8aLE2WUSjerg,2458
258
+ vapi/types/create_workflow_block_dto.py,sha256=6BhzmtExCPUFqP6rKn7yc17nLr-i4nPyKbgxQnRT5oE,3452
259
+ vapi/types/create_workflow_block_dto_messages_item.py,sha256=euEIu3-cPvulrpgYlARQtnLQ0qEzf0FHq7zPg5DMqf8,279
260
+ vapi/types/create_workflow_block_dto_steps_item.py,sha256=QbJ54FN5Eg38ooo2cptT0dxc4iKMUNjjHE_8RUtqaYo,318
261
+ vapi/types/custom_llm_credential.py,sha256=4BHxBPR2B4afegKFj4e4sfzAMwhcYqamzRkRLwonPVQ,1555
262
+ vapi/types/custom_llm_model.py,sha256=Qkl58NOkj4zUD4XPXY1Ml8IY6MAD6ZPpdqAAMISLKpY,4513
263
+ vapi/types/custom_llm_model_metadata_send_mode.py,sha256=WVYHBSEIoqAQ8Y53g2E-EuIfDn4Ykffn_kkFbvEENZk,189
264
+ vapi/types/custom_llm_model_tools_item.py,sha256=0K23rOzplOKNKdmADsp6RbcTiuZjZfy9voloBmuGANg,706
265
+ vapi/types/deep_infra_credential.py,sha256=9n_ANu2xsZUOVStU-434Bb4lWDOkx3u0IgoTHLSUmb8,1553
266
+ vapi/types/deep_infra_model.py,sha256=R7Zi7gpjQ5z6xasKmQniavW64TDCAUWQAHW8JR30e6M,3311
267
+ vapi/types/deep_infra_model_tools_item.py,sha256=goIf9REMM-0TgeIZWCxNei61qcpvLshweDqjrwjCaCw,706
268
+ vapi/types/deepgram_credential.py,sha256=gHtaKvM9nIqvIUDDmLC2-LaHp4J2ny8dErnPmIhZCZo,1798
269
+ vapi/types/deepgram_transcriber.py,sha256=tP2wo3N0KSVnIOvJZfTB4f8xMep7UhvYLnCYRDmmD4w,3177
270
+ vapi/types/deepgram_transcriber_language.py,sha256=bccAptaWDMYyT0jyrok4I9SHvCpysnhFyXM-Fc1T-2M,1027
271
+ vapi/types/deepgram_transcriber_model.py,sha256=vlxPjdy6Kx-yCi3VG6OqhjFiLptvSRrVFzjT8ej1ZNc,879
272
+ vapi/types/deepgram_voice.py,sha256=s8kU6N-4Qp5bi1-ysAQxity2uMXBbdhaaOjKYuBz4sM,1680
273
+ vapi/types/deepgram_voice_id.py,sha256=5TEn0uGgfcEBi_AYhHXkIAjkLnQ_3ic3zN53LeGAd4k,193
274
+ vapi/types/deepgram_voice_id_enum.py,sha256=OoncVshZ5-8hu8WasHPjiV-UNS0t-itX6ThH2Y8Xc1Y,282
275
+ vapi/types/dtmf_tool.py,sha256=1tNMeo6b5QWF91iTKNBNTcsbtly0MVAqI9I3_DDde6E,3632
276
+ vapi/types/dtmf_tool_messages_item.py,sha256=ULELMXJAre6Tt4f-l1M4oiRm2EbBQQSl9tAXrLS-ezo,402
277
+ vapi/types/eleven_labs_credential.py,sha256=t4onehr-qPTlrh-1UQEse6uciU37rZGnRhrqeNrKZRc,1548
278
+ vapi/types/eleven_labs_voice.py,sha256=vRQaIcFlFmmvIX60EMC4yd2leI5981gvrzTIVuC4qj8,3598
279
+ vapi/types/eleven_labs_voice_id.py,sha256=6BD-m_STQupNGzhJ3gPZkFMOs1kQThMWBWzF6SXwpJQ,202
280
+ vapi/types/eleven_labs_voice_id_enum.py,sha256=L9rlqB6CXYT0UWllyVMFgKHagErphdJuYpgO7tq7JrY,418
281
+ vapi/types/eleven_labs_voice_model.py,sha256=GK242mPCMYVXoAWk3ShI5jMBMpePlwK2q7SuFTUu_e8,246
282
+ vapi/types/end_call_tool.py,sha256=vkEP08qJHqqhzrR396zF628HPv4bo9JUiuah2gxd8Po,3651
283
+ vapi/types/end_call_tool_messages_item.py,sha256=A4EYNEfkRuzgkCyk8vUoCUJ3HOhUgujm9PFVt3fvjaU,405
284
+ vapi/types/error.py,sha256=vvm1JDJxtV77_hsnpD6EFXU1i0Apn1J9rbFsxhxkpgg,551
285
+ vapi/types/exact_replacement.py,sha256=TJ5qGkmTwE49U5elMX_pFwLF9bNquA3vndTSat3eaKI,1427
286
+ vapi/types/file.py,sha256=pNgZYDjM5JFAI3DgZDBouLV9O6evwbfvgy-XhQXs7hY,2074
287
+ vapi/types/file_status.py,sha256=HSH3FWtj3izd_wzD3t9b_IkjcVF-bPhwIF-3smcca9c,160
288
+ vapi/types/format_plan.py,sha256=_a_N7S3CUjLV2BgyTL2U6UoFaIYO3lCFQp5c2AOWXSA,2500
289
+ vapi/types/format_plan_replacements_item.py,sha256=pJmPHGkkq-kNlBnURJIngaQMnP7-0jGItbrKtjAN0bA,254
290
+ vapi/types/function_tool.py,sha256=o3Tta-rSSL5l6Ov6abyvNnheEwIh-gZxC6QshOR3aOI,3656
291
+ vapi/types/function_tool_messages_item.py,sha256=hMEsGvkkqNBo54DDDChM0wC3KyOl7_0ZV0-nT0XPouU,406
292
+ vapi/types/function_tool_provider_details.py,sha256=InkooE0xrxUL2hMIwa0Gjvgv634mJ7QQXRaCab6jeE8,1233
293
+ vapi/types/function_tool_with_tool_call.py,sha256=6Xs-K2iejXPp8sC2aOUsCb_flYITPDjJOFK3aDz6pNM,3204
294
+ vapi/types/function_tool_with_tool_call_messages_item.py,sha256=tR-CkvE7s2m8vyuUGt3-lAsenp8-nI6dXa0V-xC290k,424
295
+ vapi/types/gcp_credential.py,sha256=XG5otIGSbYWP4uBq3JUzkkByDVdqVOj7T69Ts4jFttU,2227
296
+ vapi/types/gcp_key.py,sha256=MdrI8GOqYy7aQxpp3N_A_XIesGVwdQuNlQ7AMvylUm0,2691
297
+ vapi/types/ghl_tool.py,sha256=9cdWq1bb67ODVh_N48mh6vCks_PaQPOUXzhc2U1BHnE,3704
298
+ vapi/types/ghl_tool_messages_item.py,sha256=SdxkiytNLX9hYAcKTXEZs05AY5b0ojOzbEFFvMopZvY,401
299
+ vapi/types/ghl_tool_metadata.py,sha256=emk9K_lB46-d12hRmP2BZpX9d_oXb10WTGALe8qpTkY,834
300
+ vapi/types/ghl_tool_provider_details.py,sha256=3H1Csd5f-Hheh63ScPk7TWpXAi30kVljI48bXBkTARM,1776
301
+ vapi/types/ghl_tool_with_tool_call.py,sha256=pFNm9XusIUbOaIc6XkhqrnDdkVrwx6b9_Os3D-AUCJs,3241
302
+ vapi/types/ghl_tool_with_tool_call_messages_item.py,sha256=5VXfsvUj0SHunq1BgvowxbDOIT6qIAm-8IC9PVtVwUQ,419
303
+ vapi/types/gladia_credential.py,sha256=eszmLLPjlBQOGrYUo9xvhHvQJeEvpUO55Yx8PPorNQ8,1544
304
+ vapi/types/gladia_transcriber.py,sha256=fkBBAD-LJhFt0Hz63fmhMtsoEjp-QKRqdY_7ogQdZng,2517
305
+ vapi/types/gladia_transcriber_language.py,sha256=OGfE5sLUOsBa1sMuLXmjMnA5JFrLLn2MpNXslECzRJE,1570
306
+ vapi/types/gladia_transcriber_language_behaviour.py,sha256=-AVwdw64Wt6wGyG2M_fw0d-GCWbx62AK0LS-Zd3K8lI,235
307
+ vapi/types/gladia_transcriber_model.py,sha256=xRKdkxNgFvLBjTVlhgkXSoLRLdJVa065axNXA3poVW0,166
308
+ vapi/types/go_high_level_credential.py,sha256=b4irP_v__BdHNtfzsbi_Qi7zGcZDfdMWReGUZ9EoUgY,1559
309
+ vapi/types/groq_credential.py,sha256=Ygxx5su4bqKjrbKEMXBMVBlz7DeMvv8cSgiUBV4LB4o,1538
310
+ vapi/types/groq_model.py,sha256=RoZ9gvM7waCJYIdedhvLc-mwkK2C7mkaDPpXjIoJh3o,3336
311
+ vapi/types/groq_model_model.py,sha256=AEwr75V_ubYPowU3ypg81--4kLBnNOvE1wVk8_8RVlM,486
312
+ vapi/types/groq_model_tools_item.py,sha256=dFotcRrPZqVQ6-hzOaGmog6raupj6djFo_JqO3xfus0,701
313
+ vapi/types/handoff_step.py,sha256=d0VbfxRaisMYkcJX4gf5J97iB-tLRu1JdZYzlfsxwYw,4353
314
+ vapi/types/handoff_step_block.py,sha256=dBC6P12Bhz7KrEgnuenTA99mAxn-BJwdEx-rubGTKSM,463
315
+ vapi/types/import_twilio_phone_number_dto.py,sha256=gJK6wFxuVnTDuR23RA1ipeQAyExowGVk0mahM4wTaII,3849
316
+ vapi/types/import_twilio_phone_number_dto_fallback_destination.py,sha256=O3--hXMMGAJh92WGD2Fp0iq7njLmAfaAKTgQTbMUJe4,320
317
+ vapi/types/import_vonage_phone_number_dto.py,sha256=YIovcKTr6DQorYA7s-5Xa0NisMgDw7QgRwuHqyARvV4,3776
318
+ vapi/types/import_vonage_phone_number_dto_fallback_destination.py,sha256=cz4j6Yn65ecWJTkw8-g6l7bnisFn7YX1gwVzFUoRRbI,320
319
+ vapi/types/invite_user_dto.py,sha256=KU_frK9FDqbfBh6msRSXg2wctB5GeszfxxTKYAO8guE,637
320
+ vapi/types/invite_user_dto_role.py,sha256=4R50evRmH5o_jdCjNhZe6QfOafTl5fqkricDudwjUGA,170
321
+ vapi/types/json_schema.py,sha256=XJRv2zF-trl0UQoNq3l47-uzs52g0FursRaYG27W4kQ,2097
322
+ vapi/types/json_schema_type.py,sha256=jFLm6ujEQt0qgDu_GDGkvl_YJpHXd1UUvy6q007tSdA,199
323
+ vapi/types/knowledge_base.py,sha256=GpT0wjwTSatNh0I67uiASYzMW43VcdYEALvc3H0HfY0,861
324
+ vapi/types/lmnt_credential.py,sha256=zuFNUVRclwIpiU3BUSfxqqJOFrhjXmTWGVg8VgSVWT0,1538
325
+ vapi/types/lmnt_voice.py,sha256=8GoTruvut00_ylgWTCrfwr4s3eKkRoi-IiZjGEEfA8I,1790
326
+ vapi/types/lmnt_voice_id.py,sha256=2Pjrmo8nIej3rxO7wzGkIIZKW-ehYSAz59lTKUpCAmw,177
327
+ vapi/types/lmnt_voice_id_enum.py,sha256=fQW4AgeeZRKnswGcv6jALNhaKF9cMDRmakVeSC46LBE,157
328
+ vapi/types/log.py,sha256=bQMcFGDXetG-DK23AIyP93ZPMFy-AHKYW7ed25--O54,5022
329
+ vapi/types/log_request_http_method.py,sha256=Aa3kQA3xWqLCc5SVT5qDvPV52DLVyrvrGXh0IdhBUY8,185
330
+ vapi/types/log_resource.py,sha256=DrilXt7VhqN9CLL6tf1gRc4_PsnViMQYoIlyi6ZrPLM,220
331
+ vapi/types/log_type.py,sha256=_npLiosYB42TlOx4EH59iyP6-cmZQxOGuJPdOXt0xWg,169
332
+ vapi/types/logs_paginated_response.py,sha256=Vx54ircJ5in9w9s2SsQ-Il-PhvnhqajrGnISnz3_k8o,674
333
+ vapi/types/make_credential.py,sha256=0B-R-pH1DsjddHJlifWtipEaed1ycIDjJKh_bkIqa_w,1779
334
+ vapi/types/make_tool.py,sha256=W8yvTKcJ5QSBRHzA95-_-cRFBcydYxBNj1AwiKHs0GM,3713
335
+ vapi/types/make_tool_messages_item.py,sha256=X4SfSgF3-gSGMpIjnWOZodpqDnTsypBCJwA8uuOI6Sg,402
336
+ vapi/types/make_tool_metadata.py,sha256=Pre6mOpbOhCYHNCOszAOX6pUdWBRBbo7ONACLpfKXnU,846
337
+ vapi/types/make_tool_provider_details.py,sha256=N9ludgJS3qgjEpmTec1T2_CG0HaQVckoiBxonN2yMzE,1676
338
+ vapi/types/make_tool_with_tool_call.py,sha256=Mk8jk-W2y5lrQW4UceGKnQ6dVLU408t5yRnearKfqas,3252
339
+ vapi/types/make_tool_with_tool_call_messages_item.py,sha256=mPlDrDb6-H-owguhWWJ8zh38WFLgcay1WMjsG99eGPg,420
340
+ vapi/types/message_plan.py,sha256=jhwVovQOatvU8IqqMdyu3GonnqDMqH9mJ5a8-CtNVZU,2087
341
+ vapi/types/metrics.py,sha256=O1vX3YaRZOiTw844NwqTCZ9Xx6q6SwAr0zYisZmz6rg,2177
342
+ vapi/types/model_based_condition.py,sha256=_XJJDu3j80dlrNyO93HLAzEcR8Ld_aHoHq7hdP0ZC4E,2557
343
+ vapi/types/model_cost.py,sha256=1f0ZD3Mvn4UEA2m9V0fi8TBPWapKwN4Ycto7ZfeIl3g,2008
344
+ vapi/types/monitor.py,sha256=vEhdow_L8UpjXLnPM_D3am8I9L3BNsupMdYGhuzGwyE,1223
345
+ vapi/types/monitor_plan.py,sha256=y2DMA-soUwqZd9keujL0DzpsVLy7NjcyShMetlmEZRM,1524
346
+ vapi/types/neets_voice.py,sha256=ROO3AzZAx7jPbhCA1s7wk3las-PZIuBdfvgRJrNmCzE,1662
347
+ vapi/types/neets_voice_id.py,sha256=ukHQSHNeMPPZNuit5B0xsmYTIz7mNyxw_Scfxa6n8GA,181
348
+ vapi/types/neets_voice_id_enum.py,sha256=7zSJQjPYG_GlwvUp3aF7xTB8JjrINf0437T1b5AlkAE,148
349
+ vapi/types/open_ai_credential.py,sha256=qvvG19FHen_npuKgn0j8EQwDKWdSmhKhVFVyLXj1Sg4,1544
350
+ vapi/types/open_ai_function.py,sha256=fdc7muQGKVSrZ_9qWKms8TAtWXch2hmtNRYKzyOxEzU,1348
351
+ vapi/types/open_ai_function_parameters.py,sha256=4nQa3AdD4vFq-mEUQUdezZ-ZRavx4txBlCIAj6ZWa2Y,1308
352
+ vapi/types/open_ai_message.py,sha256=_f7D_9sAtg46u6lxm0KUgrQF_UflDmT1yleewHEqHJA,663
353
+ vapi/types/open_ai_message_role.py,sha256=NPoTX1u-EInsFbmEQjrsPLswGMbARmwW02ROvlPyn-w,192
354
+ vapi/types/open_ai_model.py,sha256=c60r2ZteebXmp7y-SXqPzSvi1tJP3Arp-zd-Yh4y-ww,4079
355
+ vapi/types/open_ai_model_fallback_models_item.py,sha256=PQMLQaL67aTJkMLhXn86kxeHajjLd6BFbTpMxkx_NJA,635
356
+ vapi/types/open_ai_model_model.py,sha256=CN-WLLL9CEz34HIg8UHdzTwul0L9K7DMHJ8zeykvV4g,622
357
+ vapi/types/open_ai_model_tools_item.py,sha256=gBENLd2S9gcaV9t6hsKflbjIY3pr-i4vfpA88vLhezA,703
358
+ vapi/types/open_ai_voice.py,sha256=Y054RciDDLp77fg_yRvrm7bfm8DhAt-LQIcB51E2RLw,1803
359
+ vapi/types/open_ai_voice_id.py,sha256=V3hxcBEuT7L83pcFFEVOGPAosta74KdI5kSPl8gQRdQ,190
360
+ vapi/types/open_router_credential.py,sha256=rlhdcnp6g5g52-0XJYx3fO2c5JIY0sO3DdOt_pqJMew,1556
361
+ vapi/types/open_router_model.py,sha256=K5kEW_stRonYyS_P2_4Tq3E2otjCWUL8IEDmIn0qFCI,3317
362
+ vapi/types/open_router_model_tools_item.py,sha256=-HG1iyjKJCULNacOzUwmlkY9ccO8EEgaY65aDNVJufQ,707
363
+ vapi/types/org.py,sha256=B6nRKBoln-M_PLvjHHGO88_agRUugq99IUfAT3qzmgA,4657
364
+ vapi/types/org_plan.py,sha256=rydOFSExU1I3acGAptrJrtkt5C1P9pZsc9njzgDocpk,1077
365
+ vapi/types/output_tool.py,sha256=94wqXijuAVrdX4gmpAw5OMW6AEJL2Fe5T_NvT8db2-8,3644
366
+ vapi/types/output_tool_messages_item.py,sha256=0gybmJpa-wSo3pONJQEQQc53QznIA-0ay1wTPtTA82s,404
367
+ vapi/types/pagination_meta.py,sha256=sw_1u9POuvNcHkjRWD6KuuhqFIY9wG7d-gK8ic_tN_M,883
368
+ vapi/types/perplexity_ai_credential.py,sha256=e8vpCw59Na1OML1BmDINDQGULPtnjxdi5gSj5WtcN8A,1564
369
+ vapi/types/perplexity_ai_model.py,sha256=W8srp-o151Z1G0SQvEAImqYRktSAu-b5YMX66mObPdE,3331
370
+ vapi/types/perplexity_ai_model_tools_item.py,sha256=6B95TuN1j2VsEe5ssWRxw_Mwol-7tl0GRqJZPaOaOIo,709
371
+ vapi/types/play_ht_credential.py,sha256=vo2JiY83JoE4Vu3waFclM-GDxvZukEKinRN5HWWG62Q,1622
372
+ vapi/types/play_ht_voice.py,sha256=mcllMBRyUKQ3GiwVuWCdsgQGELE2-e0uCXzJdsHqMBg,3602
373
+ vapi/types/play_ht_voice_emotion.py,sha256=OzSh_XcgZp21Lp9zZ-7vfVaZbOm-oUeh2sValF263jg,448
374
+ vapi/types/play_ht_voice_id.py,sha256=j070oyF92rfqQAVy8xhAv9nJyTEwDWuhAAZnEO9Qd1w,186
375
+ vapi/types/play_ht_voice_id_enum.py,sha256=_xtFDBWaMcUK1lYi-xGMcIo7sSYxQCVxMHCWCoRyleQ,245
376
+ vapi/types/punctuation_boundary.py,sha256=4ENS9gRiTMYypfQMEtJ92sVQQ4iTVu0_4rVQ8ktHZlM,235
377
+ vapi/types/regex_option.py,sha256=WVc-N8TjtI1p2M8OkKV5HhYyhh0d4GEcgWja6AdrGzU,990
378
+ vapi/types/regex_option_type.py,sha256=m-b0kt25qduxYrBosdycOOqou5V2gZaEu5Y7tYUWrdU,182
379
+ vapi/types/regex_replacement.py,sha256=954bD922eoimn9ZxfL28vBkUOC_lzwcl-vkgw7aKwRQ,1829
380
+ vapi/types/rime_ai_credential.py,sha256=m4Gfzlt3jUFiP7j8h-45bCiTgwg0zp-QybrkQA0wzVw,1546
381
+ vapi/types/rime_ai_voice.py,sha256=ev-XTfy2ffVT_GJv2afnA-U97d3cP5rBS-VVyPO9yLg,2026
382
+ vapi/types/rime_ai_voice_id.py,sha256=f5y0_QFL6NoRZ8ahaGEZ_edTbHmLRigVnbYP2W-twvs,186
383
+ vapi/types/rime_ai_voice_id_enum.py,sha256=JxT2cTw329WsA3p8uiM8gbSKOaLHASvhU8a_MO6wDaY,1557
384
+ vapi/types/rime_ai_voice_model.py,sha256=COFGg0MG6CnftQrHtmjSIz7tW3Kzm1aFPdtLUkOALvA,154
385
+ vapi/types/rule_based_condition.py,sha256=NdLY7e1Ww_BrrgJBZgraKOvHfouk5whu7RXj2t4jGxI,4569
386
+ vapi/types/rule_based_condition_operator.py,sha256=kt4pvFgr3JxhY_S1yupXIIAaicI2CbWnXRm-jmNckR8,189
387
+ vapi/types/runpod_credential.py,sha256=9MJOaVizokZ0inAeMY-zJg7jJPQNI2II59zoYSBPmS4,1544
388
+ vapi/types/s_3_credential.py,sha256=k2WFRCzEoYY9zZ4WJ9-cj50m3blXsmSd7zuvEEeP1H8,2288
389
+ vapi/types/sbc_configuration.py,sha256=JoJReGTUhtGHNm5m5oUWv1CTHahGJ2lRoYSRdYg4biM,544
390
+ vapi/types/server.py,sha256=vWagOTaaSM-RHadzIVShujnTlD7ZZZP0wwOBdsHe29A,1241
391
+ vapi/types/server_message.py,sha256=Z1afUq-5V23AP9ehWvHytvKsKXkUWJ2NkrdF2nIlShA,1581
392
+ vapi/types/server_message_assistant_request.py,sha256=3Is1r_IoIPYg5A0g5OVIL9SWiu0XfvTzf5RrNX6yEos,3352
393
+ vapi/types/server_message_assistant_request_phone_number.py,sha256=p0duRkJIoRKWDNpfvFHU38SXo4J78MX9Strb58c3eqA,523
394
+ vapi/types/server_message_conversation_update.py,sha256=NQ-vtpXWMuN9z4bYcBrhIwU05Di7ef1UNIz8pKD4rVQ,4045
395
+ vapi/types/server_message_conversation_update_messages_item.py,sha256=vIWxpA1DEiszjKP_HpcAaS_RTkQ8cpm2X0dRXAvxYY8,448
396
+ vapi/types/server_message_conversation_update_phone_number.py,sha256=cs6Dp-s3cZLxLHxg5zb3WY2SqAZhr2CQlKyoOiAxPO0,525
397
+ vapi/types/server_message_end_of_call_report.py,sha256=DVhokflUlfxJl06sCX0UhHYQzdqDmn8W7gCLNXGCtkg,5001
398
+ vapi/types/server_message_end_of_call_report_costs_item.py,sha256=GIomKkE5mzLmEfSX7UamGVW3SasL_VRoVRyGe3qZFoY,445
399
+ vapi/types/server_message_end_of_call_report_ended_reason.py,sha256=Xp7we067n2qos5vjcnEB4G_mQe07z9UWv9cKlONfHxM,9068
400
+ vapi/types/server_message_end_of_call_report_phone_number.py,sha256=pKQSfMyEPsF6PopAPRlR1n1xZL6IujnQ67xayiDDnXY,522
401
+ vapi/types/server_message_hang.py,sha256=y_npDTgM5-ZG6J-AEAibA0hMt3kKbhraU1IMLekkCzU,3396
402
+ vapi/types/server_message_hang_phone_number.py,sha256=9-lk_CxBlj9Ff7XQQOsSq1lzk0vRNN4Iz1O7dZVIukw,511
403
+ vapi/types/server_message_language_changed.py,sha256=DfNsrh9LKHPJGjnFVcVbvFtBW0guJdT4MYp-pBFpmiU,3475
404
+ vapi/types/server_message_language_changed_phone_number.py,sha256=OE43u_78KP61m0C8ys26BYEGy4aaHzPl2QcM0TUnUzQ,522
405
+ vapi/types/server_message_message.py,sha256=NMmK6mYdsnyGMhcmu8SEYvxXW4KKrZT8_vzWZX9sIiY,1774
406
+ vapi/types/server_message_model_output.py,sha256=7c9XpdK3EhUSHsiq-UEOGa7SVxlUoxyS1tXLSXS6wOE,3424
407
+ vapi/types/server_message_model_output_phone_number.py,sha256=W-YZQTB75tRIMcYHNGsLsVmfBlB3eAAhaK8QVD_G9m8,518
408
+ vapi/types/server_message_phone_call_control.py,sha256=u4YexRlbRHYWvMXvBtXHKx1zK7ZmXyvgV15r7HV3tno,4046
409
+ vapi/types/server_message_phone_call_control_destination.py,sha256=7VR2e9wboEWq_5UtJqTwSLqET8VjYfoPAQRHElds314,315
410
+ vapi/types/server_message_phone_call_control_phone_number.py,sha256=SD188-1hEsu3RCBRLO-_gqBy8yetVYL0vrnPQlPaSyQ,523
411
+ vapi/types/server_message_phone_call_control_request.py,sha256=EnVGTN1vf45C8_tePbEcwEXjipAXAK1HfYmAV7zdWkg,182
412
+ vapi/types/server_message_response.py,sha256=RUJc9PksR_7wuCJijN20w5qH_Fu7Bemcd2DGNwyOMiY,1577
413
+ vapi/types/server_message_response_assistant_request.py,sha256=TfENKGNwHiQJDccQzvi4tQjl_aTt5AMQ0qtsOljW6vw,3514
414
+ vapi/types/server_message_response_assistant_request_destination.py,sha256=6ayyS8FoqLDVREILBcawvjfTUWwiqapxEeYFL2yQqmw,323
415
+ vapi/types/server_message_response_message_response.py,sha256=XTuqSjULtOvRQcpf0JqRT528z6NYdPJ7PM0iFcPQTDI,677
416
+ vapi/types/server_message_response_tool_calls.py,sha256=Fn2HdKip67aIX-aD0FZnJT7YW_ZOYk_eZtpOzF1-W9Y,911
417
+ vapi/types/server_message_response_transfer_destination_request.py,sha256=hacF08QR15G8GLlCfrRulZx1OLZbtOjuKn6IGq8RZx0,1092
418
+ vapi/types/server_message_response_transfer_destination_request_destination.py,sha256=wQjBAS6VUl86EmOIMaKvA55UO3qM9yCiv6ptbYqSaBM,530
419
+ vapi/types/server_message_response_voice_request.py,sha256=Qty2JEs9_tj93SjKJCIv6uvVhcpLzzI1LUghqWELEyM,1362
420
+ vapi/types/server_message_speech_update.py,sha256=yf-l9nCG22Me5C4lf7TkTYXwPbRraMIyRyGRVT_fTMU,3708
421
+ vapi/types/server_message_speech_update_phone_number.py,sha256=UkDnhnYRgY4WRvOFHmHvhkW735KcHbF2NHcTWqyYyBM,519
422
+ vapi/types/server_message_speech_update_role.py,sha256=-DocWkK0Zu6BWG-oXvpOqD0JcT3bYZRBUqrsT9Y3cWI,174
423
+ vapi/types/server_message_speech_update_status.py,sha256=1h7kbUUgEmgmRGvZ827039_hRDxi_tqRlyT5Avyd9_4,177
424
+ vapi/types/server_message_status_update.py,sha256=NfN4Vse8U9AfIsVPUYs0k0h_LRqffImSlvDmga__tR4,5545
425
+ vapi/types/server_message_status_update_destination.py,sha256=uq6KPcSf5rxHb6c2JEHkP151Ju04fN6QwUo-yuRdTF4,311
426
+ vapi/types/server_message_status_update_ended_reason.py,sha256=DNKWrK57cERclFneO-2eIVsl-ChQ3YJXpA8KssLcMSg,9065
427
+ vapi/types/server_message_status_update_messages_item.py,sha256=hacCAWcEsLYYaS4oe9MCAt8FkNyXX8zsSU-C4dVfU5g,442
428
+ vapi/types/server_message_status_update_phone_number.py,sha256=QWxhcLo13mu6Iruw_QSqi_HtFsSHMqO-oIypQTPQGxQ,519
429
+ vapi/types/server_message_status_update_status.py,sha256=2e9fGjD5qX3sb6xMtFTzcGuZd-JmjqT8-a8gCjqLOO0,220
430
+ vapi/types/server_message_tool_calls.py,sha256=JYJIX9Tkwfcab6goysjvrQdXpGhBnACeJUYOquIBfR0,3927
431
+ vapi/types/server_message_tool_calls_phone_number.py,sha256=DHdBsRpuNBrwiuXNRWOWHDaWUSlZIY4YgvRGN90PWxk,516
432
+ vapi/types/server_message_tool_calls_tool_with_tool_call_list_item.py,sha256=lkcHcc3PIbKtGsmq6XJftKlrqhU75BV25iewuFKTPbo,400
433
+ vapi/types/server_message_transcript.py,sha256=XDx4NLW8_0mxjDIKSyKgHz_ksJLXYkhCopw-aHKCZRE,3869
434
+ vapi/types/server_message_transcript_phone_number.py,sha256=ETD_2FtJZlr9a6w9tzCzZaqjngxsgSjae1WcWHr10aM,517
435
+ vapi/types/server_message_transcript_role.py,sha256=4_Z4O-LTl8mqPdlK9CE939Y5iZQ8JKqBRF5_-9qVK0U,172
436
+ vapi/types/server_message_transcript_transcript_type.py,sha256=ysjLkkfp0BML25E9FAtSRm_ozyUkcxoff2USDINY1pg,181
437
+ vapi/types/server_message_transfer_destination_request.py,sha256=amTPQQMPySvUeV7Nfs_xg2SPG0QrpNe0IIAynXHPc28,3503
438
+ vapi/types/server_message_transfer_destination_request_phone_number.py,sha256=6tfJWG-ExZTpeKpjfSW2dRaPuSqkEHqiHUW2jCkrGd0,533
439
+ vapi/types/server_message_transfer_update.py,sha256=qBq5v2HzpMkWzhXwsvF-wczIwsfvYKzLqqxksX_rzXg,4171
440
+ vapi/types/server_message_transfer_update_destination.py,sha256=S5OCYedTR8a8VqQ1VRkA3mxqN30Ttk5zTaRJ3UsHxI0,510
441
+ vapi/types/server_message_transfer_update_phone_number.py,sha256=h3atvkcK2y-KyUwwXn4rGdqRoZs4IOtqqsRG7YaqoxY,521
442
+ vapi/types/server_message_user_interrupted.py,sha256=17arv8U_XWbqc2qpX-6Uu62CNkEB0B9aIdRlMQlBDE8,3324
443
+ vapi/types/server_message_user_interrupted_phone_number.py,sha256=WaJR2o-pv-hEtf_83hrgmnxVIFp17gN36aCbe-LHgEo,522
444
+ vapi/types/server_message_voice_input.py,sha256=FaDTOxoynR2Kk6Xlh0GSTzjvE9HDa5J5XFf5BB8FB3Q,3358
445
+ vapi/types/server_message_voice_input_phone_number.py,sha256=g4dHArjfnPdhl_IPqAgFf4a-ZshyKhPwdriw92W3Zg0,517
446
+ vapi/types/server_message_voice_request.py,sha256=-zDWrwjL67r1_Z8BkkOCvRFG6pQ-MNvxN-JNUH77vss,4136
447
+ vapi/types/server_message_voice_request_phone_number.py,sha256=KW-YWSWiuAxE8znOqCAdI3ztpymJIHsMwX0Cp6358eM,519
448
+ vapi/types/sip_trunk_gateway.py,sha256=r16lZYt48m-Dr1mj18_wg97Q-YQAwr_zL3e0nRiumNU,2763
449
+ vapi/types/sip_trunk_gateway_outbound_protocol.py,sha256=iez8k04IML8lzaszCNtyLgmvGWXDPMJLm5Xrkd8jSY0,188
450
+ vapi/types/sip_trunk_outbound_authentication_plan.py,sha256=vS3HKxTp5e0t_Eec27pzRcySNDxhrJTYs1fyOMNY0tI,1375
451
+ vapi/types/sip_trunk_outbound_sip_register_plan.py,sha256=tYu9BTe5Kzj6PEvnbruWdAVf7J7zjEe3LQUfoug0rQ8,681
452
+ vapi/types/squad.py,sha256=-F5QlGZ2qHLFJkyeo-GC_9-o2Rwvr6u8CfmKl5SEH7w,2615
453
+ vapi/types/squad_member_dto.py,sha256=OF7Z9TqaL93nf-jyeWTqvgaYz_yOGDTytaPU0G26r6Y,2437
454
+ vapi/types/start_speaking_plan.py,sha256=y4RDPtQU_-WzrdeKcqYPGqRTynD2zBTc-r2zGn7_4sQ,2401
455
+ vapi/types/step_destination.py,sha256=NzYJ50EnyRGj6MWDKdP7wdbeDjGb3qVl9g9grDHYsEk,1108
456
+ vapi/types/step_destination_conditions_item.py,sha256=LdGv6Kt0AeBnDHmBS9jAObtBVxpwrYirI96XUIL9q30,274
457
+ vapi/types/stop_speaking_plan.py,sha256=dFMLu-s-S2Z_ZmMADDtxdzMoa5wd3S5dmQrItYD3xQI,2234
458
+ vapi/types/structured_data_plan.py,sha256=x67Yv3k7e2nN76q2FFBe3J54Xs2pJkw4e2L12eR05Cc,2843
459
+ vapi/types/success_evaluation_plan.py,sha256=qUI5Lj_ytIRxv1O6d_qt-fqmABgRhXjLUyroKqOhT9I,3542
460
+ vapi/types/success_evaluation_plan_rubric.py,sha256=G_9_d7haGzu2LgAJVUas585p0pCwMeHVa_zz1c2MrBQ,357
461
+ vapi/types/summary_plan.py,sha256=VtNTqJB-Sg6JPpJAb4dg0oSxIwu6QDnPXe63TVDw1n4,2198
462
+ vapi/types/sync_voice_library_dto.py,sha256=HZtlssM3HJJeOPKdHGAbW_egQE7xOx93v7C4XX4-8dM,797
463
+ vapi/types/sync_voice_library_dto_providers_item.py,sha256=lA4cSxDe59vuVRChCI5Ykg8QVbfVLBrpc7v0FeJsfbk,288
464
+ vapi/types/system_message.py,sha256=PMfoesfbtUb0uQa_Q3272C5jPBeiyoQ0GVwbfSS3ez4,1100
465
+ vapi/types/talkscriber_transcriber.py,sha256=gFVkR1tETWZh-zUAymoq1mmF0yOz5XBE-o_AY_AP-Yw,1249
466
+ vapi/types/talkscriber_transcriber_language.py,sha256=h5y2IG9O5y8gqk76ib-AdXm2hQzB7_R6wR_Ead4Cl-4,1574
467
+ vapi/types/template.py,sha256=_WyIKHQ8rozxvYcuWzEftKoCLnKTNb85xXwYhpzyvmY,2139
468
+ vapi/types/template_details.py,sha256=llqEqz2eml8dWHvp3PVGKLQJ2pbjb_DgkNK4_Q4SiPc,698
469
+ vapi/types/template_provider.py,sha256=O1jbHcItUSGIVQX-voipi112zIYqeMZRsE7KH7XOgOc,175
470
+ vapi/types/template_provider_details.py,sha256=XlP6o6MLx7AsVpepiZSzKb92J_uUv0MVu90hvwr7L5k,395
471
+ vapi/types/template_visibility.py,sha256=EpzlHMMZN6256F4zSFwYoxAZm_JMcrNJK39ZiWj_bbU,163
472
+ vapi/types/time_range.py,sha256=GiVpPZwwSQCNubQZF7dDOjLRmCOQOEei_0Ha6y7H_6k,1355
473
+ vapi/types/time_range_step.py,sha256=JdyV163pyDzJR8e4y8EupNaqc66FGlNjgx-TvGhvtaU,244
474
+ vapi/types/together_ai_credential.py,sha256=YFZsTcy_-d7cPKNacSSYDWZ_YL-v0nf-XvTo9wjcYNM,1558
475
+ vapi/types/together_ai_model.py,sha256=YUwiImRi_W8G-CXNKRJILmXrvjJtKC98X1mD2kDfn9U,3319
476
+ vapi/types/together_ai_model_tools_item.py,sha256=QntgeIWdV1ScTgSGDklixkyyFuD-gFl2e5t8C7juVZE,707
477
+ vapi/types/token.py,sha256=xLHfZIN450dUOm5KkljwxCfSe7DsmMVJjWt07rsqEuE,1910
478
+ vapi/types/token_restrictions.py,sha256=Qmx-Nx2Rn_Ij4NSCLqniaEvV0rrK3j5q-bl7y2aYG0U,1885
479
+ vapi/types/token_tag.py,sha256=g54NXemaNhtLQcLvlpCAX-JEk2x_T3P0zFCXHzoXgcU,153
480
+ vapi/types/tool_call.py,sha256=bykqyAm45plSinMUyhUKq4if0BTB8HJO95TyM99Dk2Q,934
481
+ vapi/types/tool_call_block.py,sha256=vaxMvLuNCIJcfJ_HZrpriXsDUyLq_pDIyv7_a47bxcI,3949
482
+ vapi/types/tool_call_block_messages_item.py,sha256=16fazogWJ0h0zhuAaIDoSgg9SHWvdrq26q7tYxhHDZQ,270
483
+ vapi/types/tool_call_block_tool.py,sha256=JR84vKW_OAwkYroWju4_fqsg37H_xtW15HgA9giiV3Y,700
484
+ vapi/types/tool_call_function.py,sha256=IlMs1jpHHcIwj4naHLEE3vLYZvuFWqiOJHLjUhkQIQ0,809
485
+ vapi/types/tool_call_message.py,sha256=eiY_GbfY1M-NVSOTWTNIkKcptE4XpXQXFXtxIw2phvI,1352
486
+ vapi/types/tool_call_result.py,sha256=3E26THjO8-kBshs4MxNrcOQpa5hij494s5TL1tU8-Ps,2226
487
+ vapi/types/tool_call_result_message.py,sha256=Qw9SOdtIF6LhCg3KTghgNde5DxQUOF9Thf-1hUp2x7c,1376
488
+ vapi/types/tool_call_result_message_item.py,sha256=wmFsYhWd0U2ZwQfOERPbxBYa9xao3pU1sWwtdGr_4xI,267
489
+ vapi/types/tool_message_complete.py,sha256=4EDNjyr7D-AwydkwKpSCyHcD0M5UPuV5QJ8-5atpknQ,2610
490
+ vapi/types/tool_message_complete_role.py,sha256=5h2zfBR-_OCJOWE4CWscDGp_IiCwEPyiTcyK-2C81GM,170
491
+ vapi/types/tool_message_delayed.py,sha256=CWJZ4sYYWh_hvWKZINFa6-1-xRpyboVmpShe3IWjjqw,1793
492
+ vapi/types/tool_message_failed.py,sha256=sUhLu3h9jRUgxB4iH3si4UDRAZ0bUn4XXXfSdPzcVTc,1807
493
+ vapi/types/tool_message_start.py,sha256=OgXyRFpfekbO6afmvjlV2aFslhGNXag6yFMZRMWduQ0,1340
494
+ vapi/types/tool_template_metadata.py,sha256=qhOOzffsVr4bwRJpVDzxJXkzDzER0zgllXIf-Y9quag,968
495
+ vapi/types/tool_template_setup.py,sha256=IDy2IRFPg6YGUjSUJINpnCNYHoLbg_fR8cTBQQIAHLQ,886
496
+ vapi/types/transcriber_cost.py,sha256=TJlkgJ9A4r3GoLpnDEQzpsRpGdTjzhMkPFKiDJdsrpg,1553
497
+ vapi/types/transcript_plan.py,sha256=5l-s9Q7NKhI6g8wCmy9RpCEuApCQ41TxFDAStZcNuzI,1972
498
+ vapi/types/transcription_endpointing_plan.py,sha256=8f9B4bi4zzyGAHC5uaqooHFhAmJDk2vZgBXhLuqLQoU,2273
499
+ vapi/types/transfer_call_tool.py,sha256=Hck6XfeOfSQ8XJlDTzejyHakdPs6Q1bb8KwZ5APGwa4,4075
500
+ vapi/types/transfer_call_tool_destinations_item.py,sha256=9kN2l1PLiUgC7ffoyMDwNomCezqVSeFNJ1TEVb1x3YY,504
501
+ vapi/types/transfer_call_tool_messages_item.py,sha256=M5UZ0u5U9M0EUUy-B5UwC04FaL-P04TYuIiY3uZb-Eo,416
502
+ vapi/types/transfer_destination_assistant.py,sha256=gN0yB_O3mEmESADlQdbPbEKFpctbbhCbwwxameEAVwg,3621
503
+ vapi/types/transfer_destination_number.py,sha256=VwxLCVZniGTbkq-35Ri0ZDTQ81OMPJhJVgguzLWL9cU,3528
504
+ vapi/types/transfer_destination_sip.py,sha256=GeKIZsJjeJ2RNo9xZR3BMg1iXP_4n6ie9q3_Iy68GmE,1623
505
+ vapi/types/transfer_destination_step.py,sha256=eGEvbI7VUEllfMY9S28EQMk2TmnhEqdZxundhHGcuO0,1618
506
+ vapi/types/transfer_mode.py,sha256=cA9u2OlXo80p2CONVVcFTGT9SrNLBB4jwnGSuWPSaz0,189
507
+ vapi/types/transport_configuration_twilio.py,sha256=4K0St8yaf-nlfyYU63gb076xU2CGIuxf4A59S7JguBc,2247
508
+ vapi/types/transport_configuration_twilio_recording_channels.py,sha256=IXxezCpSychXJz9k7-02lFMrLJn11SNFTN-vgLb7xj0,185
509
+ vapi/types/transport_cost.py,sha256=BP0xqIUc7rxAcliMtghwzP7_drwfQKfsMGovq0BT6h0,951
510
+ vapi/types/twilio_credential.py,sha256=eOjoJP4Zu3YQyNxce8G-bjk_hmKMIrPHUx9UVl-6mlQ,1636
511
+ vapi/types/twilio_phone_number.py,sha256=nMEEsl79QBCa4GjITtHNiSFE-ku-wSWG2NppVCJYc0E,4463
512
+ vapi/types/twilio_phone_number_fallback_destination.py,sha256=JA1IbopIhjh8ul9CdWk6udqKAZrQUeJnnpHrKsT62fU,311
513
+ vapi/types/twilio_voicemail_detection.py,sha256=1SzY8h2N5w9FVdYVdjEU-rpyJS6x4fSZ_YVJSPQPR0g,6429
514
+ vapi/types/twilio_voicemail_detection_voicemail_detection_types_item.py,sha256=Ckcr0mNy3e51a--BEQcWSRp9iDAmYmGghpeiDRZRjdg,308
515
+ vapi/types/update_anthropic_credential_dto.py,sha256=aKtwvoyZSqxBfP1xDmEucQaW6nwRK_vWPa4BO7aece4,834
516
+ vapi/types/update_anyscale_credential_dto.py,sha256=G0kepJ5QK-ERsWpEQTWLzvUHeiCHw_A5hgG-mPfU9bc,831
517
+ vapi/types/update_azure_open_ai_credential_dto.py,sha256=sFdtVAP33hgUYICv1u477X49MKI7J2UGIEmAkHpsINM,1254
518
+ vapi/types/update_azure_open_ai_credential_dto_models_item.py,sha256=FIe_lbmWo1x853otXXz-l1w2LnsG1xToCj2J7yIeHNM,419
519
+ vapi/types/update_azure_open_ai_credential_dto_region.py,sha256=h7L2ICys3nlln4abth-1nR3VAkvxLyTlE1GrPfyUURQ,468
520
+ vapi/types/update_byo_sip_trunk_credential_dto.py,sha256=g1UQF0VBfOnQ90xDzu_bDj-vnOWksyg0OjHqTYDykNE,2423
521
+ vapi/types/update_cartesia_credential_dto.py,sha256=dEy4pvnDKzXA6Za9ZIs79hTZ91QHA28Hqzo3Qdq6kiA,831
522
+ vapi/types/update_custom_llm_credential_dto.py,sha256=_sg8tLkpsBK5mwovMKaNO9Yi_dBlX7YwaH54FlYGjug,836
523
+ vapi/types/update_deep_infra_credential_dto.py,sha256=5O1x9_umtZAg6X_HHUKl1XktVA5onuhm6n5uovCSX1w,834
524
+ vapi/types/update_deepgram_credential_dto.py,sha256=eQABZy_L7UmnshJ8hsqJWypHYQ01pMOzs5ySFWJt-XY,1079
525
+ vapi/types/update_eleven_labs_credential_dto.py,sha256=xJG_GsDlTnrcC4W35uIXcu_h4NDfZTpoEVS6djdav1c,829
526
+ vapi/types/update_gcp_credential_dto.py,sha256=K-lrfAfaev-GxD8HPpSRkJYrT9fsrpQnvBWUKsDoJZ4,1508
527
+ vapi/types/update_gladia_credential_dto.py,sha256=FUVxfvXNXS9lw5s8gaYpxf4KYFsv9COHZD-fk3yX7c4,825
528
+ vapi/types/update_go_high_level_credential_dto.py,sha256=3mMThIV6M1BceFTyPE7heDT5-EvZePugoiZfBJUNorU,840
529
+ vapi/types/update_groq_credential_dto.py,sha256=vzqzTlMOVuGuP5jqf_PfJXJlSy0sxsK8CxSvWVfHuZ8,819
530
+ vapi/types/update_lmnt_credential_dto.py,sha256=CgwoJ7oZR5PUeQ77uU_tWfXA6g-JsJuhG8S9BGkrPbA,819
531
+ vapi/types/update_make_credential_dto.py,sha256=90OWkUiej9Ioxymp5Xpyn8Ez4gVgDAjYgxjYptoemME,1060
532
+ vapi/types/update_open_ai_credential_dto.py,sha256=Abkcp-896hNQj4H1PsAW53ewctn2sB5-XPt-uLmYvjw,825
533
+ vapi/types/update_open_router_credential_dto.py,sha256=o-7lWGurzA4xPw5Cj_vU3PUcjPoOWHhnyLESive3fhE,837
534
+ vapi/types/update_org_dto.py,sha256=SxvOTFMzcLe8pFbr1kv8quFsGX6sIoAWvIH-C0uKoxE,2794
535
+ vapi/types/update_perplexity_ai_credential_dto.py,sha256=W9N0pJ7ZdLqrcssueeh0qp7ST807O2i1QbkeCbKmFoU,845
536
+ vapi/types/update_play_ht_credential_dto.py,sha256=D80gWohJ3nyxarewghvYiMMDex3SAD12L-QwBA6LKLU,903
537
+ vapi/types/update_rime_ai_credential_dto.py,sha256=g99uDyADeEPyRHX6ae3AStV0dqlnNxpDTVinc290xn8,827
538
+ vapi/types/update_runpod_credential_dto.py,sha256=KIsjeEmgwOZg56qUqXuNQBG6BDcXWuPJSx-CtE5rfdk,825
539
+ vapi/types/update_s_3_credential_dto.py,sha256=Q1aGqZpxQAhIc5dz-19Cb5dFLm9BwlWfvxGnGE_sRy4,1569
540
+ vapi/types/update_together_ai_credential_dto.py,sha256=sih45P4PkSV54JKLJrsW4Ak8eYUOvp4BXh1Ui63N-xc,839
541
+ vapi/types/update_tool_template_dto.py,sha256=6Efd1QWCiimcm3NHeClhOJ_Wl4grBhEgOReXOKvexRE,1623
542
+ vapi/types/update_tool_template_dto_details.py,sha256=UOoVMzf9-5tY1sa55SlNSEz2AbxB5TaB2-pe2XlIYoQ,711
543
+ vapi/types/update_tool_template_dto_provider.py,sha256=Y91-oSCTV6vY5y-oOGnxJ-8V6OWBxE4dIlxroI3afug,188
544
+ vapi/types/update_tool_template_dto_provider_details.py,sha256=FgUzU7dHYEqCxnzxcCDtvtJA2bH14mUk-IcbkYQNdEY,414
545
+ vapi/types/update_tool_template_dto_visibility.py,sha256=KbwNq9R78RDUb4CUSWGP7rAsSUWQQVwum-HpjJLZSqA,176
546
+ vapi/types/update_twilio_credential_dto.py,sha256=KtdkNPnEa95pKFJiRUXBQLA8CbcDul_Lpm0zLKVFkDA,917
547
+ vapi/types/update_user_role_dto.py,sha256=OYJvt2Ery6XEy_9hxGRTXAvAm2p49yQyMeMs4s7jZg4,788
548
+ vapi/types/update_user_role_dto_role.py,sha256=6VRKxlxODTKWbvGhaBFYpRHDVc6mv9sY0AfNwMQPKHk,174
549
+ vapi/types/update_vonage_credential_dto.py,sha256=WFlwwt3AoTraLWBGmNOIGT74ZWUx0oqBfpraR7HazbE,909
550
+ vapi/types/user.py,sha256=iSJZj__7VENYknCDHTn8VAZ30Gr90nvFFtN_YSU5aM0,1499
551
+ vapi/types/user_message.py,sha256=7Vx8f4yVeoGTvUpg_-1v3Eh93w1j7bKMm8Psoh54Mq0,1382
552
+ vapi/types/vapi_cost.py,sha256=dfBjx1EPr7vSLljONJMAFaqnwCeD5_XK9N9Hrqlt6rU,924
553
+ vapi/types/vapi_model.py,sha256=rDzrjL4Qvl2c36V7bo805DFHooPMIuBy2lb0UFwsAjw,3810
554
+ vapi/types/vapi_model_steps_item.py,sha256=1mIifS6b9JvVaBDV04NUAinalILBgNrZrqQlEruaX5Y,219
555
+ vapi/types/vapi_model_tools_item.py,sha256=3mGpERcVRaSAkD04gGx41b4CJd_YOTP2Pm9-jz4l4MU,701
556
+ vapi/types/vapi_phone_number.py,sha256=ja5nSCvL5Cu9ZfVI70F_YfMJ751R1XjHemAxZXBnGgc,4220
557
+ vapi/types/vapi_phone_number_fallback_destination.py,sha256=yIamZN9joFf-Bxm21l7l9OBnKkvnUkcD0PV4UYBELzI,309
558
+ vapi/types/voice_cost.py,sha256=j30ICsAVIFLW5rROj6XdEuDa-UR8IyxrEg_oRThSlyc,1506
559
+ vapi/types/voice_library.py,sha256=B-8Kd372u77Ixv_oacAneF2zqtS4wzwS0gKNW0Tdqr0,3731
560
+ vapi/types/voice_library_gender.py,sha256=HanyEKdbmNuIcTnsl2RH6VfDk7Cj0Gj7qj9sAgWG2E4,160
561
+ vapi/types/voice_library_voice_response.py,sha256=7elQXLZ-7OsEK45KTvST5_3RS0d-sA79gqNgi1lfWjY,1039
562
+ vapi/types/vonage_credential.py,sha256=o1eiKjoqBV2ORc9Ywhaj68mZUeNHC3G60S6jYtUGsa4,2097
563
+ vapi/types/vonage_phone_number.py,sha256=HoWhPw0WWGQ62IA924YeTUYp88vluWu2fIGSOPWjuEw,4323
564
+ vapi/types/vonage_phone_number_fallback_destination.py,sha256=s9S8081P123BKsUbn-9pb-HJ7MZHaP6liW7Ov8y5U28,311
565
+ vapi/types/workflow_block.py,sha256=wDhYz9kiasBX3mrU1QufjUYUblx2ayfOVXZTCSV3mGU,4113
566
+ vapi/types/workflow_block_messages_item.py,sha256=t7iNNGB-14AMQ_c8pN4Z5Pn5yA_ymFe3PMN4s2Dq49k,270
567
+ vapi/types/workflow_block_steps_item.py,sha256=QNPoNvSCZBJjBM3wexvuZdAA-RKzRRkuPScbOTBsgSU,223
568
+ vapi/version.py,sha256=NeX2wVDKqY6rjPPDW9NysNkrvCbkH60pXDCHxj7Qm1w,82
569
+ vapi_server_sdk-0.0.0a7.dist-info/METADATA,sha256=03GL6E2_Fr_IXdw_e77rGVWr77oNVABjky57nHIaPmM,4730
570
+ vapi_server_sdk-0.0.0a7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
571
+ vapi_server_sdk-0.0.0a7.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.6.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any