Skip to content

Commit

Permalink
fixed path testing in scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
emcf committed Jul 26, 2024
1 parent d4bb7d8 commit afc35e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read_git_requirements(file):

setup(
name='thepipe_api',
version='1.2.0',
version='1.2.1',
author='Emmett McFarlane',
author_email='[email protected]',
description='AI-native extractor, powered by multimodal LLMs.',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_chunks_to_messages(self):
self.assertEqual(type(message), dict)
self.assertIn('role', message)
self.assertIn('content', message)
self.assertIn('example.md', message['content'])
self.assertIn('example.md', message['content'][0]['text'])

def test_save_outputs(self):
chunks = scraper.scrape_plaintext(file_path=self.files_directory+"/example.txt")
Expand Down

0 comments on commit afc35e5

Please sign in to comment.