diff --git a/README.md b/README.md index bafd776..e3789b2 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 faa4a06..925486c 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"