Hi @Akbar_Bakhshi2 !!! I’m developing a real time RAG approach with Kafka and Atlas Vector, but as Kafka producer is the one in charge of adding the messages to Atlas Vector, I dont know when I should calculate the embeddings for the data inserted in Atlas.
Thanks again!
try:
producer.produce(topic=self.kafka_topic_name, key=str(uuid4()), value=json_string.encode(), on_delivery=self.delivery_report)
producer.flush()
except Exception as ex:
self.get_logger().error(f"Exception: {ex}")