We just complete the setup for working on interactions. For now you can make one operation at time but it will change in new updates.

remote.input

Talk with assistant, about user and computer. With this api you can create an consulting process.

Hi, look to user window and return which app using now

Ask user to is user need any kind of supoprt

Extract the user redis config file.

With this questions you will make a shortcut for your needs. You can collect informations from user computer or directly from user or user computer.

output = remote.input("Extract the user redis config file.", screen=False)
print(output)

remote.operation

With this you can define an operation and inform user via GUI

with remote.operation("Scanning"):
  remote.wait(5)

Demo

remote.say

This function say given string to user via text-to-speech

remote.say("Hello, sir how are you today?")

Demo

remote.ask

This for getting an user answer for any question.

the_user_answer = remote.ask("What is your favorite color?")
print(the_user_answer)

remote.screenshot_to_memory

This function is so important, if you want to take a cold screenshot to assistant history to remember and taking some details in future, this function for you.

remote.screenshot_to_memory()

Assistant will say ok after this operation.