Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename memories to conversations #2017

Merged
merged 20 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
51838f8
rename memory comments to conversation
mdmohsin7 Mar 14, 2025
800b7b9
rename memories to conversations in db and its instances
mdmohsin7 Mar 14, 2025
52b01b6
rename redis memory methods to conversations and update their instances
mdmohsin7 Mar 14, 2025
0c2eb1c
Merge remote-tracking branch 'origin' into conversations-rename
mdmohsin7 Mar 17, 2025
32d7dfc
refactor memory models to conversations
mdmohsin7 Mar 18, 2025
89af256
create conversations model and deprecate memory models in it's favor
mdmohsin7 Mar 20, 2025
e717d86
use new conversation model
mdmohsin7 Mar 20, 2025
d757134
use memory models for memory routes
mdmohsin7 Mar 20, 2025
b7ed53c
make conversation model backwards compatible
mdmohsin7 Mar 20, 2025
7bd7a7e
processing_memory_id db compatibility
mdmohsin7 Mar 20, 2025
ad7542c
use conversation models with backward compatibility for memories route
mdmohsin7 Mar 20, 2025
6996251
add new conversations routes
mdmohsin7 Mar 20, 2025
1efa2a7
refactor memories utils
mdmohsin7 Mar 20, 2025
155e03a
refactor deprecated processing_memories to processing_conversations
mdmohsin7 Mar 21, 2025
5f4e5c8
Merge branch 'main' into conversations-rename
mdmohsin7 Mar 21, 2025
3f60074
misc
mdmohsin7 Mar 21, 2025
2d68da6
use conversations routes in app
mdmohsin7 Mar 21, 2025
b58d1d0
refactor memories in chat, facts and other remaining places
mdmohsin7 Mar 21, 2025
dc44006
update conversations endpoints on web
mdmohsin7 Mar 21, 2025
f5e880f
Merge branch 'main' into conversations-rename
mdmohsin7 Mar 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions app/lib/backend/http/api/conversations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Future<List<ServerConversation>> getConversations(
bool includeDiscarded = true}) async {
var response = await makeApiCall(
url:
'${Env.apiBaseUrl}v1/memories?include_discarded=$includeDiscarded&limit=$limit&offset=$offset&statuses=${statuses.map((val) => val.toString().split(".").last).join(",")}',
'${Env.apiBaseUrl}v1/conversations?include_discarded=$includeDiscarded&limit=$limit&offset=$offset&statuses=${statuses.map((val) => val.toString().split(".").last).join(",")}',
headers: {},
method: 'GET',
body: '');
Expand All @@ -53,17 +53,17 @@ Future<List<ServerConversation>> getConversations(
var body = utf8.decode(response.bodyBytes);
var memories =
(jsonDecode(body) as List<dynamic>).map((conversation) => ServerConversation.fromJson(conversation)).toList();
debugPrint('getMemories length: ${memories.length}');
debugPrint('getConversations length: ${memories.length}');
return memories;
} else {
debugPrint('getMemories error ${response.statusCode}');
debugPrint('getConversations error ${response.statusCode}');
}
return [];
}

Future<ServerConversation?> reProcessConversationServer(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/reprocess',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/reprocess',
headers: {},
method: 'POST',
body: '',
Expand All @@ -78,7 +78,7 @@ Future<ServerConversation?> reProcessConversationServer(String conversationId) a

Future<bool> deleteConversationServer(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId',
headers: {},
method: 'DELETE',
body: '',
Expand All @@ -90,7 +90,7 @@ Future<bool> deleteConversationServer(String conversationId) async {

Future<ServerConversation?> getConversationById(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId',
headers: {},
method: 'GET',
body: '',
Expand All @@ -105,7 +105,7 @@ Future<ServerConversation?> getConversationById(String conversationId) async {

Future<bool> updateConversationTitle(String conversationId, String title) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/title?title=$title',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/title?title=$title',
headers: {},
method: 'PATCH',
body: '',
Expand All @@ -117,7 +117,7 @@ Future<bool> updateConversationTitle(String conversationId, String title) async

Future<List<ConversationPhoto>> getConversationPhotos(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/photos',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/photos',
headers: {},
method: 'GET',
body: '',
Expand Down Expand Up @@ -156,7 +156,7 @@ class TranscriptsResponse {

Future<TranscriptsResponse> getConversationTranscripts(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/transcripts',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/transcripts',
headers: {},
method: 'GET',
body: '',
Expand All @@ -172,7 +172,7 @@ Future<TranscriptsResponse> getConversationTranscripts(String conversationId) as

Future<bool> hasConversationRecording(String conversationId) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/recording',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/recording',
headers: {},
method: 'GET',
body: '',
Expand All @@ -194,7 +194,7 @@ Future<bool> assignConversationTranscriptSegment(
}) async {
String assignType = isUser != null ? 'is_user' : 'person_id';
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/segments/$segmentIdx/assign?value=${isUser ?? personId}'
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/segments/$segmentIdx/assign?value=${isUser ?? personId}'
'&assign_type=$assignType&use_for_speech_training=$useForSpeechTraining',
headers: {},
method: 'PATCH',
Expand All @@ -214,7 +214,8 @@ Future<bool> assignConversationSpeaker(
}) async {
String assignType = isUser ? 'is_user' : 'person_id';
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/assign-speaker/$speakerId?value=${isUser ? 'true' : personId}'
url:
'${Env.apiBaseUrl}v1/conversations/$conversationId/assign-speaker/$speakerId?value=${isUser ? 'true' : personId}'
'&assign_type=$assignType&use_for_speech_training=$useForSpeechTraining',
headers: {},
method: 'PATCH',
Expand All @@ -227,7 +228,7 @@ Future<bool> assignConversationSpeaker(

Future<bool> setConversationVisibility(String conversationId, {String visibility = 'shared'}) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/visibility?value=$visibility&visibility=$visibility',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/visibility?value=$visibility&visibility=$visibility',
headers: {},
method: 'PATCH',
body: '',
Expand All @@ -247,7 +248,7 @@ Future<bool> setConversationEventsState(
'values': values,
}));
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/events',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/events',
headers: {},
method: 'PATCH',
body: jsonEncode({
Expand All @@ -270,7 +271,7 @@ Future<bool> setConversationActionItemState(
'values': values,
}));
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/action-items',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/action-items',
headers: {},
method: 'PATCH',
body: jsonEncode({
Expand All @@ -285,7 +286,7 @@ Future<bool> setConversationActionItemState(

Future<bool> deleteConversationActionItem(String conversationId, ActionItem item) async {
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/$conversationId/action-items',
url: '${Env.apiBaseUrl}v1/conversations/$conversationId/action-items',
headers: {},
method: 'DELETE',
body: jsonEncode({
Expand Down Expand Up @@ -364,7 +365,7 @@ Future<(List<ServerConversation>, int, int)> searchConversationsServer(
}) async {
debugPrint(Env.apiBaseUrl);
var response = await makeApiCall(
url: '${Env.apiBaseUrl}v1/memories/search',
url: '${Env.apiBaseUrl}v1/conversations/search',
headers: {},
method: 'POST',
body:
Expand Down
2 changes: 1 addition & 1 deletion app/lib/pages/apps/providers/add_app_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class AddAppProvider extends ChangeNotifier {
}
if (capability.title == 'memories') {
if (conversationPromptController.text.isEmpty) {
AppSnackbar.showSnackbarError('Please enter a memory prompt for your app');
AppSnackbar.showSnackbarError('Please enter a conversation prompt for your app');
return false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/lib/pages/settings/privacy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class PrivacyInfoPage extends StatelessWidget {
_buildBulletPoint('Manual Memories: We track when you add or create manual memories.'),
_buildBulletPoint(
'User Properties: We track user properties such as occupation, usage location, and age range.'),
_buildBulletPoint('Memory Re-processing: We track when you re-process a memory.'),
_buildBulletPoint('Conversation Re-processing: We track when you re-process a conversation.'),
_buildBulletPoint(
'Backups: We track when backups are enabled or disabled, and when a backups password is set.'),
_buildBulletPoint('Support: We track when you contact support.'),
Expand Down
4 changes: 2 additions & 2 deletions app/lib/providers/capture_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ class CaptureProvider extends ChangeNotifier
void onMessageEventReceived(ServerMessageEvent event) {
if (event.type == MessageEventType.conversationProcessingStarted) {
if (event.conversation == null) {
debugPrint("Memory data not received in event. Content is: $event");
debugPrint("Conversation data not received in event. Content is: $event");
return;
}
conversationProvider!.addProcessingConversation(event.conversation!);
Expand All @@ -538,7 +538,7 @@ class CaptureProvider extends ChangeNotifier

if (event.type == MessageEventType.lastConversation) {
if (event.memoryId == null) {
debugPrint("Memory ID not received in last_memory event. Content is: $event");
debugPrint("Conversation ID not received in last_memory event. Content is: $event");
return;
}
_handleLastConvoEvent(event.memoryId!);
Expand Down
2 changes: 1 addition & 1 deletion app/lib/providers/developer_mode_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class DeveloperModeProvider extends BaseProvider {
return;
}
if (webhookOnConversationCreated.text.isNotEmpty && !isValidUrl(webhookOnConversationCreated.text)) {
AppSnackbar.showSnackbarError('Invalid memory created webhook URL');
AppSnackbar.showSnackbarError('Invalid conversation created webhook URL');
setIsLoading(false);
return;
}
Expand Down
8 changes: 4 additions & 4 deletions backend/database/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,21 +226,21 @@ def is_tester_db(uid: str) -> bool:
# ********************************

def record_app_usage(
uid: str, app_id: str, usage_type: UsageHistoryType, memory_id: str = None, message_id: str = None,
uid: str, app_id: str, usage_type: UsageHistoryType, conversation_id: str = None, message_id: str = None,
timestamp: datetime = None
):
if not memory_id and not message_id:
if not conversation_id and not message_id:
raise ValueError('memory_id or message_id must be provided')

data = {
'uid': uid,
'memory_id': memory_id,
'memory_id': conversation_id,
'message_id': message_id,
'timestamp': datetime.now(timezone.utc) if timestamp is None else timestamp,
'type': usage_type,
}

db.collection('plugins').document(app_id).collection('usage_history').document(memory_id or message_id).set(data)
db.collection('plugins').document(app_id).collection('usage_history').document(conversation_id or message_id).set(data)
return data


Expand Down
58 changes: 29 additions & 29 deletions backend/database/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def add_message(uid: str, message_data: dict):
return message_data


def add_plugin_message(text: str, plugin_id: str, uid: str, memory_id: Optional[str] = None) -> Message:
def add_plugin_message(text: str, plugin_id: str, uid: str, conversation_id: Optional[str] = None) -> Message:
ai_message = Message(
id=str(uuid.uuid4()),
text=text,
Expand All @@ -28,7 +28,7 @@ def add_plugin_message(text: str, plugin_id: str, uid: str, memory_id: Optional[
plugin_id=plugin_id,
from_external_integration=False,
type='text',
memories_id=[memory_id] if memory_id else [],
memories_id=[conversation_id] if conversation_id else [],
)
add_message(uid, ai_message.dict())
return ai_message
Expand All @@ -49,7 +49,7 @@ def add_summary_message(text: str, uid: str) -> Message:
return ai_message


def get_plugin_messages(uid: str, plugin_id: str, limit: int = 20, offset: int = 0, include_memories: bool = False):
def get_plugin_messages(uid: str, plugin_id: str, limit: int = 20, offset: int = 0, include_conversations: bool = False):
user_ref = db.collection('users').document(uid)
messages_ref = (
user_ref.collection('messages')
Expand All @@ -59,46 +59,46 @@ def get_plugin_messages(uid: str, plugin_id: str, limit: int = 20, offset: int =
.offset(offset)
)
messages = []
memories_id = set()
conversations_id = set()

# Fetch messages and collect memory IDs
# Fetch messages and collect conversation IDs
for doc in messages_ref.stream():
message = doc.to_dict()

if message.get('deleted') is True:
continue

messages.append(message)
memories_id.update(message.get('memories_id', []))
conversations_id.update(message.get('memories_id', []))

if not include_memories:
if not include_conversations:
return messages

# Fetch all memories at once
memories = {}
memories_ref = user_ref.collection('memories')
doc_refs = [memories_ref.document(str(memory_id)) for memory_id in memories_id]
# Fetch all conversations at once
conversations = {}
conversations_ref = user_ref.collection('memories')
doc_refs = [conversations_ref.document(str(conversation_id)) for conversation_id in conversations_id]
docs = db.get_all(doc_refs)
for doc in docs:
if doc.exists:
memory = doc.to_dict()
memories[memory['id']] = memory
conversation = doc.to_dict()
conversations[conversation['id']] = conversation

# Attach memories to messages
# Attach conversations to messages
for message in messages:
message['memories'] = [
memories[memory_id] for memory_id in message.get('memories_id', []) if memory_id in memories
conversations[conversation_id] for conversation_id in message.get('memories_id', []) if conversation_id in conversations
]

return messages


@timeit
def get_messages(
uid: str, limit: int = 20, offset: int = 0, include_memories: bool = False, plugin_id: Optional[str] = None, chat_session_id: Optional[str] = None
uid: str, limit: int = 20, offset: int = 0, include_conversations: bool = False, plugin_id: Optional[str] = None, chat_session_id: Optional[str] = None
# include_plugin_id_filter: bool = True,
):
print('get_messages', uid, limit, offset, plugin_id, include_memories)
print('get_messages', uid, limit, offset, plugin_id, include_conversations)
user_ref = db.collection('users').document(uid)
messages_ref = (
user_ref.collection('messages')
Expand All @@ -112,35 +112,35 @@ def get_messages(
messages_ref = messages_ref.order_by('created_at', direction=firestore.Query.DESCENDING).limit(limit).offset(offset)

messages = []
memories_id = set()
conversations_id = set()
files_id = set()

# Fetch messages and collect memory IDs
# Fetch messages and collect conversation IDs
for doc in messages_ref.stream():
message = doc.to_dict()
# if message.get('deleted') is True:
# continue
messages.append(message)
memories_id.update(message.get('memories_id', []))
conversations_id.update(message.get('memories_id', []))
files_id.update(message.get('files_id', []))

if not include_memories:
if not include_conversations:
return messages

# Fetch all memories at once
memories = {}
memories_ref = user_ref.collection('memories')
doc_refs = [memories_ref.document(str(memory_id)) for memory_id in memories_id]
# Fetch all conversations at once
conversations = {}
conversations_ref = user_ref.collection('memories')
doc_refs = [conversations_ref.document(str(conversation_id)) for conversation_id in conversations_id]
docs = db.get_all(doc_refs)
for doc in docs:
if doc.exists:
memory = doc.to_dict()
memories[memory['id']] = memory
conversation = doc.to_dict()
conversations[conversation['id']] = conversation

# Attach memories to messages
# Attach conversations to messages
for message in messages:
message['memories'] = [
memories[memory_id] for memory_id in message.get('memories_id', []) if memory_id in memories
conversations[conversation_id] for conversation_id in message.get('memories_id', []) if conversation_id in conversations
]

# Fetch file chat
Expand Down
Loading