File size: 3,182 Bytes
c066489
 
 
 
 
 
 
 
 
bddc184
13b2053
 
 
 
9e98957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c066489
afb4c93
 
 
 
 
 
 
 
 
 
 
c066489
afb4c93
bddc184
 
9e98957
 
 
 
 
 
 
 
c066489
 
 
9e98957
c066489
 
 
afb4c93
 
 
 
 
 
 
 
 
9e98957
c066489
 
 
9e98957
c066489
 
 
9e98957
afb4c93
9e98957
c066489
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import openai
import gradio as gr
import os
import logging
import json

logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')

openai.api_key = os.environ['key']
initMsg = os.environ['init']
roleAns = os.environ['roleAns']
classAsk = os.environ['classAsk']
classAns = os.environ['classAns']
defaultMsg = os.environ['defaultMsg']

mod = 3;

def trimMessages(messages):
    # Assuming messages is an array of objects with "role" and "content" properties
    content = {}
    for message in messages:        
        if message["role"] == "assistant":
            if "Current Status:" in message["content"]:
                content = message["content"]
                start_index = message["content"].index("Current Status:") + len("Current Status:")
                end_index = message["content"].index("Wielding:")
                new_content = message["content"][:start_index] + message["content"][end_index:]
                message["content"] = new_content
    if content != {}:
        messages.append({"role": "assistant", "content": content})
    return messages

def getChooseRole(msg):
    start_index = msg.index("As an ") + len("As an ")
    end_index = msg.index(",")
    return msg[start_index:] + msg[:start_index]

def getChooseClass(msg):
    full = getChooseRole(msg)
    start_index = full.index(" ") + len(" ")
    end_index = msg.index(",")
    return full[start_index:] + full[:start_index]

def chatbot(input, messages):
    messages = messages or [{"role": "system", "content": initMsg}]
    if len(messages) == 1:
        
        memory = trimMessages(messages)
        logging.info("put memory:"+printMessages(memory))
        chat = openai.ChatCompletion.create(
            model="gpt-3.5-turbo", messages=memory,
            max_tokens=1048,n=1,temperature=0.5,
        )
        logging.info("put memory return:"+chat.choices[0].message.content)

    if input:
        messages.append({"role": "user", "content": input})
        chat = openai.ChatCompletion.create(
            model="gpt-3.5-turbo", messages=messages[-2:],
            max_tokens=2048,n=1,temperature=0.5,
        )
        reply = chat.choices[0].message.content

        ans = ""
        if len(messages) == 3:
            ans = "I choose "+ getChooseRole(reply) +" as my race." + classAsk
            logging.info("ChooseRole:"+ans)
        if len(messages) == 5:
            ans = "My Race is ,I choose "+ getChooseClass(reply) +" as my class." + classAns
            logging.info("ChooseClass:"+ans)
        messages.append({"role": "assistant", "content": ans})
        return reply, messages

def printMessages(messages):
    delimiter = '\n'
    msg_string = delimiter.join([f"{obj['role']}:{obj['content']}" for obj in messages])
    logging.info("messages:"+msg_string)
    return msg_string

app = gr.Interface(fn=chatbot, inputs=[gr.Textbox(lines=7, label="You ask and answer questions below"), "state"], 
                   outputs=[gr.Textbox(label="DND Game Reply", placeholder=roleAns), "state"], title="DND Game",#, gr.Textbox(label="History"), 
                   description="DND Game",theme="compact")
app.launch(share=False)