Files
grass_touching_captcha/constants.py
2025-08-12 17:09:27 +02:00

15 lines
406 B
Python

import os
JINA_URL = 'https://api.jina.ai/v1/embeddings'
JINA_HEADERS = {
'Content-Type': 'application/json',
}
RICKROLL_LINK = "https://www.youtube.com/watch?v=xvFZjo5PgG0"
UPLOAD_DIR = "uploads"
MINIMUM_COSINE_SIMILARITY = 0.65
WORD_TO_COMPARE = "hand touching grass"
DATABASE_FILE = "data.db"
MINIMUM_OCR_SIMILARITY = 0.7
OCR_CHALLENGE_LENGTH = 1
UPLOAD_DIR = os.path.join(os.getcwd(), UPLOAD_DIR)