Makes working with OpenAI's GPT API and other LLM's super easy
Project description
JustAI
Package to make working with Large Language models in Python super easy.
Author: Hans-Peter Harmsen (hp@harmsen.nl)
Current version: 2.0.1
Installation
- Install the package:
python -m pip install justai
- Create an OpenAI acccount here
- Create OpenAI api keys here
- Create a .env file with the following content:
OPENAI_API_KEY=your-openai-api-key
OPENAI_ORGANIZATION=your-openai-organization-id
Usage
from justai import Agent
if __name__ == "__main__":
agent = Agent('gpt-3.5-turbo')
agent.system = lambda: "You are a movie critic. I feed you with movie titles and you give me a review in 50 words."
message = agent.chat("Forrest Gump")
print(message)
output
Forrest Gump is an American classic that tells the story of
a man with a kind heart and simple mind who experiences major
events in history. Tom Hanks gives an unforgettable performance,
making us both laugh and cry. A heartwarming and nostalgic
movie that still resonates with audiences today.
Using the examples
Install dependencies:
python -m pip install -r requirements.txt
Basic
python examples/basic.py
Starts an interactive session. In the session you dan chat with GPT-4 or another model.
Returning json
python examples/return_types.py
You can specify a specific return type (like a list of dicts) for the completion. This is useful when you want to extract structured data from the completion.
To define a return type, just pass return_json=True to agent.chat().
See the example code for more details.
Interactive
python examples/interactive.py
Starts an interactive session. In the session you dan chat with GPT-4 or another model.
Special commands
In the interactive mode you can use these special commands which each start with a colon:
Syntax | Description |
---|---|
:reset | resets the conversation |
:load name | loads the saved conversation with the specified name |
:save name | saves the conversation under the specified name |
:input filename | loads an input from the specified file |
:model gpt-4 | Sets the AI model |
:max_tokens 800 | The maximum number of tokens to generate in the completion |
:temperature 0.9 | What sampling temperature to use, between 0 and 2 |
:n 1 | Specifies the number answers given |
:stop ["\n", " Human:", " AI:"] | Up to 4 sequences where the API will stop generating further tokens |
:bye | quits but saves the conversation first |
:exit or :quit | quits the program |
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 justai-2.0.1.tar.gz
.
File metadata
- Download URL: justai-2.0.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 832f7cbefd2a42eb541f60c7404948eebb14634e9ab119a49592e171b91ee5e8 |
|
MD5 | ef7698565860a9fb99bed701a486ceab |
|
BLAKE2b-256 | b701518c8e65856af20def057a610ce36791773092f3589986dce12310fd9b9a |
File details
Details for the file justai-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: justai-2.0.1-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c0ac9d1b8f7bc9b43f4066c225e0e8fd2e738b62a564e370c22251289736101 |
|
MD5 | f634b3b549d492600ef438d6334b83c7 |
|
BLAKE2b-256 | 583123df2120a10df54479e682d232e3f3b91de6c9a3bf78ab32356ba4b55603 |