• 0 Posts
  • 85 Comments
Joined 5 years ago
cake
Cake day: June 28th, 2020

help-circle













  • Then there are the cases where you want the LLM to actually interact with the page, using the current web page state and your credentials.

    For example, one might want to tell it to uncheck all the “opt in” checkboxes in the page… And express this task in plain English language.

    Many useful interactive agent tasks could be achieved with this. The chatbot would be merely the first step.



  • Then you certainly shouldn’t! But if I have one icecream in my hand, I’ll much prefer go to the self-checkout instead of queuing to the register.

    One local store also has a hand-held scanner/terminal you can use while shopping. I think I could do big shopping with that as well, it’s less of a chore do it while shopping. Previously I had only seen those at wholesale stores for businesses.




  • At the end of the log you find:

    822413 connect(4, {sa_family=AF_UNIX, sun_path="/run/user/1000/gcr/ssh"}, 110) = 0
    ...
    822413 read(4, 
    

    meaning it’s trying to interact with the ssh-agent, but it (finally) doesn’t give a response.

    Use the lsof command to figure out which program is providing the agent service and try to resolve issue that way. If it’s not the OpenSSH ssh-agent, then maybe you can disable its ssh-agent functionality and use real ssh-agent in its place…

    My wild guess is that the program might be trying to interactively verify the use of the key from you, but it is not succeeding in doing that for some reason.