This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
Releases: pszemraj/lm-api
Releases · pszemraj/lm-api
basic installable package
Finally, rewritten to a basic python package! You can now install it with the following:
# create a virtual environment (optional)
pip install git+https://github.com/pszemraj/lm-api.git
You can then run queries vs. dataframe-like files (i.e., pandas can read it, like CSV) with lm-api -i /path/to/file
. See the repo or run lm-api --help
for more details & options.
What's Changed
Full Changelog: v0.0.3...v0.1
input/output checks
Adds some validation on user-entered args and output locations: choice of engine to use for the API and output dir. Thanks @dpaleka !
What's Changed
New Contributors
Full Changelog: v0.0.2...v0.0.3
support textfile inputs
Before it had to be a pandas df, now can be that or textfile with each query on a new line. Outputs are now formatted more nicely for usage as markdown
What's Changed
Full Changelog: v0.0.1...v0.0.2