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

fix to local index to support images

parent 1181a75b
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,10 @@ class LocalIndex(BaseIndex): ...@@ -22,7 +22,10 @@ class LocalIndex(BaseIndex):
): ):
embeds = np.array(embeddings) # type: ignore embeds = np.array(embeddings) # type: ignore
routes_arr = np.array(routes) routes_arr = np.array(routes)
utterances_arr = np.array(utterances) if isinstance(utterances[0], str):
utterances_arr = np.array(utterances)
else:
utterances_arr = np.array(utterances, dtype=object)
if self.index is None: if self.index is None:
self.index = embeds # type: ignore self.index = embeds # type: ignore
self.routes = routes_arr self.routes = routes_arr
......
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