mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 23:22:57 +01:00
5 lines
138 B
Python
5 lines
138 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
PROJECT_ROOT_PATH: Path = Path(__file__).parents[1]
|
|
UPLOAD_DIR = os.path.join(os.getcwd(), "uploads")
|