Skip to content

Commit ef7a367

Browse files
updated to core version 1.0.1
1 parent 4d37bf6 commit ef7a367

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/test_settings_embedder_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TestSettingsEmbedderApi(unittest.TestCase):
2323
"""SettingsEmbedderApi unit test stubs"""
2424

2525
def setUp(self):
26-
self.api = cheshire_cat_api.api.settings_embedder_api.SettingsEmbedderApi() # noqa: E501
26+
self.api = cheshire_cat_api.api.embedder_api.EmbedderApi() # noqa: E501
2727

2828
def tearDown(self):
2929
pass

test/test_settings_general_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TestSettingsGeneralApi(unittest.TestCase):
2323
"""SettingsGeneralApi unit test stubs"""
2424

2525
def setUp(self):
26-
self.api = cheshire_cat_api.api.settings_general_api.SettingsGeneralApi() # noqa: E501
26+
self.api = cheshire_cat_api.api.settings_api.SettingsApi() # noqa: E501
2727

2828
def tearDown(self):
2929
pass

test/test_settings_large_language_model_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TestSettingsLargeLanguageModelApi(unittest.TestCase):
2323
"""SettingsLargeLanguageModelApi unit test stubs"""
2424

2525
def setUp(self):
26-
self.api = cheshire_cat_api.api.settings_large_language_model_api.SettingsLargeLanguageModelApi() # noqa: E501
26+
self.api = cheshire_cat_api.api.large_language_model_api.LargeLanguageModelApi() # noqa: E501
2727

2828
def tearDown(self):
2929
pass

test/test_settings_prompt_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TestSettingsPromptApi(unittest.TestCase):
2323
"""SettingsPromptApi unit test stubs"""
2424

2525
def setUp(self):
26-
self.api = cheshire_cat_api.api.settings_prompt_api.SettingsPromptApi() # noqa: E501
26+
self.api = cheshire_cat_api.api.prompt_api.PromptApi() # noqa: E501
2727

2828
def tearDown(self):
2929
pass

0 commit comments

Comments
 (0)