-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Basic Function Calling Support
- Loading branch information
1 parent
6158415
commit c5bbfdc
Showing
6 changed files
with
276 additions
and
27 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 |
---|---|---|
|
@@ -4,17 +4,28 @@ build-backend = "hatchling.build" | |
|
||
[project] | ||
name = "openai-unofficial" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = [ | ||
{ name="DevsDoCode", email="[email protected]" }, | ||
] | ||
description = "Unofficial OpenAI API Python SDK" | ||
description = "Free & Unlimited Unofficial OpenAI API Python SDK - Supports all OpenAI Models & Endpoints" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
keywords = ["openai", "ai", "machine-learning", "chatgpt", "gpt", "dall-e", "text-to-speech", "api", "tts"] | ||
license = { text = "MIT" } | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
] | ||
dependencies = [ | ||
"requests>=2.28.0", | ||
|
@@ -23,9 +34,10 @@ dependencies = [ | |
[project.urls] | ||
"Homepage" = "https://github.com/SreejanPersonal/openai-unofficial" | ||
"Bug Tracker" = "https://github.com/SreejanPersonal/openai-unofficial/issues" | ||
"Youtube" = "https://www.youtube.com/@DevsDoCode" | ||
"Instragram" = "https://www.instagram.com/sree.shades_/" | ||
"LinkedIn" = "https://www.linkedin.com/in/developer-sreejan/" | ||
"Twitter" = "https://twitter.com/Anand_Sreejan" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/openai_unofficial"] | ||
|
||
# python -m build | ||
# python -m twine upload dist/* | ||
packages = ["src/openai_unofficial"] |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .main import OpenAIUnofficial | ||
|
||
__version__ = "0.1.1" | ||
__version__ = "0.1.2" | ||
__all__ = ["OpenAIUnofficial"] |
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
Oops, something went wrong.