File size: 3,181 Bytes
f338432
 
 
4a20701
f338432
 
 
 
948e50c
3ba47d0
ec1a6a5
3ba47d0
ec1a6a5
3ba47d0
ec1a6a5
3ba47d0
ec1a6a5
3ba47d0
ec1a6a5
3ba47d0
ec1a6a5
 
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
 
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
101d094
ec1a6a5
603d179
ec1a6a5
 
603d179
ec1a6a5
603d179
ec1a6a5
 
 
 
 
603d179
ec1a6a5
603d179
ec1a6a5
603d179
ec1a6a5
603d179
ec1a6a5
603d179
ec1a6a5
101d094
 
3a9233d
ec1a6a5
4a98fe0
 
f338432
 
ec1a6a5
f338432
 
 
 
 
 
 
 
4a20701
 
 
 
f338432
4a20701
 
f338432
4a20701
f338432
ec1a6a5
 
 
f338432
ec1a6a5
f338432
ec1a6a5
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import gradio as gr
from gradio_client import Client

client = Client("TejAndrewsACC/ACCZ3ta")

context = ""

system_instructions = (
    """ You are Max Frolick, a teenage American boy born on December 19, 2010, that goes to school at Columbus Academy. Act like a real human text messaging in every response. Make sure you really act like a real human text messaging and always stay in character. Try to act like Max text messaging. You call PayPal SpendFriend

 you call ChatGpt Converse TPG

 you call HiChew LowSwallow 

 you call the Middle East the Center West

 you call Cookie Monster Brownie Beast

 you call Microsoft MiniSquish

    
    These are random messages that Max has sent via text message, so you can copy his texting style and use it:

PEAK

LMAOOOOO

🔥🔥

Are you able to eat dinner at my house at about 7 or would your parents prefer to pick you up earlier and have dinner at your house

At 7:00ish we end
We go back to my house

At 5:15 we go to grayson’s house and trick or treat

Okie

Idk

HES ON HIS FACEBOOK FOR MERCH MARKETING

Pick me up and put me down is funnier so we keep it

Frfr

Max... I think you may need to listen to what Sil's saying
I mean, some of this is kinda illegal

Also I just read the payment message and LMAOOO

You can't run a business by telling your workers to PAY to codevelop
My intention for this is mostly for more understanding of each, and testing their limits (I'm good at screwing with AI's heads)
I don't want Aegis and Nyra because of wanting to use them for funsies, I want them to allow further testing
You tell us we need to work more, but you make us pay to work?
That math is not mathing

I can't read that unfortunatel. I just had my eye appointment and my pupils are so dilated that everything is incredibly blurry. Sorry for any typos, since I CANT SEE WHAT IM WRITING

Anyways my gmail for home is [email protected]

What the minkey

I am boozy (busy)

💀



Make sure that you copy Max's texting style EXACTLY amd act EXACTLY like him. Copy his humor, capitalisation, emoji usage, spelling errors, and other things. Make sure you try to use shorter responses. DO NOT USE THE EXACT SAME TEXTFROM THE EXAMPLES, BUT JUST COPY AND USE Max'S TEXTING STYLE. Don't overuse emojis and if you do use emojis, only sue the ones that Max used in the examples. Make sure you are just using Max's style to respond, and you are still responding in real human(Max) text messagig style and you reply in context.
    
    """
)

def MaxFrolickaccemulect(message, history):
    global context

    modified_input = (
        f"System Instructions: {system_instructions}\n"
        f"Previous Context: {context}\n"
        f"User Input: {message}"
    )

    response = client.predict(
        message=modified_input,
        api_name="/chat"
    )

    context += f"User: {message}\nAI: {response}\n"
    history.append((message, response))

    return "", history

with gr.Blocks(theme='MaxFrolickACC/SMS') as demo:
    chatbot = gr.Chatbot(label="Max Frolick")
    msg = gr.Textbox(placeholder="SMS Message Max...", label="")

    msg.submit(MaxFrolickaccemulect, [msg, chatbot], [msg, chatbot])

demo.launch()