mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-24 07:55:07 +01:00
18 lines
512 B
Python
18 lines
512 B
Python
|
# External Packages
|
||
|
import pytest
|
||
|
|
||
|
# Internal Packages
|
||
|
from khoj.utils.rawconfig import TextContentConfig, ImageContentConfig
|
||
|
|
||
|
|
||
|
# Test
|
||
|
# ----------------------------------------------------------------------------------------------------
|
||
|
def test_input_filter_or_directories_required_in_image_content_config():
|
||
|
# Act
|
||
|
with pytest.raises(ValueError):
|
||
|
ImageContentConfig(
|
||
|
input_directories=None,
|
||
|
input_filter=None,
|
||
|
embeddings_file="note_embeddings.pt",
|
||
|
)
|