Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def test_to_dict(self, monkeypatch):
"progress_bar": True,
"meta_fields_to_embed": [],
"embedding_separator": "\n",
"http_client_kwargs": None,
},
}

Expand Down Expand Up @@ -97,6 +98,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
"progress_bar": False,
"meta_fields_to_embed": ["test_field"],
"embedding_separator": "-",
"http_client_kwargs": None,
},
}

Expand Down
2 changes: 2 additions & 0 deletions integrations/stackit/tests/test_stackit_text_embedder.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def test_to_dict(self, monkeypatch):
"organization": None,
"prefix": "",
"suffix": "",
"http_client_kwargs": None,
},
}

Expand All @@ -71,6 +72,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
"organization": None,
"prefix": "START",
"suffix": "END",
"http_client_kwargs": None,
},
}

Expand Down