-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Hi!
I am currently taking a look at jina-ai. The plan is to get a simple text-based document search going and so far I've managed to make a simple demo locally which uses the PQLiteIndexer (based on AnnLite).
flow = Flow(port=5050)
flow = (
flow
.add(uses=TfIdfEncoder, uses_with=dict(tfidf_fp=tfidf_fp))
.add(uses='jinahub://PQLiteIndexer/latest', install_requirements=True, uses_with=dict(dim=dim))
)The next step would be for me to see how I can deploy a prototype to Google Cloud Platform (GCP) and, if possible, use Cloud Run in order to keep costs at minimum.
However, since AnnLite requires access to a local file-system I am not sure if that's possible. I intended to use Cloud Storage but it seems AnnLite would not support this.
What options do I have here?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels