vectorvein 0.3.16__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.
@@ -90,6 +90,13 @@ MOONSHOT_MODELS: Final[dict[str, ModelSettingDict]] = {
90
90
  "response_format_available": True,
91
91
  "native_multimodal": False,
92
92
  },
93
+ "kimi-k2-turbo-preview": {
94
+ "id": "kimi-k2-turbo-preview",
95
+ "context_length": 131072,
96
+ "function_call_available": True,
97
+ "response_format_available": True,
98
+ "native_multimodal": False,
99
+ },
93
100
  }
94
101
 
95
102
  # Deepseek models
@@ -938,8 +945,8 @@ ANTHROPIC_MODELS: Final[dict[str, ModelSettingDict]] = {
938
945
  "response_format_available": False,
939
946
  "native_multimodal": True,
940
947
  },
941
- "claude-opus-4-1-20250514": {
942
- "id": "claude-opus-4-1-20250514",
948
+ "claude-opus-4-1-20250805": {
949
+ "id": "claude-opus-4-1-20250805",
943
950
  "context_length": 200000,
944
951
  "max_output_tokens": 32000,
945
952
  "function_call_available": True,
@@ -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=[".mp4", ".avi", ".mov", ".mkv", ".mp3", ".wav", ".ogg", ".m4a", ".jpg", ".jpeg", ".png", ".gif", ".bmp", ".webp", ".webm", ".flv", ".wmv", ".3gp"],
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,
@@ -26,7 +26,6 @@ class ScheduleTrigger(Node):
26
26
  category="triggers",
27
27
  task_name="triggers.schedule_trigger",
28
28
  node_id=id,
29
- has_inputs=False,
30
29
  ports={
31
30
  "schedule": InputPort(
32
31
  name="schedule",