Skip to content
Snippets Groups Projects
Unverified Commit 726bc11f authored by James Briggs's avatar James Briggs
Browse files

add placeholder api key

parent ce2867c2
No related branches found
No related tags found
No related merge requests found
...@@ -174,27 +174,26 @@ class TestRouteLayer: ...@@ -174,27 +174,26 @@ class TestRouteLayer:
assert route_layer.score_threshold == 0.82 assert route_layer.score_threshold == 0.82
def test_json(self, openai_encoder, routes): def test_json(self, openai_encoder, routes):
os.environ["OPENAI_API_KEY"] = "test_api_key"
route_layer = RouteLayer(encoder=openai_encoder, routes=routes) route_layer = RouteLayer(encoder=openai_encoder, routes=routes)
route_layer.to_json("test_output.json") route_layer.to_json("test_output.json")
assert os.path.exists("test_output.json") assert os.path.exists("test_output.json")
with patch("semantic_router.encoders.OpenAIEncoder", new_callable=Mock): route_layer_from_file = RouteLayer.from_json("test_output.json")
route_layer_from_file = RouteLayer.from_json("test_output.json") assert (
assert ( route_layer_from_file.index is not None
route_layer_from_file.index is not None and route_layer_from_file.categories is not None
and route_layer_from_file.categories is not None )
)
os.remove("test_output.json") os.remove("test_output.json")
def test_yaml(self, openai_encoder, routes): def test_yaml(self, openai_encoder, routes):
route_layer = RouteLayer(encoder=openai_encoder, routes=routes) route_layer = RouteLayer(encoder=openai_encoder, routes=routes)
route_layer.to_yaml("test_output.yaml") route_layer.to_yaml("test_output.yaml")
assert os.path.exists("test_output.yaml") assert os.path.exists("test_output.yaml")
with patch("semantic_router.encoders.OpenAIEncoder", new_callable=Mock): route_layer_from_file = RouteLayer.from_yaml("test_output.yaml")
route_layer_from_file = RouteLayer.from_yaml("test_output.yaml") assert (
assert ( route_layer_from_file.index is not None
route_layer_from_file.index is not None and route_layer_from_file.categories is not None
and route_layer_from_file.categories is not None )
)
os.remove("test_output.yaml") os.remove("test_output.yaml")
def test_config(self, openai_encoder, routes): def test_config(self, openai_encoder, routes):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment