A lil service that creates embeddings of posts, profiles, and avatars to store them in Qdrant
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix

+2 -2
+2 -2
database.py
··· 319 319 logger.error(f"Error upserting post: {e}") 320 320 return False 321 321 finally: 322 - prom_metrics.upserts.labels(kind="avatar", status=status).inc() 323 - prom_metrics.upsert_duration.labels(kind="avatar", status=status).observe( 322 + prom_metrics.upserts.labels(kind="post", status=status).inc() 323 + prom_metrics.upsert_duration.labels(kind="post", status=status).observe( 324 324 time() - start_time 325 325 ) 326 326