Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Simatwa/WebChatGPT
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.1
Choose a base ref
...
head repository: Simatwa/WebChatGPT
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref

Commits on Dec 28, 2023

  1. Copy the full SHA
    3ca48fa View commit details
  2. Copy the full SHA
    ed64423 View commit details
  3. Copy the full SHA
    b12c005 View commit details

Commits on Dec 29, 2023

  1. Copy the full SHA
    d49803d View commit details

Commits on Dec 30, 2023

  1. Add tab-like busy bar icon

    Simatwa committed Dec 30, 2023
    Copy the full SHA
    5e3d708 View commit details
  2. Copy the full SHA
    d6f3a7a View commit details
  3. Copy the full SHA
    9598660 View commit details

Commits on Dec 31, 2023

  1. Update README.md

    Add hits badge
    Simatwa authored Dec 31, 2023
    Copy the full SHA
    d42b675 View commit details

Commits on Jan 1, 2024

  1. - Option to unframe response - *-q/--quiet*

    - Shortcut introduced `wbc` - *(Console)*
    - Prompt made a positional argument - *(Console)*
    Simatwa committed Jan 1, 2024
    Copy the full SHA
    93eb7d7 View commit details
  2. .

    Simatwa committed Jan 1, 2024
    Copy the full SHA
    8bb578f View commit details

Commits on Jan 6, 2024

  1. Update README.md

    Simatwa committed Jan 6, 2024
    Copy the full SHA
    afc4f74 View commit details

Commits on Jan 11, 2024

  1. Copy the full SHA
    ff25586 View commit details

Commits on Jan 13, 2024

  1. - Control vertical overflow *-vo/--vertical-overflow*

    - Check program version *--version/-v*
    - Fully disable busy bar *-B 0*
    Simatwa committed Jan 13, 2024
    Copy the full SHA
    8ef304c View commit details

Commits on Jan 14, 2024

  1. Copy the full SHA
    595f95d View commit details
  2. Accept cmd_args at startup

    Simatwa committed Jan 14, 2024
    Copy the full SHA
    4070809 View commit details
  3. Accept cmd_args at startup

    Simatwa committed Jan 14, 2024
    Copy the full SHA
    ffce678 View commit details

Commits on Jan 16, 2024

  1. Enhance help info

    Simatwa committed Jan 16, 2024
    Copy the full SHA
    afd3e4e View commit details

Commits on Feb 17, 2024

  1. fix: Response generation

    Simatwa committed Feb 17, 2024
    Copy the full SHA
    38b285b View commit details

Commits on Feb 18, 2024

  1. Copy the full SHA
    b2611de View commit details
  2. fix:

    Simatwa committed Feb 18, 2024
    Copy the full SHA
    3a2e6a3 View commit details
  3. Very unreliable

    Simatwa committed Feb 18, 2024
    Copy the full SHA
    b320c82 View commit details

Commits on Feb 19, 2024

  1. Release v0.2.8

    Simatwa committed Feb 19, 2024
    Copy the full SHA
    2ca3697 View commit details

Commits on Feb 21, 2024

  1. Update dependencies

    Simatwa committed Feb 21, 2024
    Copy the full SHA
    99f9544 View commit details
  2. Copy the full SHA
    8531a94 View commit details

Commits on Feb 23, 2024

  1. Update README.md

    Simatwa committed Feb 23, 2024
    Copy the full SHA
    7451be9 View commit details

Commits on Apr 15, 2024

  1. - patch : Fail to generate response. Resolves #15. Resolves #14

    - patch : Drop support for websocket.
    Simatwa committed Apr 15, 2024
    Copy the full SHA
    7641f33 View commit details

Commits on Apr 18, 2024

  1. patch : Minor ones

    Simatwa committed Apr 18, 2024
    Copy the full SHA
    62aafcf View commit details
Showing with 378 additions and 162 deletions.
  1. +3 −1 .gitignore
  2. +5 −1 WebChatGPT/__init__.py
  3. +197 −117 WebChatGPT/console.py
  4. +10 −0 WebChatGPT/errors.py
  5. +34 −14 WebChatGPT/main.py
  6. +41 −14 WebChatGPT/utils.py
  7. +58 −1 docs/CHANGELOG.md
  8. +17 −9 docs/README.md
  9. +1 −1 requirements.txt
  10. +12 −4 setup.py
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -163,4 +163,6 @@ cython_debug/
*test.py
README.md
resp.json
*recons
*recons
*-test.py
test-*.py
6 changes: 5 additions & 1 deletion WebChatGPT/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from .main import ChatGPT
from importlib import metadata

__all__ = ["ChatGPT"]

__version__ = "0.2.1"
try:
__version__ = metadata.version("webchatgpt")
except metadata.PackageNotFoundError:
__version__ = "0.0.0"
__author__ = "Smartwa"
__repo__ = "https://github.com/Simatwa/WebChatGPT"
__info__ = "Reverse Engineering of ChatGPT Web-version."
Loading