bi_encoder = SentenceTransformer('multi-qa-MiniLM-L6-cos-v1')
cross_encoder_small = CrossEncoder('cross-encoder/ms-marco-TinyBERT-L-2-v2') cross_encoder_large = CrossEncoder('cross-encoder/ms-marco-MiniLM-L-6-v2')
qa_model = pipeline('question-answering', model='deepset/roberta-base-squad2')
Hi it's Roey, I'm the co-founder of gerev.ai (singular sock in hebrew).
Gerev is a google-like search engine for workplace apps, it allows you to find everything from code snippets, conversations, or relevant docs.
It supports natural language queries so a query like: "how to setup test env for auth service?" yields (a snippet exracted from a confluence page):
curl ...eu.amazonaws.com/setup_auth.sh | sh export PYTEST_PLUGINS=auth.test_plugin.AuthPlugin pytest -v --...
bi_encoder = SentenceTransformer('multi-qa-MiniLM-L6-cos-v1')
cross_encoder_small = CrossEncoder('cross-encoder/ms-marco-TinyBERT-L-2-v2') cross_encoder_large = CrossEncoder('cross-encoder/ms-marco-MiniLM-L-6-v2')
qa_model = pipeline('question-answering', model='deepset/roberta-base-squad2')