vectorvein 0.3.17__py3-none-any.whl → 0.3.18__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.
- vectorvein/api/__init__.py +4 -0
- vectorvein/api/client.py +132 -0
- vectorvein/api/models.py +39 -0
- vectorvein/chat_clients/anthropic_client.py +4 -3
- vectorvein/chat_clients/base_client.py +8 -4
- vectorvein/chat_clients/openai_compatible_client.py +80 -116
- vectorvein/chat_clients/utils.py +41 -30
- vectorvein/settings/__init__.py +1 -1
- vectorvein/types/defaults.py +7 -0
- vectorvein/workflow/nodes/media_editing.py +20 -1
- vectorvein/workflow/nodes/triggers.py +0 -1
- vectorvein-0.3.18.dist-info/METADATA +716 -0
- {vectorvein-0.3.17.dist-info → vectorvein-0.3.18.dist-info}/RECORD +15 -15
- vectorvein-0.3.17.dist-info/METADATA +0 -174
- {vectorvein-0.3.17.dist-info → vectorvein-0.3.18.dist-info}/WHEEL +0 -0
- {vectorvein-0.3.17.dist-info → vectorvein-0.3.18.dist-info}/entry_points.txt +0 -0
@@ -729,7 +729,26 @@ class FfmpegProcess(Node):
|
|
729
729
|
name="input_files",
|
730
730
|
port_type=PortType.FILE,
|
731
731
|
value=[],
|
732
|
-
support_file_types=[
|
732
|
+
support_file_types=[
|
733
|
+
".mp4",
|
734
|
+
".avi",
|
735
|
+
".mov",
|
736
|
+
".mkv",
|
737
|
+
".mp3",
|
738
|
+
".wav",
|
739
|
+
".ogg",
|
740
|
+
".m4a",
|
741
|
+
".jpg",
|
742
|
+
".jpeg",
|
743
|
+
".png",
|
744
|
+
".gif",
|
745
|
+
".bmp",
|
746
|
+
".webp",
|
747
|
+
".webm",
|
748
|
+
".flv",
|
749
|
+
".wmv",
|
750
|
+
".3gp",
|
751
|
+
],
|
733
752
|
multiple=True,
|
734
753
|
required=True,
|
735
754
|
show=True,
|