94355af62b
- 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.
8 lines
116 B
Python
8 lines
116 B
Python
from django.urls import path
|
|
|
|
from .views import ChatView
|
|
|
|
urlpatterns = [
|
|
path("chat/", ChatView.as_view()),
|
|
]
|