From 5d268eb612d124ba2ca0688503ba99e346667ed5 Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Fri, 23 Jun 2023 13:15:22 +0800 Subject: [PATCH] Add repository link to pyproject.toml (#23) * Add repository link to pyproject.toml * add * bump --- README.md | 7 +++++++ pyproject.toml | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bafd776a4..e3789b285 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,17 @@ # Pydantic is all you need: An OpenAI Function Call Pydantic Integration Module + We try to provides a powerful and efficient approach to output parsing when interacting with OpenAI's Function Call API. One that is framework agnostic and minimizes any dependencies. It leverages the data validation capabilities of the Pydantic library to handle output parsing in a more structured and reliable manner. If you have any feedback, leave an issue or hit me up on [twitter](https://twitter.com/jxnlco). This repo also contains a range of examples I've used in experimetnation and in production and I welcome new contributions for different types of schemas. +## Support + +Follow me on twitter and consider helping pay for openai tokens! + +[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/jxnlco.svg?style=social&label=Follow%20%40jxnlco)](https://twitter.com/jxnlco) [!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/jxnl) + ## Installation ```python diff --git a/pyproject.toml b/pyproject.toml index faa4a066f..925486c5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,12 @@ [tool.poetry] name = "openai-function-call" -version = "0.0.4" +version = "0.0.5" description = "Helper functions that allow us to improve openai's function_call ergonomics" authors = ["Jason "] license = "MIT" readme = "README.md" packages = [{include = "openai_function_call"}] +repository = "https://github.com/jxnl/openai_function_call" [tool.poetry.dependencies] python = "^3.9"