Add repository link to pyproject.toml (#23)

* Add repository link to pyproject.toml

* add

* bump
This commit is contained in:
Jason Liu
2023-06-23 13:15:22 +08:00
committed by GitHub
parent 4dd38419d9
commit 5d268eb612
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -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
+2 -1
View File
@@ -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 <jason@jxnl.co>"]
license = "MIT"
readme = "README.md"
packages = [{include = "openai_function_call"}]
repository = "https://github.com/jxnl/openai_function_call"
[tool.poetry.dependencies]
python = "^3.9"