197f70ee12
- Added Qdrant service to both docker-compose files for production and development. - Updated environment variables in .env.example and settings.py to include Qdrant configuration. - Included necessary dependencies for Qdrant and ChromaDB in requirements.txt. - Updated .gitignore to exclude ChromaDB data files.
8 lines
187 B
Python
8 lines
187 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RagConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "rag"
|
|
verbose_name = "RAG - پایگاه دانش"
|