A simple Python package for creating and interacting with GPT-based chatbots
Project description
gptbots
A simple Python package for creating and interacting with GPT-based chatbots
Preliminaries
Make sure your OpenAI API key is setup (see OpenAI's Quickstart tutorial).
Usage
To create a chatbot:
bot = gptbots.Chatbot()creates a chatbot instance with default attributesbot = gptbots.Chatbot(model, temperature, custom_instructions, chatbot_name)creates a chatbot instance with custom attributes
To chat:
bot.chat(prompt)prints chatbot response to string prompt
See more methods below.
Attributes
model: default is "gpt-3.5-turbo-1106"; see OpenAI's documentation on models for valid model namestemperature: default is 0.7; ranges from 0.0 to 1.0; higher generally means more creativecustom_instructions: default is "You are a helpful assistant."chatbot_name: default is "Assistant"context: contains custom instructions, user messages, and chatbot responses
Methods
chat(prompt)prints chatbot response to string promptchat_image(prompt, url)prints chatbot response to string prompt + image URL when using "gpt-4-vision-preview" (aka GPT-4 Turbo with vision)save(file_path)saves chat history and settings to preferred fileload(file_path)loads chat history and settings from preferred fileprint_messages()prints context without custom instructions in a prettier formatprint_context()prints context in a prettier format
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
gptbots-0.1.14.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gptbots-0.1.14.tar.gz.
File metadata
- Download URL: gptbots-0.1.14.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6407fd0a66f27d3b4e962f1a2cf68ce87a5b50ba0d4c0cb350d0be5cab06f965
|
|
| MD5 |
9805623f9952c5f1d90ba138085e5b4c
|
|
| BLAKE2b-256 |
47654fcd615c8ff64b337a3ca09cd18c7cfa976f2e929e90a4f9dd8d21391f1c
|
File details
Details for the file gptbots-0.1.14-py3-none-any.whl.
File metadata
- Download URL: gptbots-0.1.14-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76ddc55e01bde39ac30598beb559eaae5fe6f2afb128e89dbc6661c085150be5
|
|
| MD5 |
075de1aee9e44f082a253996e38178cc
|
|
| BLAKE2b-256 |
7afba5e6e29c614c80b7d855f96adac2ac7723d7850523c237149c33556227d0
|