Created
November 5, 2022 21:33
-
-
Save sachaarbonel/eeb685dec93288fc83a5e5699708a9c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
impl EmbeddedBook { | |
fn topic(embeddings: [f32; 384]) -> Self { | |
Self { | |
title: None, | |
author: None, | |
summary: None, | |
embeddings: embeddings, | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment