MittaAI / webwright

Webwright is an AI-powered terminal emulator that lives within your OS. It eliminates time spent on repetitive tasks, conjures code, summons software, and bends the OS to its will. Are you ready to release the ghost in your shell?
MIT License
31 stars 2 forks source link

LLM incorrectly reports access token missing #36

Open kordless opened 3 months ago

kordless commented 3 months ago

The LLM model is reporting that the GitHub access token is missing or invalid, even though the token still works properly when used to push changes. This is leading to unnecessary prompts to the user to provide the token again.

To reproduce:

  1. Provide a valid GitHub access token
  2. Make a change and commit it
  3. Push the change using git_commit_and_push

Expected: The push succeeds without any errors about the token.

Actual: The LLM thinks the token is missing and prompts the user to provide it again, even though using the existing token works.

This should be investigated to avoid unnecessarily prompting the user for a token that already works. The LLM should be updated to properly detect and use the existing token.