No project description provided
Project description
Lazer
Lazer is a Python library that provides a convenient way to expose Python functions as schemas for OpenAI chat models.
For those not in the know: OpenAI - Function Calling
What it Does
Allows you to more easily inform GPT about functions in your code 😊
Warning don't RCE yourself lol
Installation
To install Lazer, simply run:
pip install lazer
Usage
Here is an example of how to use Lazer:
from lazer import Lazer, LazerConversation
lazer = Lazer()
# GPT is now made aware of your function `qux`
@lazer.use
def qux(num: int, name: str) -> str:
"""Retrieve a number and a name from the user and compute the qux of it"""
return str(num + len(name) * 13)
conversation = LazerConversation(lazer, {"model": "gpt-3.5-turbo-0613"})
response = conversation.talk("What is the qux of 3 and steven")
print(response)
# ... 117 ...
Note You do not have to use the LazerConversation GPT frontend, you can simply use the Lazer functions
.use
(decorator) and.get_functions()
as well as.dispatch()
to build your own GPT frontend utilizing Lazer.
Note If you are using the LazerConversation frontend be sure to set an
OPENAI_API_KEY
in a.env
file somewhere in your directory.
Demo
Go to demo/ for some demo code.
Authors:
- @JustinStitt
- @diamondburned
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file lazer-0.1.9.tar.gz
.
File metadata
- Download URL: lazer-0.1.9.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.0 Linux/5.10.16.3-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 798617f7dc53c1e1fd3d140d5aa1a9bc7ac33312c5922eac8f7a17254d9932e1 |
|
MD5 | 48cfff1cef7de98544cab0820167a714 |
|
BLAKE2b-256 | 08d69953dcf5c367b0f9d7c47b0590cca5fd71023ab01e7332b4053a741248e1 |
File details
Details for the file lazer-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: lazer-0.1.9-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.0 Linux/5.10.16.3-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2f7c6ad04589f00876d8b8da782604dd5519924d306054a20679f6acc9f61d0 |
|
MD5 | a16aa418e8cea73d550f53238278ec9f |
|
BLAKE2b-256 | 5764c080c287ef2819c71b017c8fd2186b77c8b52779c34820b4b42f0d97025f |