-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pypi release 0.0.9 [Fix: Windows install, github not set-up, and imor…
…ove examples] (#14) Fixes: - 🪟 Windows installs were running into decoding issues. Now decoding scheme is explicitly stated. Fixes #8 #11 - ✅ Removed the assert that checked for user_id. If a user_id is not found, it assign a per session unique_id. Fixes #3 Improvements: - 💼 Brief welcome message. - 🚀 Better examples that demonstrate the power of gorilla - 🦍 Logo in README
- Loading branch information
1 parent
290cd62
commit fc5b095
Showing
3 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ | |
|
||
setup( | ||
name="gorilla-cli", | ||
version="0.0.8", | ||
version="0.0.9", | ||
url="https://github.com/gorilla-llm/gorilla-cli", | ||
author="Shishir Patil, Tianjun Zhang", | ||
author_email="[email protected], [email protected]", | ||
description="LLMs for CLI", | ||
long_description=open("README.md").read(), | ||
long_description=open("README.md", "r", encoding="utf-8").read(), | ||
long_description_content_type="text/markdown", | ||
py_modules=["go_cli"], | ||
packages=find_packages(include=["*", "go_questionary.*"]), | ||
|