clai 0.2.0__tar.gz → 0.3.0__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 clai might be problematic. Click here for more details.
- {clai-0.2.0 → clai-0.3.0}/PKG-INFO +1 -1
- {clai-0.2.0 → clai-0.3.0}/clai/message_creation.py +0 -1
- {clai-0.2.0 → clai-0.3.0}/pyproject.toml +1 -1
- {clai-0.2.0 → clai-0.3.0}/setup.py +1 -1
- {clai-0.2.0 → clai-0.3.0}/README.md +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/__init__.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/api.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/behavior_context.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/main.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/ocr_drivers/__init__.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/ocr_drivers/base_driver.py +0 -0
- {clai-0.2.0 → clai-0.3.0}/clai/ocr_drivers/linux_driver.py +0 -0
|
@@ -18,7 +18,7 @@ entry_points = \
|
|
|
18
18
|
|
|
19
19
|
setup_kwargs = {
|
|
20
20
|
'name': 'clai',
|
|
21
|
-
'version': '0.
|
|
21
|
+
'version': '0.3.0',
|
|
22
22
|
'description': 'Command Line AI- this tool lets you call ChatGPT from a CLI',
|
|
23
23
|
'long_description': '# clai\nCommand Line AI- this tool lets you call ChatGPT from a CLI. \n\nI\'m designing this to be used in conjunction with a fork of [shin][shin], which will allow you\nto call `clai` from any textbox in your computer. Finally, ChatGPT everywhere!\n\nThe long-term vision for this project is to add support for extracting context. For example, it would\nread the current text on a window and be able to add to it, or answer questions about it.\n\n_________________\n\n[](http://badge.fury.io/py/clai)\n[](https://github.com/apockill/clai/actions?query=workflow%3ATest)\n[](https://github.com/apockill/clai/actions?query=workflow%3ALint)\n[](https://codecov.io/gh/apockill/clai)\n[](https://github.com/psf/black)\n[](https://timothycrosley.github.io/isort/)\n_________________\n\n[Read Latest Documentation](https://apockill.github.io/clai/) - [Browse GitHub Code Repository](https://github.com/apockill/clai/)\n_________________\n\n## Installation\n\n1. The recommended installation method is to use `pipx`, via\n ```bash\n pipx install clai\n ```\n Optionally, install `tesseract` so that `clai` can read the screen context and send that along with requests:\n ```bash\n sudo apt install tesseract-ocr scrot\n ```\n1. Then go to [OpenAI] and create an API Key. Once it\'s generated, add the following to \n your `~/.profile`:\n ```bash\n export OPENAI_API_TOKEN=<paste here>\n ```\n\n1. The best way to use this tool is in conjunction with the tool [shin][shin], which allows you\n to run arbitrary bash commands in any textbox in a linux computer, using ibus. To use \n that, install \'shin\' via the fork above, then configure\n it in your `~/.profile` to call `clai` by default:\n ```bash\n export SHIN_DEFAULT_COMMAND="clai"\n ```\n1. Log out then log back in for the changes to take effect!\n\n[OpenAI]: https://platform.openai.com/account/api-keys\n\n## Usage\nInvoke the assistant with the format `clai <your prompt>`. For example:\n```\nclai Write an email saying I\'ll be late to work because I\'m working on commandline AIs\n```\n\n\n## Development\n\n### Installing python dependencies\n```shell\npoetry install\n```\n\n### Running Tests\n```shell\npytest .\n```\n\n### Formatting Code\n```shell\nbash .github/format.sh\n```\n\n### Linting\n```shell\nbash .github/check_lint.sh\n```\n\n[shin]: https://github.com/apockill/shin\n',
|
|
24
24
|
'author': 'apockill',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|