Note: This repository assume you have all the prerequisite software
- Ollama with gemma2 installed, if not follow
- host your qdrant cloud by following below
- git clone [email protected]:pavanjava/Conversational_Media_Platform.git
- pip install -r requirements.txt
- create a file with
.env
and keep two key-value pairs namedqdrant_api_key
,qdrant_url
- open
main.py
and change the value ofyoutube_url
- then run
main.py
you can start conversation with your media content
- Enter your query [type 'bye' to 'exit']: how is search performed on vector embeddings ?
- bot: Each piece of data is represented as a vector, and your query is also converted into a vector representation. Quadrant then calculates how similar the query vector is to every data vector, surfacing the closest matches in the entire dataset.