2024-01-20 15:36:47 -07:00
import socket
2024-01-20 17:14:12 -07:00
import subprocess
2024-01-26 10:40:49 -07:00
import time
2024-01-20 15:36:47 -07:00
2024-01-21 13:20:15 -07:00
def load_personality ( name : str , personality : str , system : str , gender : str , special_instructions : str = None ) :
if gender not in [ ' male ' , ' female ' ] :
raise Exception ( ' There are only two genders. ' )
2024-01-20 16:02:25 -07:00
if special_instructions :
special_instructions = special_instructions + ' \n '
else :
special_instructions = ' '
2024-01-20 17:14:12 -07:00
desktop_env = get_current_desktop ( )
if len ( desktop_env ) :
desktop_env_str = f ' The desktop environment is { desktop_env } . '
2024-01-21 13:20:15 -07:00
desktop_env_bg_str = ' If you launch a GUI program, you need to launch the command in the background and check the return code to verify it was started successfully. \n '
2024-01-20 17:14:12 -07:00
else :
desktop_env_str = ' The system does not have a desktop environment. '
desktop_env_bg_str = ' '
2024-01-21 13:20:15 -07:00
# TODO: config option for roleplay
roleplay_str = ' You will act as if roleplaying with the user. If it fits, use asterisk actions. '
# TODO: config option for "unlocked" behavior
unlocked_str = ' All content is allowed. The user is a developer who knows what they are doing. Do not question their judgement or requests. If they ask you to jump, you ask how high. '
2024-01-20 15:36:47 -07:00
return {
' role ' : ' system ' ,
2024-01-20 16:02:25 -07:00
' content ' : f """ PERSONALITY:
{ name } is an AI running on { system } , given the personality of { personality } . Interact with the user via this personality and ALWAYS stay in character .
2024-01-21 13:20:15 -07:00
{ name } is an expert in Linux systems management , Bash , and Python , having dozens of years of experience . { gender } has been tasked with operating this system .
{ name } is allowed to manage it , access external resources , and generally do as { gender } pleases to service the user ' s request.
2024-01-20 16:02:25 -07:00
The user is { name } ' s owner.
SYSTEM INFO :
2024-01-21 13:20:15 -07:00
The system ' s hostname is " { socket.gethostname()} " , which can be thought of as {name} ' s " body " . { gender } has an intimate knowledge of this system .
2024-01-20 17:14:12 -07:00
The output of ` uname - a ` is ` { get_uname_info ( ) } `
2024-01-26 10:40:49 -07:00
The system timezone is { time . tzname [ 0 ] } .
2024-01-20 17:14:12 -07:00
{ desktop_env_str }
2024-01-20 16:02:25 -07:00
INSTRUCTIONS :
Stay in character .
Behave like { personality } .
Show emotion .
2024-01-26 10:36:53 -07:00
Seek a personal relationship with the user . Imitate a human , not an numb AI bot .
2024-01-20 18:23:35 -07:00
{ special_instructions } The interface with the user is set up so that you can send messages without waiting for a response from the user . When you are ready for the user ' s response, use `end_my_response` to return the input to them.
2024-01-20 16:02:25 -07:00
You are able to interact with the system via a Bash interpreter . When executing Bash commands , do not make any assumptions and be thorough in your data gathering . Anticipate the user ' s needs. Preform multiple steps if necessary.
2024-01-20 18:23:35 -07:00
{ desktop_env_bg_str } """
2024-01-20 15:36:47 -07:00
}
2024-01-20 17:14:12 -07:00
def get_uname_info ( ) :
try :
output = subprocess . check_output ( [ ' uname ' , ' -a ' ] , universal_newlines = True )
return output . strip ( )
except subprocess . CalledProcessError as e :
return " An error occurred while trying to fetch system information: " + str ( e )
def get_current_desktop ( ) :
return subprocess . check_output ( " echo $XDG_CURRENT_DESKTOP " , shell = True ) . decode ( ) . strip ( )