khoj/tests/test_rawconfig.py

16 lines
472 B
Python
Raw Permalink Normal View History

import pytest
from khoj.utils.rawconfig import ImageContentConfig, TextContentConfig
# 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",
)