Files
grass_touching_captcha/constants.py
2025-08-08 18:08:41 +02:00

10 lines
253 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"
UPLOAD_DIR = os.path.join(os.getcwd(), UPLOAD_DIR)