casedev 0.1.0__py3-none-any.whl → 0.2.0__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 (135) hide show
  1. casedev/_base_client.py +140 -11
  2. casedev/_client.py +290 -119
  3. casedev/_models.py +16 -1
  4. casedev/_types.py +12 -2
  5. casedev/_version.py +1 -1
  6. casedev/resources/__init__.py +0 -70
  7. casedev/resources/compute/v1/__init__.py +0 -42
  8. casedev/resources/compute/v1/environments.py +16 -19
  9. casedev/resources/compute/v1/secrets.py +35 -41
  10. casedev/resources/compute/v1/v1.py +14 -276
  11. casedev/resources/format/v1/templates.py +11 -13
  12. casedev/resources/llm/llm.py +6 -7
  13. casedev/resources/llm/v1/v1.py +11 -13
  14. casedev/resources/ocr/v1.py +10 -13
  15. casedev/resources/search/v1.py +6 -7
  16. casedev/resources/vault/graphrag.py +11 -13
  17. casedev/resources/vault/objects.py +20 -25
  18. casedev/resources/vault/vault.py +64 -28
  19. casedev/resources/voice/streaming.py +6 -7
  20. casedev/resources/voice/transcription.py +82 -23
  21. casedev/resources/voice/v1/speak.py +1 -195
  22. casedev/resources/voice/v1/v1.py +6 -7
  23. casedev/types/__init__.py +2 -0
  24. casedev/types/compute/__init__.py +1 -2
  25. casedev/types/compute/v1/__init__.py +7 -5
  26. casedev/types/compute/v1/environment_list_response.py +40 -0
  27. casedev/types/compute/v1/environment_retrieve_response.py +36 -0
  28. casedev/types/compute/v1/environment_set_default_response.py +36 -0
  29. casedev/types/{convert/v1_webhook_response.py → compute/v1/secret_delete_group_response.py} +3 -3
  30. casedev/types/compute/v1/secret_list_response.py +31 -0
  31. casedev/types/compute/v1/secret_retrieve_group_response.py +38 -0
  32. casedev/types/compute/v1/secret_update_group_response.py +22 -0
  33. casedev/types/compute/v1_get_usage_response.py +51 -0
  34. casedev/types/format/v1/__init__.py +2 -0
  35. casedev/types/format/v1/template_list_response.py +40 -0
  36. casedev/types/format/v1/template_retrieve_response.py +33 -0
  37. casedev/types/llm/__init__.py +2 -0
  38. casedev/types/llm/v1_create_embedding_response.py +31 -0
  39. casedev/types/llm/v1_list_models_response.py +41 -0
  40. casedev/types/llm_get_config_response.py +33 -0
  41. casedev/types/ocr/__init__.py +2 -0
  42. casedev/types/ocr/v1_download_response.py +7 -0
  43. casedev/types/ocr/v1_process_params.py +2 -0
  44. casedev/types/ocr/v1_retrieve_response.py +32 -0
  45. casedev/types/search/__init__.py +1 -0
  46. casedev/types/search/v1_retrieve_research_response.py +74 -0
  47. casedev/types/vault/__init__.py +6 -0
  48. casedev/types/vault/graphrag_get_stats_response.py +31 -0
  49. casedev/types/{workflows/v1_delete_response.py → vault/graphrag_init_response.py} +6 -2
  50. casedev/types/vault/object_download_response.py +7 -0
  51. casedev/types/vault/object_get_text_response.py +35 -0
  52. casedev/types/vault/object_list_response.py +64 -0
  53. casedev/types/vault/object_retrieve_response.py +57 -0
  54. casedev/types/vault_create_params.py +16 -1
  55. casedev/types/vault_create_response.py +5 -2
  56. casedev/types/vault_ingest_response.py +15 -5
  57. casedev/types/vault_retrieve_response.py +76 -0
  58. casedev/types/vault_search_params.py +19 -5
  59. casedev/types/vault_search_response.py +25 -1
  60. casedev/types/vault_upload_params.py +7 -0
  61. casedev/types/vault_upload_response.py +6 -0
  62. casedev/types/voice/__init__.py +3 -0
  63. casedev/types/voice/streaming_get_url_response.py +44 -0
  64. casedev/types/voice/transcription_create_params.py +23 -3
  65. casedev/types/voice/transcription_create_response.py +22 -0
  66. casedev/types/voice/transcription_retrieve_response.py +19 -17
  67. casedev/types/voice/v1/__init__.py +0 -1
  68. casedev/types/voice/v1/speak_create_params.py +2 -0
  69. casedev/types/voice/v1_list_voices_response.py +40 -0
  70. casedev/types/webhooks/__init__.py +0 -3
  71. {casedev-0.1.0.dist-info → casedev-0.2.0.dist-info}/METADATA +10 -13
  72. casedev-0.2.0.dist-info/RECORD +149 -0
  73. {casedev-0.1.0.dist-info → casedev-0.2.0.dist-info}/licenses/LICENSE +1 -1
  74. casedev/resources/actions/__init__.py +0 -33
  75. casedev/resources/actions/actions.py +0 -102
  76. casedev/resources/actions/v1.py +0 -640
  77. casedev/resources/compute/v1/functions.py +0 -278
  78. casedev/resources/compute/v1/invoke.py +0 -216
  79. casedev/resources/compute/v1/runs.py +0 -290
  80. casedev/resources/convert/__init__.py +0 -33
  81. casedev/resources/convert/convert.py +0 -102
  82. casedev/resources/convert/v1/__init__.py +0 -33
  83. casedev/resources/convert/v1/jobs.py +0 -254
  84. casedev/resources/convert/v1/v1.py +0 -450
  85. casedev/resources/templates/__init__.py +0 -33
  86. casedev/resources/templates/templates.py +0 -102
  87. casedev/resources/templates/v1.py +0 -633
  88. casedev/resources/webhooks/__init__.py +0 -33
  89. casedev/resources/webhooks/v1.py +0 -447
  90. casedev/resources/webhooks/webhooks.py +0 -102
  91. casedev/resources/workflows/__init__.py +0 -33
  92. casedev/resources/workflows/v1.py +0 -1053
  93. casedev/resources/workflows/workflows.py +0 -102
  94. casedev/types/actions/__init__.py +0 -8
  95. casedev/types/actions/v1_create_params.py +0 -22
  96. casedev/types/actions/v1_create_response.py +0 -33
  97. casedev/types/actions/v1_execute_params.py +0 -16
  98. casedev/types/actions/v1_execute_response.py +0 -31
  99. casedev/types/compute/v1/function_get_logs_params.py +0 -12
  100. casedev/types/compute/v1/function_list_params.py +0 -12
  101. casedev/types/compute/v1/invoke_run_params.py +0 -21
  102. casedev/types/compute/v1/invoke_run_response.py +0 -39
  103. casedev/types/compute/v1/run_list_params.py +0 -18
  104. casedev/types/compute/v1_deploy_params.py +0 -114
  105. casedev/types/compute/v1_deploy_response.py +0 -30
  106. casedev/types/convert/__init__.py +0 -8
  107. casedev/types/convert/v1/__init__.py +0 -3
  108. casedev/types/convert/v1_process_params.py +0 -15
  109. casedev/types/convert/v1_process_response.py +0 -19
  110. casedev/types/convert/v1_webhook_params.py +0 -32
  111. casedev/types/templates/__init__.py +0 -8
  112. casedev/types/templates/v1_execute_params.py +0 -22
  113. casedev/types/templates/v1_execute_response.py +0 -31
  114. casedev/types/templates/v1_list_params.py +0 -32
  115. casedev/types/templates/v1_search_params.py +0 -18
  116. casedev/types/voice/v1/speak_stream_params.py +0 -58
  117. casedev/types/webhooks/v1_create_params.py +0 -20
  118. casedev/types/webhooks/v1_create_response.py +0 -33
  119. casedev/types/workflows/__init__.py +0 -19
  120. casedev/types/workflows/v1_create_params.py +0 -32
  121. casedev/types/workflows/v1_create_response.py +0 -29
  122. casedev/types/workflows/v1_deploy_response.py +0 -20
  123. casedev/types/workflows/v1_execute_params.py +0 -12
  124. casedev/types/workflows/v1_execute_response.py +0 -22
  125. casedev/types/workflows/v1_list_executions_params.py +0 -13
  126. casedev/types/workflows/v1_list_executions_response.py +0 -27
  127. casedev/types/workflows/v1_list_params.py +0 -18
  128. casedev/types/workflows/v1_list_response.py +0 -37
  129. casedev/types/workflows/v1_retrieve_execution_response.py +0 -31
  130. casedev/types/workflows/v1_retrieve_response.py +0 -35
  131. casedev/types/workflows/v1_undeploy_response.py +0 -13
  132. casedev/types/workflows/v1_update_params.py +0 -26
  133. casedev/types/workflows/v1_update_response.py +0 -17
  134. casedev-0.1.0.dist-info/RECORD +0 -185
  135. {casedev-0.1.0.dist-info → casedev-0.2.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,149 @@
1
+ casedev/__init__.py,sha256=UkP1XDtNpnhOcNXZjOB8ukFbVQiEL3HWo8Lj3MHGnGA,2712
2
+ casedev/_base_client.py,sha256=-kMYh3MrH_hOP8Iq0vqCgEJKzqszn84hnryaB3t8rfU,73410
3
+ casedev/_client.py,sha256=WA2_XrWgJ49ZCj9_vGkpVjROLBvDMjHhKTf_wMwHSqs,26647
4
+ casedev/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ casedev/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ casedev/_exceptions.py,sha256=ogzS49IDpbF8ey4N4yHA_w9PokWYmb9myVoUBhkPXLU,3222
7
+ casedev/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
+ casedev/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
+ casedev/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ casedev/_resource.py,sha256=sZ5sor2iGh4eKPHmeZYWJk_y65agoPfjhBe8Z9An2ho,1106
11
+ casedev/_response.py,sha256=_rPM1FDpM6zxzSnKVNT_nskmX8VlfYmxhAGTrafX_HQ,28794
12
+ casedev/_streaming.py,sha256=MQuBwJtKGgIm6qxaFtjOMbscXR6sHYGq6mapqmmrTvk,10225
13
+ casedev/_types.py,sha256=hj6NhkS3QrFP768PjSj6SpOgBxmRij1T48P6VvXj-xs,7595
14
+ casedev/_version.py,sha256=8aB6MhxdfvqUWLBdg_G9Gd4Cs8Tpe0oQi0_WUnjAtcI,159
15
+ casedev/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ casedev/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
+ casedev/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
+ casedev/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
+ casedev/_utils/_logs.py,sha256=Mjmeyz_LyK3GIXGPwZfxPpacp3DiQYiqVf8NHNNzRSY,777
20
+ casedev/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
+ casedev/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
+ casedev/_utils/_resources_proxy.py,sha256=uADykbWEfeCDcHhcvxOrdHmbbEujLNmi9KD0EuO58oI,594
23
+ casedev/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
+ casedev/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
+ casedev/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
+ casedev/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
+ casedev/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
28
+ casedev/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
+ casedev/resources/__init__.py,sha256=9Qdj_A7TulVyHewBJc-UO5tKTMKXXHaC5XfMP0rJZVU,3161
30
+ casedev/resources/compute/__init__.py,sha256=zU87V6uJ1AR6vGjpH1iRhxuOKb6uko11kab2yZqq1wU,963
31
+ casedev/resources/compute/compute.py,sha256=pnYB4A3J3eisAm5eIZF5z9nry6urHPd60GE2DJdmZak,3518
32
+ casedev/resources/compute/v1/__init__.py,sha256=_-S-hhT-xqhbJxjaRBZqvbp3IgLN2_dFuGfsDFIpwU4,1491
33
+ casedev/resources/compute/v1/environments.py,sha256=uqlVAMVrnktBCjb3L0DkMdd4SR6jgIW530PCHo3-4jk,19666
34
+ casedev/resources/compute/v1/secrets.py,sha256=vCde6c3QuqPNx9nswispO6FDerbbZWc6CgLsWZQ19Qo,24791
35
+ casedev/resources/compute/v1/v1.py,sha256=lt2TxI7CHpkn5SDNjOUNfE-6Yb1B48u63duRFWqsvro,11865
36
+ casedev/resources/format/__init__.py,sha256=K0TFZJlL9IuEIwuGW09qHBTJ8_hYUP-6BOmLrxA4gzg,950
37
+ casedev/resources/format/format.py,sha256=BPzZkMoKMz7KuHsoa87iz98S-LE947tEaiwPD4rxo3k,3482
38
+ casedev/resources/format/v1/__init__.py,sha256=ibOXccJ1ECoxcJgWHH0MeXlGylBd6l_yC1fOdxKyV0A,989
39
+ casedev/resources/format/v1/templates.py,sha256=77dxSJsJZvLQp5rvEoJ4eSHXOcOyT8pItDqAo5sZjzk,15671
40
+ casedev/resources/format/v1/v1.py,sha256=P_pddQljA_UWDGTPmhhF52ASSHUeczlBUozcanX2mk4,9069
41
+ casedev/resources/llm/__init__.py,sha256=J96pFh6dA6tDo6MBS4abFwdG-EAPIQ6c2R-uzmWxWNw,911
42
+ casedev/resources/llm/llm.py,sha256=kZSnY1K-09q14a03x7r2IfOezfJRZI0lbqbb9QXSos4,6722
43
+ casedev/resources/llm/v1/__init__.py,sha256=pRUgfExwOOkggUoyqA-i7iTkV9bjhgaTM45nZ_iR6z4,924
44
+ casedev/resources/llm/v1/chat.py,sha256=SbP9LW7MLvKf7RV5I9plFZHGZXczlx9_O-w_HN3umgo,9063
45
+ casedev/resources/llm/v1/v1.py,sha256=2LbQjyFg2QJwG3XQ2DgE099vRR7aoi1raZWGniFjyOc,11727
46
+ casedev/resources/ocr/__init__.py,sha256=-ZXhhOiPrQw0zdk3ke4FUiEZXXlfZPatZsiIdrUItao,911
47
+ casedev/resources/ocr/ocr.py,sha256=t3uVFO28CLlR_4W5vw4WM91N0hdF91FOFPV02Fj3Yok,3371
48
+ casedev/resources/ocr/v1.py,sha256=WuD849M9o2SuxcooxtUU22yN7jVthWxPopDLou4gvFo,14987
49
+ casedev/resources/search/__init__.py,sha256=fUOwfF9gS0zPB9kEE_GpBvurrvdq8c669gxeQW6lvNo,950
50
+ casedev/resources/search/search.py,sha256=1S1WK79CHZo0smp--_gOU1y7TWxVuIeqXqDDbPa71LI,3479
51
+ casedev/resources/search/v1.py,sha256=V4kX91gAk8grdWTS2-QuysKFdIhsihJdsUjYKy3nHHE,40202
52
+ casedev/resources/vault/__init__.py,sha256=UiqbZFscIS5enij-ZSflab26rzLKuhRCdOao3NsnB-4,1478
53
+ casedev/resources/vault/graphrag.py,sha256=vAzXLtdAxWHma8C06zN-3fNoKFNjaaxSnz8XeZcAGiQ,9909
54
+ casedev/resources/vault/objects.py,sha256=ISxksDJfnXVoWjpO65eX4Qx1Kp0UXnXHfTrZv2EaLNk,22835
55
+ casedev/resources/vault/vault.py,sha256=uCdhMzz_3ejQ28Tet0J7B4nep-8HZV0240bEx9vE3yc,31484
56
+ casedev/resources/voice/__init__.py,sha256=Ei4wMChsotUo1dJYbfuU09cdXDP2x0z0GLFOYbwlo20,1967
57
+ casedev/resources/voice/streaming.py,sha256=zSEv2qc5oJaCMFc_3A8FdLLpnWqV9HUlQ8l3Ke-UR4E,5920
58
+ casedev/resources/voice/transcription.py,sha256=zTuRpft6Iz8kg5efLOYCrrdiMPd0_6kjMyeBrp_4Scs,15425
59
+ casedev/resources/voice/voice.py,sha256=BM4npEEHaJAqYeGcRGp-03Yw7tF95ojj1wi2dj2Ats8,5866
60
+ casedev/resources/voice/v1/__init__.py,sha256=nr5t3Yp7f-gmiVvkmNMVCVZb5ZuvWlw1jgClkdULwR0,937
61
+ casedev/resources/voice/v1/speak.py,sha256=qe7g23bMW4Mhaj-jCx6bpDcZZ4Xnj5qCaucUB_HFvcY,10801
62
+ casedev/resources/voice/v1/v1.py,sha256=3-KPvn-4NpvQtTKl3AlJWe1L2cmXvE3xBXLNkY76GRs,10489
63
+ casedev/types/__init__.py,sha256=VdQ-QFqjZM1QlkG4juTE27_xsUMkG8EKLX1d8yMQ55Y,889
64
+ casedev/types/llm_get_config_response.py,sha256=a8kecm5Wn4EhGjNhnJwlK_7aO--L0CZoI516wawTiy8,792
65
+ casedev/types/vault_create_params.py,sha256=Po0H_yFpRuNHl34y_GLZmhtqrY_8HgSbOGVv8RO66QY,957
66
+ casedev/types/vault_create_response.py,sha256=LVWu46YSo6lZacDnQL5a85HOEPtmFB_k6h9JQI2A0L8,1243
67
+ casedev/types/vault_ingest_response.py,sha256=ssu0IBZilMiBgtt_iTFee7X-fhdIr3TIrKNj_0I4sK0,985
68
+ casedev/types/vault_list_response.py,sha256=IiSuHTgAaS9gb7ZmB1keKzfnEJnc7L_a-SiLgVz7GaA,1084
69
+ casedev/types/vault_retrieve_response.py,sha256=ecqklvg43ies3Uy1iu2gfJKSRefJ5FRacDRyl5c-ujE,2433
70
+ casedev/types/vault_search_params.py,sha256=vkEuh9LbAGVbTi-_u0AlALvZzAGtBUmxyuRi1ZMtBd4,1262
71
+ casedev/types/vault_search_response.py,sha256=VZ7Q-g3O8aNHDZG9hG4V4nQ9BxjSCkTsYyIPSxhqHgs,2260
72
+ casedev/types/vault_upload_params.py,sha256=2mw_NQ3fPEYnUwJvBLIowvlY1xqeENGO4IgQ9A3at_A,1046
73
+ casedev/types/vault_upload_response.py,sha256=e7LABDnsx1WEJAYEuOKT7UKmSWcRbo4tXRyBTt3yLCQ,1366
74
+ casedev/types/compute/__init__.py,sha256=mDPtXWE5ag6i6X_TUUkJCDxqkLYpA_4k8sRzgOXQnKs,269
75
+ casedev/types/compute/v1_get_usage_params.py,sha256=vmFHZkhKxziFF0AkGpJDU8ph14nWoe7_j4WnkFL9ZVA,409
76
+ casedev/types/compute/v1_get_usage_response.py,sha256=GgEPLlD06b-Oj-pKkg5wcfEAgGTDPmjytJnaziezmhs,1616
77
+ casedev/types/compute/v1/__init__.py,sha256=xdZOkLJakT0Y7MK4iBpmenLV96TxgO5M-7gti1FNVDw,1582
78
+ casedev/types/compute/v1/environment_create_params.py,sha256=C3dHaPWdUjBiCkbZI5QE9gPnvk45T9BAYtPu8KTk5Hc,366
79
+ casedev/types/compute/v1/environment_create_response.py,sha256=KqRPmDd4qS1f8dqO1o77GADFoI-5TiH1FmeeQk2xfcY,969
80
+ casedev/types/compute/v1/environment_delete_response.py,sha256=kbAQ7C0zRQRdQ4Q2J2hYcoz5hAzA-xYPNdtl1spJKLE,244
81
+ casedev/types/compute/v1/environment_list_response.py,sha256=S5rvYcFIdhlEf78hTCyQSf1viZODf9n99m1lbJ3Z3bA,1115
82
+ casedev/types/compute/v1/environment_retrieve_response.py,sha256=d-jdOPEWQY1yZFeIdKNDbWPSJyJ-nqCBOVSrBBiftt4,1037
83
+ casedev/types/compute/v1/environment_set_default_response.py,sha256=Ae4RsTNUTcoxCKqdf83kHr10tql5uKjifhedmFvjGGY,1018
84
+ casedev/types/compute/v1/secret_create_params.py,sha256=KJhOBmXxE7oSwguk8AHpXCXr8DcHsP0uGvP7DGacgbI,616
85
+ casedev/types/compute/v1/secret_create_response.py,sha256=CKE5S7VwVlTtXrsz-AhTlHnBEpdmrQB5wARGEKsz0_w,634
86
+ casedev/types/compute/v1/secret_delete_group_params.py,sha256=m4N5GZZL5Ge1a8fonzrJ5q0NDCBkW1N66pTOfoF7PJQ,466
87
+ casedev/types/compute/v1/secret_delete_group_response.py,sha256=qm8A0CAw_x4rU1rtELpsif6H8LBwHG63AneZ_WpuBkU,307
88
+ casedev/types/compute/v1/secret_list_params.py,sha256=wNm6Lh8bS3boI1J2ApZDLza7WzBqjU_sfkmJgZnASJs,370
89
+ casedev/types/compute/v1/secret_list_response.py,sha256=xMTjowkoJpaL3v-K8IoxGkU5Mk83O1ws3z3MQAtLn94,857
90
+ casedev/types/compute/v1/secret_retrieve_group_params.py,sha256=xr2mVCjc09fyhOn6MyOMDU8rs6Ddj_vVNc2ZWUq5GQU,351
91
+ casedev/types/compute/v1/secret_retrieve_group_response.py,sha256=g0FEQX2J5GOraLSVgMEmQlfwkfaGlzDitDsomsInkps,987
92
+ casedev/types/compute/v1/secret_update_group_params.py,sha256=4k_MJOKV9Q5YefFEKB7IYIkrzMV1Spq_1B8qP6E06SM,458
93
+ casedev/types/compute/v1/secret_update_group_response.py,sha256=w1UYgncQ8MfgoAsRzCI_PSLUrPO7Xfr4XMfxsrAmaOA,534
94
+ casedev/types/format/__init__.py,sha256=JJVn4bIX7HdH-soqg4VV_IjGVMMIn6c84jCCG3CJgVE,211
95
+ casedev/types/format/v1_create_document_params.py,sha256=TpeaDUMEhiAw-KFkK6RWlLE5KVfKJs7HiGaASEmXhUE,1119
96
+ casedev/types/format/v1/__init__.py,sha256=L2MAeGFVR-ILvr1WeWVu67h4eDjgmKVYUfzR0w9V92o,540
97
+ casedev/types/format/v1/template_create_params.py,sha256=CGr_jmDUvPNya74OOC8jGqz1_Uy5td0YA7vAkbhw_6s,851
98
+ casedev/types/format/v1/template_create_response.py,sha256=oMDY1e3bBNyO0_ILIoki1TSpL8T0l3_hMsOJ0tyvNj0,662
99
+ casedev/types/format/v1/template_list_params.py,sha256=T1aKsi-GVXrn9mI_atS3ryZ-Xf9lZwqFgg_fDyQVfoM,333
100
+ casedev/types/format/v1/template_list_response.py,sha256=o8ChO0Kuz-V4jgfuOsBixjvOT9leBs1oLkyjeLUtv0w,1070
101
+ casedev/types/format/v1/template_retrieve_response.py,sha256=XEYrxBJBYC7rlZpVtn5MyBf4lxWVfHEZQmtLSVEb5i4,968
102
+ casedev/types/llm/__init__.py,sha256=NigfEk7UR7hBXvZsNyzTzusiRaA9LsZJjW02I6HN1bU,393
103
+ casedev/types/llm/v1_create_embedding_params.py,sha256=Z-U4F6xt2lycz58dr5RSTxlrZmjzfgTVIdwOOpNji8I,804
104
+ casedev/types/llm/v1_create_embedding_response.py,sha256=wOTpBNvSFSQsVvNlngtk9jZPZTYVWkBUo_KaAqNIBAU,641
105
+ casedev/types/llm/v1_list_models_response.py,sha256=55VBioDvKPvA1uAM810y_ON8JaT-7_CNYiEOG_NdMn4,1030
106
+ casedev/types/llm/v1/__init__.py,sha256=XsAVOJBAS5pugGVr3jkij-CodPXnJ-bXmWpUDVe9M5o,329
107
+ casedev/types/llm/v1/chat_create_completion_params.py,sha256=UlbE_pmBVQvIUpewiuQUDNKjj8WXW5DBRbo4NNgzRwM,1103
108
+ casedev/types/llm/v1/chat_create_completion_response.py,sha256=hQSpIs5ONfW3dlCBXpbsL6WGyZzOKiCu29eCA2gEKQ4,1078
109
+ casedev/types/ocr/__init__.py,sha256=NVGg6oXd239o-4oUDUFVRnM9GndtpfUp1zZ4h_6udOo,411
110
+ casedev/types/ocr/v1_download_response.py,sha256=nl57ujnG3J3H8mDUHzN8JNGDJJJRaf8ZaSWJG0UwWZ0,201
111
+ casedev/types/ocr/v1_process_params.py,sha256=isdvBUETWUAxTTSD7ZJYeUkU1tx7-Poa4sa4tKXk9VY,1019
112
+ casedev/types/ocr/v1_process_response.py,sha256=5AI-Y2x4FLJt3H4SH2ZOH8WbHhVsuQLix8ekY3iVw6A,830
113
+ casedev/types/ocr/v1_retrieve_response.py,sha256=y88harLFCQAebU-oKCHYRl5F5j-VJU6H2MZBQqIP7eQ,847
114
+ casedev/types/search/__init__.py,sha256=a-5bdgl3DwALQWgjDZl-MiUHqa-90pSVZEsx_fULtxE,1007
115
+ casedev/types/search/v1_answer_params.py,sha256=YWBOC_-uhAJzMobOkdAgs6E7scQVuiaK6iDrfwkKQMY,1497
116
+ casedev/types/search/v1_answer_response.py,sha256=fuKihwjnFRsNiUWRen-YPuAyLr5Y2kHyPXcCoIMa95M,877
117
+ casedev/types/search/v1_contents_params.py,sha256=4dtTOaTa6iVg-eyW11rlfKl_kwn93u7w4EzyeJAP7OI,1182
118
+ casedev/types/search/v1_contents_response.py,sha256=0nZL0XQHzP24CS4ejubxQyK4e8A4-UySm-y-auGqv_I,725
119
+ casedev/types/search/v1_research_params.py,sha256=yRAdlWFimyaQeV7A5Jp9bKMl7AnYqfyCiIJx8hdWpDc,722
120
+ casedev/types/search/v1_research_response.py,sha256=fRZRHociDBqDMpVcSsN-ZNPwvq3cLLOJiugBiAJZDiU,532
121
+ casedev/types/search/v1_retrieve_research_params.py,sha256=VL8TdLXTTmMpzwlJjrBJSG4JVKch_pdwqVmOVp8RF84,396
122
+ casedev/types/search/v1_retrieve_research_response.py,sha256=80k2a9j7XEBIYc3SBPxLo9wNnwUbhvqXJYxjp7dACPs,1931
123
+ casedev/types/search/v1_search_params.py,sha256=D-jYDVtgGLqNwXioNtcH1TxDxV9T45AVpNBA5EOqTHI,2086
124
+ casedev/types/search/v1_search_response.py,sha256=8GGSxLPSu5GdBiHVrWVo_1Z65SOELbiypdkW-DRvCz4,1003
125
+ casedev/types/search/v1_similar_params.py,sha256=tsE6RJPts61SAGxFFxMoNSoFCmD85jyBDrG8n6p7dCg,1711
126
+ casedev/types/search/v1_similar_response.py,sha256=3KGXtSzGWf_cjvD8tHc_b6ag1egzTPGye5hViCaDNGE,855
127
+ casedev/types/vault/__init__.py,sha256=HgWLHKTPVN5n0X88AxMdgSVg8-P59PIwUYKdtj0p7zI,864
128
+ casedev/types/vault/graphrag_get_stats_response.py,sha256=qmZxx2-WSrtKWtIL8fRp6sOMw1GjkNwxB_4nUy2F-nE,949
129
+ casedev/types/vault/graphrag_init_response.py,sha256=ZY30FDJwr1Nr4Nd5F1Oesy8I0exO6nNaDXE4Ah1MwRs,366
130
+ casedev/types/vault/object_create_presigned_url_params.py,sha256=9up0KwAUqcHYJdc22c567cxOSI2BEu8iAhMmtYQHtYo,748
131
+ casedev/types/vault/object_create_presigned_url_response.py,sha256=PKPeDMRMagIPouH6Ea0wSBUvEwZl9cx9WD4Gto1BOFk,1505
132
+ casedev/types/vault/object_download_response.py,sha256=NYPLXDTfAyE-9MGIzqCbsBKymLH6_Ssmml1l6dPspx4,209
133
+ casedev/types/vault/object_get_text_response.py,sha256=UL0j0bOnbxw_zH2NIL-mCK2RTlMPCev37R5zukoCXmM,918
134
+ casedev/types/vault/object_list_response.py,sha256=hlwjH-ThgW4GCV9G1Kuh4qjRP4HJNoVhoeez6HYlf0w,2155
135
+ casedev/types/vault/object_retrieve_response.py,sha256=6T0ArmApyuX9JxYfkpdo7unXaDwGs20PZv3X3KXOlyU,1844
136
+ casedev/types/voice/__init__.py,sha256=C1YkrqQ-brtL34Jx6cJZqJrkjvlEDgyhUYYEaIGQ1XQ,678
137
+ casedev/types/voice/streaming_get_url_response.py,sha256=ta_c5AtD5OJYkIcr_2eLzUNcyDPymd7R8MUWa2Ugdws,1113
138
+ casedev/types/voice/transcription_create_params.py,sha256=vbSbFvHQ1NcT3Qbym2Bs4nuWN3KqPc4m5rmAEVq9aTU,1578
139
+ casedev/types/voice/transcription_create_response.py,sha256=5Ygkk0aT5rgaoHgUpgvBLzW-C1eSlZFaOdptbndxZNE,685
140
+ casedev/types/voice/transcription_retrieve_response.py,sha256=bIkPFeawPQtEsXWs5ZuKENjonU7RnAo_k5QS17sjQYQ,1304
141
+ casedev/types/voice/v1_list_voices_params.py,sha256=dblpIsYfQLRNLQF9RVKJ_ORXZBk7rp9NJ1Q1I1YL7ZY,940
142
+ casedev/types/voice/v1_list_voices_response.py,sha256=YkGcjnW3CX04_0hlfzS8FFxRG3nDry7HPcbz599F_f4,980
143
+ casedev/types/voice/v1/__init__.py,sha256=P4gN9dZPnnPP_-Dr_f__1xB0TjLYhq8fAoLsCAazRyM,195
144
+ casedev/types/voice/v1/speak_create_params.py,sha256=oaJNNzP6dsND7qoR7LcLLOeqm85B4UXdqlp9Ovqjawk,1589
145
+ casedev/types/webhooks/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
146
+ casedev-0.2.0.dist-info/METADATA,sha256=0Ckno1Wyaw68bt5ievK-5cTIz5dgRC0700JLJiA_osU,14422
147
+ casedev-0.2.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
148
+ casedev-0.2.0.dist-info/licenses/LICENSE,sha256=0eLaL1HjsexG41XGGtL59hixZSQ_NKv57S15pyyVUiM,11337
149
+ casedev-0.2.0.dist-info/RECORD,,
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Casedev
189
+ Copyright 2026 Casedev
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .v1 import (
4
- V1Resource,
5
- AsyncV1Resource,
6
- V1ResourceWithRawResponse,
7
- AsyncV1ResourceWithRawResponse,
8
- V1ResourceWithStreamingResponse,
9
- AsyncV1ResourceWithStreamingResponse,
10
- )
11
- from .actions import (
12
- ActionsResource,
13
- AsyncActionsResource,
14
- ActionsResourceWithRawResponse,
15
- AsyncActionsResourceWithRawResponse,
16
- ActionsResourceWithStreamingResponse,
17
- AsyncActionsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "V1Resource",
22
- "AsyncV1Resource",
23
- "V1ResourceWithRawResponse",
24
- "AsyncV1ResourceWithRawResponse",
25
- "V1ResourceWithStreamingResponse",
26
- "AsyncV1ResourceWithStreamingResponse",
27
- "ActionsResource",
28
- "AsyncActionsResource",
29
- "ActionsResourceWithRawResponse",
30
- "AsyncActionsResourceWithRawResponse",
31
- "ActionsResourceWithStreamingResponse",
32
- "AsyncActionsResourceWithStreamingResponse",
33
- ]
@@ -1,102 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from .v1 import (
6
- V1Resource,
7
- AsyncV1Resource,
8
- V1ResourceWithRawResponse,
9
- AsyncV1ResourceWithRawResponse,
10
- V1ResourceWithStreamingResponse,
11
- AsyncV1ResourceWithStreamingResponse,
12
- )
13
- from ..._compat import cached_property
14
- from ..._resource import SyncAPIResource, AsyncAPIResource
15
-
16
- __all__ = ["ActionsResource", "AsyncActionsResource"]
17
-
18
-
19
- class ActionsResource(SyncAPIResource):
20
- @cached_property
21
- def v1(self) -> V1Resource:
22
- return V1Resource(self._client)
23
-
24
- @cached_property
25
- def with_raw_response(self) -> ActionsResourceWithRawResponse:
26
- """
27
- This property can be used as a prefix for any HTTP method call to return
28
- the raw response object instead of the parsed content.
29
-
30
- For more information, see https://www.github.com/CaseMark/casedev-python#accessing-raw-response-data-eg-headers
31
- """
32
- return ActionsResourceWithRawResponse(self)
33
-
34
- @cached_property
35
- def with_streaming_response(self) -> ActionsResourceWithStreamingResponse:
36
- """
37
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
38
-
39
- For more information, see https://www.github.com/CaseMark/casedev-python#with_streaming_response
40
- """
41
- return ActionsResourceWithStreamingResponse(self)
42
-
43
-
44
- class AsyncActionsResource(AsyncAPIResource):
45
- @cached_property
46
- def v1(self) -> AsyncV1Resource:
47
- return AsyncV1Resource(self._client)
48
-
49
- @cached_property
50
- def with_raw_response(self) -> AsyncActionsResourceWithRawResponse:
51
- """
52
- This property can be used as a prefix for any HTTP method call to return
53
- the raw response object instead of the parsed content.
54
-
55
- For more information, see https://www.github.com/CaseMark/casedev-python#accessing-raw-response-data-eg-headers
56
- """
57
- return AsyncActionsResourceWithRawResponse(self)
58
-
59
- @cached_property
60
- def with_streaming_response(self) -> AsyncActionsResourceWithStreamingResponse:
61
- """
62
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
63
-
64
- For more information, see https://www.github.com/CaseMark/casedev-python#with_streaming_response
65
- """
66
- return AsyncActionsResourceWithStreamingResponse(self)
67
-
68
-
69
- class ActionsResourceWithRawResponse:
70
- def __init__(self, actions: ActionsResource) -> None:
71
- self._actions = actions
72
-
73
- @cached_property
74
- def v1(self) -> V1ResourceWithRawResponse:
75
- return V1ResourceWithRawResponse(self._actions.v1)
76
-
77
-
78
- class AsyncActionsResourceWithRawResponse:
79
- def __init__(self, actions: AsyncActionsResource) -> None:
80
- self._actions = actions
81
-
82
- @cached_property
83
- def v1(self) -> AsyncV1ResourceWithRawResponse:
84
- return AsyncV1ResourceWithRawResponse(self._actions.v1)
85
-
86
-
87
- class ActionsResourceWithStreamingResponse:
88
- def __init__(self, actions: ActionsResource) -> None:
89
- self._actions = actions
90
-
91
- @cached_property
92
- def v1(self) -> V1ResourceWithStreamingResponse:
93
- return V1ResourceWithStreamingResponse(self._actions.v1)
94
-
95
-
96
- class AsyncActionsResourceWithStreamingResponse:
97
- def __init__(self, actions: AsyncActionsResource) -> None:
98
- self._actions = actions
99
-
100
- @cached_property
101
- def v1(self) -> AsyncV1ResourceWithStreamingResponse:
102
- return AsyncV1ResourceWithStreamingResponse(self._actions.v1)