Skip to content

Commit

Permalink
Add repository link to pyproject.toml (#23)
Browse files Browse the repository at this point in the history
* Add repository link to pyproject.toml

* add

* bump
  • Loading branch information
jxnl authored Jun 23, 2023
1 parent 4dd3841 commit 5d268eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "openai_function_call"}]
repository = "https://github.com/jxnl/openai_function_call"

[tool.poetry.dependencies]
python = "^3.9"
Expand Down

0 comments on commit 5d268eb

Please sign in to comment.