New Feature: Adding File Filtering to Conversations (#788)

* UI update for file filtered conversations
* Interactive file menu #UI to add/remove files on each conversation as references.
* Backend changes implemented to load selected file filters from a conversation into the querying process.
---------

Co-authored-by: sabaimran <narmiabas@gmail.com>
This commit is contained in:
Raghav Tirumale
2024-06-07 01:23:37 -04:00
committed by GitHub
parent 8d701ebe22
commit ba16afd3c2
7 changed files with 399 additions and 7 deletions

View File

@@ -258,6 +258,7 @@ class Conversation(BaseModel):
slug = models.CharField(max_length=200, default=None, null=True, blank=True)
title = models.CharField(max_length=200, default=None, null=True, blank=True)
agent = models.ForeignKey(Agent, on_delete=models.SET_NULL, default=None, null=True, blank=True)
file_filters = models.JSONField(default=list)
class PublicConversation(BaseModel):