Skip to content

A python module that provides an easy way to use OpenAI GPT-4 (or 3.5) function calling, which is basically GPT plugins in API world.

License

Notifications You must be signed in to change notification settings

keenua/gpt-commands-python

Repository files navigation

GPT Commands Python

A python module that provides an easy way to use OpenAI GPT-4 (or 3.5) function calling, which is basically GPT plugins in API world.

Just create a class with your custom logic:

class Game:
    def get_inventory(self, character: str, max_items: int) -> List[str]:
        """
        Get inventory of a character

        Args:
            character (str): The name of the character to get the inventory of. One of: 'Harry', 'Ron', 'Hermione'
            max_items (int): The maximum number of items to return
        Returns:
            List[str]: The inventory of the character
        """
        if character == "Harry":
            return ["Wand", "Broom", "Cloak"]
        elif character == "Ron":
            return ["Wand", "Rat"]
        elif character == "Hermione":
            return ["Wand", "Cat", "Book"]

        return []

    def alohomora(self):
        """
        Unlock the door
        """
        print("[COMMAND] Alohomora!")

    def expelliarmus(self, target: str):
        """
        Disarm the target

        Args:
            target (str): The target to disarm
        """
        print(f"[COMMAND] Expelliarmus {target}!")

Make sure to annotate your code with type hints and doc strings. This is what the module uses to "explain" the functions to GPT.

Then pass an instance of your class to GPTCommandsClient like so and start prompting:

manager = Game()
model = "gpt-4-0613"  # "gpt-3.5-turbo-16k-0613"
async with GPTCommandsClient(model, system_prompt) as client:
    while True:
        prompt = input("You: ")
        async for data in client.chat_stream(prompt, manager):
            print(data, end="")
        print()

Prompts

List of currently supported types for parameters:

  • bool
  • int
  • float
  • str
  • List[T]
  • Dict[str, T]
  • Optional[T]
  • @dataclass marked classes with JsonSchemaMixin

See example for a full example.

Installation

  1. Install the package

    pip install gpt-commands-python
  2. Set environment variables

    Copy .env.example file and rename it to .env. Then set your OpenAI API key (and optionally your organization ID). Your .env file should look someting like this:

    OPENAI_API_KEY=sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    OPENAI_ORGANIZATION=org-XXXXXXXXXXXXXXXXXXXXXXXX
    

    You can also pass these values as arguments to GPTCommandsClient constructor or set them as environment variables.

Running the example

python -m examples.game

About

A python module that provides an easy way to use OpenAI GPT-4 (or 3.5) function calling, which is basically GPT plugins in API world.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages