wcgw 2.0.0__tar.gz → 2.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of wcgw might be problematic. Click here for more details.

Files changed (39) hide show
  1. {wcgw-2.0.0 → wcgw-2.0.1}/PKG-INFO +1 -1
  2. {wcgw-2.0.0 → wcgw-2.0.1}/pyproject.toml +1 -1
  3. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/tools.py +1 -3
  4. {wcgw-2.0.0 → wcgw-2.0.1}/.github/workflows/python-publish.yml +0 -0
  5. {wcgw-2.0.0 → wcgw-2.0.1}/.github/workflows/python-tests.yml +0 -0
  6. {wcgw-2.0.0 → wcgw-2.0.1}/.github/workflows/python-types.yml +0 -0
  7. {wcgw-2.0.0 → wcgw-2.0.1}/.gitignore +0 -0
  8. {wcgw-2.0.0 → wcgw-2.0.1}/.python-version +0 -0
  9. {wcgw-2.0.0 → wcgw-2.0.1}/.vscode/settings.json +0 -0
  10. {wcgw-2.0.0 → wcgw-2.0.1}/README.md +0 -0
  11. {wcgw-2.0.0 → wcgw-2.0.1}/gpt_action_json_schema.json +0 -0
  12. {wcgw-2.0.0 → wcgw-2.0.1}/gpt_instructions.txt +0 -0
  13. {wcgw-2.0.0 → wcgw-2.0.1}/openai.md +0 -0
  14. {wcgw-2.0.0 → wcgw-2.0.1}/src/__init__.py +0 -0
  15. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/__init__.py +0 -0
  16. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/__init__.py +0 -0
  17. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/__main__.py +0 -0
  18. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/anthropic_client.py +0 -0
  19. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/cli.py +0 -0
  20. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/common.py +0 -0
  21. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/computer_use.py +0 -0
  22. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/diff-instructions.txt +0 -0
  23. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/mcp_server/Readme.md +0 -0
  24. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/mcp_server/__init__.py +0 -0
  25. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/mcp_server/server.py +0 -0
  26. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/openai_client.py +0 -0
  27. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/openai_utils.py +0 -0
  28. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/client/sys_utils.py +0 -0
  29. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/relay/serve.py +0 -0
  30. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/relay/static/privacy.txt +0 -0
  31. {wcgw-2.0.0 → wcgw-2.0.1}/src/wcgw/types_.py +0 -0
  32. {wcgw-2.0.0 → wcgw-2.0.1}/static/claude-ss.jpg +0 -0
  33. {wcgw-2.0.0 → wcgw-2.0.1}/static/computer-use.jpg +0 -0
  34. {wcgw-2.0.0 → wcgw-2.0.1}/static/example.jpg +0 -0
  35. {wcgw-2.0.0 → wcgw-2.0.1}/static/rocket-icon.png +0 -0
  36. {wcgw-2.0.0 → wcgw-2.0.1}/static/ss1.png +0 -0
  37. {wcgw-2.0.0 → wcgw-2.0.1}/tests/test_basic.py +0 -0
  38. {wcgw-2.0.0 → wcgw-2.0.1}/tests/test_tools.py +0 -0
  39. {wcgw-2.0.0 → wcgw-2.0.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wcgw
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: What could go wrong giving full shell access to chatgpt?
5
5
  Project-URL: Homepage, https://github.com/rusiaaman/wcgw
6
6
  Author-email: Aman Rusia <gapypi@arcfu.com>
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  authors = [{ name = "Aman Rusia", email = "gapypi@arcfu.com" }]
3
3
  name = "wcgw"
4
- version = "2.0.0"
4
+ version = "2.0.1"
5
5
  description = "What could go wrong giving full shell access to chatgpt?"
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.11, <3.13"
@@ -929,9 +929,7 @@ def register_client(server_url: str, client_uuid: str = "") -> None:
929
929
  client_version = importlib.metadata.version("wcgw")
930
930
  websocket.send(client_version)
931
931
 
932
- print(
933
- f"Connected. Share this user id with the chatbot: {client_uuid} \nLink: https://chatgpt.com/g/g-Us0AAXkRh-wcgw-giving-shell-access"
934
- )
932
+ print(f"Connected. Share this user id with the chatbot: {client_uuid}")
935
933
  while True:
936
934
  # Wait to receive data from the server
937
935
  message = websocket.recv()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes