Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -7,7 +7,12 @@ import logging
import numpy as np
import onnx
import sympy
try:
import sympy
except ImportError:
raise ImportError("sympy is required for symbolic shape inference. Install with: pip install sympy") from None
from onnx import helper, numpy_helper, shape_inference
from packaging import version