Add files via upload

This commit is contained in:
Marcos Lohmann
2025-12-04 11:47:29 -03:00
committed by GitHub
parent ae23437f07
commit 9f4ed30a33
15 changed files with 3990 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
# API Security
API_KEY=your-api-key-here
# OCI Configuration
OCI_CONFIG_FILE=/home/app/credentials.conf
OCI_REGION=us-chicago-1
TEST_MODE=false
# Database Configuration
DB_USER=ADMIN
DB_PASSWORD=your-db-password
DB_DSN=your-db-dsn
# Embedding Configuration
EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
EMBEDDING_DIMENSION=384
CHUNK_SIZE=500
CHUNK_OVERLAP=50
# Application Configuration
UPLOAD_FOLDER=/home/ubuntu/doc-embedding-service/uploads
MAX_UPLOAD_SIZE=52428800
DEBUG_AUTH=false
PORT=8000