First commit

This commit is contained in:
csd4ni3l
2025-08-08 18:08:41 +02:00
commit 8ab56b218f
18 changed files with 1552 additions and 0 deletions

10
constants.py Normal file
View File

@@ -0,0 +1,10 @@
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)