Skip to content

Commit

Permalink
fix:improve cache
Browse files Browse the repository at this point in the history
cache domain intents in their own folder to avoid retraining when config changes

improve error handling
  • Loading branch information
JarbasAl committed Jan 25, 2025
1 parent 2eae6e5 commit 7ca51b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


def test_lines_hash():
assert lines_hash(['word1', 'word2']) != lines_hash(['word2', 'word1'])
assert lines_hash(['word1', 'word2']) == lines_hash(['word2', 'word1'])
assert lines_hash(['word1', 'word2']) != lines_hash(['word1', 'word1'])


Expand Down

0 comments on commit 7ca51b5

Please sign in to comment.