Files
Ai/rag/urls.py
T
sajad-dev 94355af62b Add LLM configuration and update URL routing
- Introduced LLM configuration in rag_config.yaml and corresponding LLMConfig class in config.py.
- Updated load_rag_config function to parse LLM settings from the configuration file.
- Added new API route for RAG in urls.py to facilitate access to the chat model.
- Modified QdrantVectorStore to use query_points method for improved functionality.
2026-02-27 19:44:49 +03:30

8 lines
116 B
Python

from django.urls import path
from .views import ChatView
urlpatterns = [
path("chat/", ChatView.as_view()),
]