ChatGptHub: Gpt Chatbot Library with LangChain Support
Project description
This repo is a implementation of the ChatGPT Models with LangChain support.
Installation
pip install chatgpthub
Usage
from chatgpthub import ChatGptHubDemo
# translate chatgpt model
demo = ChatGptHubDemo(
openai_key="openai_key",
promptlayer_key="promptlayer_key", #optional
)
# translate chatgpt model
demo.translate(
model_name = "gpt-3.5-turbo",
input_language = "English",
output_language = "Turkish",
text = "Hello, how are you?",
temperature = 0.0,
)
# promptlayer chatgpt model
demo.promptlayer(
model_name = "gpt-3.5-turbo",
text = "Hello, how are you?",
temperature = 0.0,
)
# custom template chatgpt model
template = "You are a helpful assistant that python to c++ and you are asked to translate the following text: {text}"
text = "print('Hello, world!')"
output = demo.custom_template(
model_name="gpt-3.5-turbo",
template=template,
input_variables="text",
text=text,
temperature=0.0,
)
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
chatgpthub-0.1.1.tar.gz
(9.8 kB
view hashes)