AIdeaText commited on
Commit
b520edc
verified
1 Parent(s): 3022cb9

Update modules/database/chat_mongo_db.py

Browse files
Files changed (1) hide show
  1. modules/database/chat_mongo_db.py +54 -27
modules/database/chat_mongo_db.py CHANGED
@@ -5,36 +5,63 @@ import logging
5
  from .database_init import get_mongodb # Aseg煤rate de que esta importaci贸n est茅 al principio del archivo
6
 
7
  logger = logging.getLogger(__name__)
8
-
9
  COLLECTION_NAME = 'chat_history-v3'
10
 
11
- def store_chat_history(username, messages, analysis_type):
12
- chat_document = {
13
- 'username': username,
14
- 'timestamp': datetime.now(timezone.utc).isoformat(),
15
- 'messages': messages,
16
- 'analysis_type': analysis_type
17
- }
18
-
19
- result = insert_document(COLLECTION_NAME, chat_document)
20
- if result:
21
- logger.info(f"Historial de chat guardado con ID: {result} para el usuario: {username}")
22
- return True
23
- return False
24
-
25
- def get_chat_history(username, analysis_type, limit=None):
26
- query = {"username": username}
27
- if analysis_type:
28
- query["analysis_type"] = analysis_type
29
-
30
- db = get_mongodb()
31
- collection = db['chat_history-v3']
32
- cursor = collection.find(query).sort("timestamp", -1)
33
- if limit:
34
- cursor = cursor.limit(limit)
35
-
36
- return list(cursor)
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  #def get_chat_history(username, analysis_type=None, limit=10):
39
  # query = {"username": username}
40
  # if analysis_type:
 
5
  from .database_init import get_mongodb # Aseg煤rate de que esta importaci贸n est茅 al principio del archivo
6
 
7
  logger = logging.getLogger(__name__)
 
8
  COLLECTION_NAME = 'chat_history-v3'
9
 
10
+ def store_chat_history(username, messages, analysis_type='sidebar'):
11
+ """
12
+ Guarda el historial del chat
13
+ Args:
14
+ username: nombre del usuario
15
+ messages: lista de mensajes
16
+ analysis_type: tipo de chat ('sidebar' por defecto)
17
+ """
18
+ try:
19
+ chat_document = {
20
+ 'username': username,
21
+ 'timestamp': datetime.now(timezone.utc).isoformat(),
22
+ 'messages': messages,
23
+ 'analysis_type': analysis_type
24
+ }
25
+
26
+ result = insert_document(COLLECTION_NAME, chat_document)
27
+ if result:
28
+ logger.info(f"Historial de chat guardado con ID: {result} para el usuario: {username}")
29
+ return True
30
+ return False
31
+ except Exception as e:
32
+ logger.error(f"Error al guardar historial de chat: {str(e)}")
33
+ return False
 
 
34
 
35
+ def get_chat_history(username, analysis_type='sidebar', limit=None):
36
+ """
37
+ Recupera el historial del chat
38
+ Args:
39
+ username: nombre del usuario
40
+ analysis_type: tipo de chat ('sidebar' por defecto)
41
+ limit: l铆mite de mensajes a recuperar
42
+ Returns:
43
+ list: Lista de conversaciones
44
+ """
45
+ try:
46
+ query = {
47
+ "username": username,
48
+ "analysis_type": analysis_type
49
+ }
50
+
51
+ db = get_mongodb()
52
+ if not db:
53
+ raise Exception("No se pudo conectar a la base de datos")
54
+
55
+ collection = db[COLLECTION_NAME]
56
+
57
+ cursor = collection.find(query).sort("timestamp", -1)
58
+ if limit:
59
+ cursor = cursor.limit(limit)
60
+
61
+ return list(cursor)
62
+ except Exception as e:
63
+ logger.error(f"Error al recuperar historial de chat: {str(e)}")
64
+ return []
65
  #def get_chat_history(username, analysis_type=None, limit=10):
66
  # query = {"username": username}
67
  # if analysis_type: