File size: 1,110 Bytes
ee57972
 
 
 
3708b8e
ee57972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294c730
ee57972
 
 
 
 
 
 
 
 
 
 
294c730
 
ee57972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from time import time
from datetime import datetime

# modules
from modules.db_modules import put_item
from modules.history_modules import get_history

# bots
from bots.debate_bot import debate_bot


def query(
        db_table, 
        user_id, 
        prompt, 
        debate_subject, 
        bot_role,
        session_num
        ):
    
    print("query session", session_num)

    history, history_num = get_history(
        db_table, 
        name_of_partition_key="user_id", 
        value_of_partition_key=user_id,
        session_num=session_num
        )
    print("history", history)

    bot_result = debate_bot(
        prompt, 
        history, 
        debate_subject, 
        bot_role,
        history_num
        )
    
    time_stamp = str(datetime.fromtimestamp(time()))

    item = {
        'user_id': user_id,
        'time_stamp': time_stamp,
        'user_prompt': prompt,
        'bot_response': bot_result,
        'debate_subject': debate_subject,
        'session_num': session_num,
        'bot_role': bot_role
        }

    put_item(db_table, item)
    
    return bot_result