-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FastAPI RAG app example with vector embeddings #1118
Conversation
…s and find matches to a text input
|
||
module_name = "llama_model" | ||
# First check for an instance of the LlamaModel stored on the cluster | ||
remote_llm = cluster.get(module_name, default=None, remote=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this block here to remove confusion behind get_or_to
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah and I think .get_or_to
isn't necessarily working as intended for modules? @dongreenberg made this point last week
No description provided.