litellm is a library that abstracts away details/differences for a lot of model providers. Adding an extension, so that any provider can easily be integrated. --- [//]: # (BEGIN SAPLING FOOTER) * #532 * __->__ #524
12 lines
272 B
Python
12 lines
272 B
Python
import os
|
|
import sys
|
|
|
|
|
|
# Skip voice tests on Python 3.9
|
|
def pytest_ignore_collect(collection_path, config):
|
|
if sys.version_info[:2] == (3, 9):
|
|
this_dir = os.path.dirname(__file__)
|
|
|
|
if str(collection_path).startswith(this_dir):
|
|
return True
|
|
|