Skip to content

Commit

Permalink
Fix typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
siliconlad authored Apr 30, 2024
1 parent 278e927 commit 79ab938
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pip3 install tool2schema

# Usage

On all functions that you would like to get the schema for, simply add the `EnableTool` decorator. Then simply use the return value of `FindToolEnabledSchemas` method directly in your requests to whatever LLM you are using.
On all functions that you would like to get the schema for, simply add the `EnableTool` decorator. Then use the return value of `FindToolEnabledSchemas` method directly in your requests to whatever LLM you are using.

```python
from tool2schema import EnableTool
Expand Down Expand Up @@ -108,7 +108,7 @@ Currently the same as OpenAI.

# Public API

In this section we describe in more detail how to utilise this library to it's fullest extent.
In this section we describe in more detail how to utilise this library to its fullest extent.

## Configuration

Expand Down Expand Up @@ -275,7 +275,7 @@ If the enumeration values are not known at the time of defining the function, yo

```python
@GPTEnabled
def my_function(a: int, b: str,):
def my_function(a: int, b: str):
"""
Example function description.
Expand Down

0 comments on commit 79ab938

Please sign in to comment.