Message-based LLM tools.
Project description
Chatstack
Minimalist Context Management for message-based GPTs
This Python code provides a chatbot implementation with context management using OpenAI's GPT-3.5-turbo or GPT-4 chat models. The chatbot maintains a conversation history and help manages the context state and size in tokens.
Dependencies
- loguru
- pydantic
- openai
- tiktoken
OPEN_API_KEY
Chatstack finds your OpenAI API key via the OPENAI_API_KEY environment variable.
Classes
ChatRoleMessage
: A base data class for messages with role, text, and tokens.SystemMessage
: A data class for representing a message with the 'system' role.ContextMessage
: A data class representing additional information context for the model.AssistantMessage
: A data class for representing a message with the 'assistant' role .UserMessage
: A data class for representing a message with the 'user' role.ChatContext
: A class that manages the conversation context and generates responses using OpenAI message interface models.ChatReponse
: A data class that contains the model response to a user message along with a record of the input context sent to the model, and other significant details such as the model used, the number of tokens used, and the estimated cost of the request.
Usage
- Import the
ChatContext
class. - Create an instance of the
ChatContext
class with the desired configuration. - Call the
user_message
oruser_message_stream
methods with the user's message text to get a response from the chatbot.
Example:
from chatstack import ChatContext
BASE_SYSTEM_PROMPT = "You are a clever bot. Do not apologize, or make excuses. "
BASE_SYSTEM_PROMPT += "Do not mention that you are an AI language model since that is annoying to users."
def main():
chat_context = ChatContext(base_system_msg_text=BASE_SYSTEM_PROMPT)
print("Welcome to the Chatbot!")
while True:
user_input = input("You: ")
print("Chatbot:")
response = chat_context.user_message(user_input, stream=True)
print(response.text)
if __name__ == "__main__":
main()
Configuration
The ChatContext
class accepts the following parameters:
min_response_tokens
: Minimum number of tokens to reserve for model completion response.max_response_tokens
: Maximum number of tokens to allow for model completion response.max_context_assistant_messages
: Number of recent assistant messages to keep in context.max_context_user_messages
: Number of recent user messages to keep in context.model
: The name of the GPT model to use (default: "gpt-3.5-turbo").temperature
: The temperature for the model's response generation.base_system_msg_text
: The base system message text to provide context for the model.
The primary method of the ChatContext is the user_message() which is used to assemble the input context to the model and generate a completion.
user_message(msg_text: str) -> ChatResponse
This method takes a user's message text as input and generates a response from the chatbot using the conversation context.
user_message_stream(msg_text: str) -> ChatResponse
This method is a generator that takes a user's message text as input and yields ChatResponse
objects containing the incremental and cumulative response text from the chatbot using the conversation context.
add_message(msg : ChatRoleMessage)
Add a message to the context for presentation to the model in subsequent completion requests.
Parameters:
msg_text
(str): The text of the user's message.
Returns:
ChatResponse
: An instance of theChatResponse
data class that includes the model response text, the actual input messages sent to the model, and other relevant details such as the token counts and estimated price of the completion.
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 chatstack-0.1.2.tar.gz
.
File metadata
- Download URL: chatstack-0.1.2.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bb3468001557c5a72b7c7c87bd0283fd59148b932fe99f9acb66c66e0afdebd |
|
MD5 | 990a7ef23badc721c3b114bee32d676b |
|
BLAKE2b-256 | b1aa4d3e1ae6cddf9d2c525d09d4ac976481c3addb51a9adb138463741badfd9 |
File details
Details for the file chatstack-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: chatstack-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9897191248a0b4a48871d35da8c68a0ec34112667e330b7b7223681fbaac8d23 |
|
MD5 | 1132b098b82b0d44a8f075dacb588916 |
|
BLAKE2b-256 | 96d254e30e69c766c67b7a78dfe8be63875a6c44dad8659bb8b96a4cc96d4ee2 |