Skip to main content

A wrapper package which takes care of API call robustness to ensure developers quickly and easily develop CHatGPT based applications.

Project description

ChatGPTDevFriendly

This package can be used by developers to quickly develop ChatGPT applications with the robustness and boilerplate code being taken care of by this wrapper.

Requirements

pip install chatgptdevfriendly

Usage

All the source code is currently in src directory and also in tests with sample usage in test_main.py. You will need an OpenAI key to use this.

from chatgptdevfriendly.v1 import ChatGptSmartClient

chatgpt_client = ChatGptSmartClient(openai_api_key, model_name)
# We can query with some previous context and also decide whether to add a prompts answer to the context
prompt="List the top 10 upcoming startups in India?"
response, response_id = chatgpt_client.query(prompt, w_context=True, add_to_context=True)
print(f"The answer from ChatGPT is {response}")

# We build on previous context but do not add the current prompts answer to context
prompt="Ok thanks, can you give me the valuation of these startups in tabular format"
response  = chatgpt_client.query(prompt, w_context=True, add_to_context=False)
...

Features

  • Save Conversations to a file

  • Resume conversations by loading context from a file.

  • Retry logic in case of API failures.

  • Regular Trimming of context to 4000 tokens so that limit of 4097 is not breached.

  • Total token and token vs time metric.

  • Retries: This is incase of failures like connection based request exceptions, API errors.

    (openai) C:\Users\Srinivas\OneDrive\Desktop\StartupSearchGPT\tests>python test_main.py
    Error occurred: API error , please try later
    Retrying after 3 seconds...
    Error occurred: API error , please try later
    Retrying after 6 seconds...
    Error occurred: API error , please try later
    Retrying after 12 seconds...
    Error occurred: API error , please try later
  • Context trimming: Context is trimmed as needed when the limit breaches 4000 tokens. Trimming and printing metrics

  • Tracking metrics such as average time per response and total token usage.

    04-10-2023 10:26:44 | INFO | The time taken for this response is : 7.85 seconds

    04-10-2023 10:34:34 | INFO | The total tokens used up-till now is: 665
    04-10-2023 10:34:34 | INFO | The average response time is: 10.28 sec

Sample response times graph

    chatgpt_client.print_metrics()
  • Erasing Context: We can erase all previous chat history to star from fresh.
    chatgpt_client.erase_history()
  • Rollback: we can rollback to a particular Chatresponse context to an restart from there.
    chatgpt_client.rollback_conversation(response_id)
  • Embeddings: We can get the query embeddings and cache them for further use. (In developement)
    chatgpt_client.get_embeddings()

Contributions

This project is meant to make the chatgpt developer life easy, so please do add any featues you feel is needed! Also if you fnd it useful please leave a star!!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chatgptdevfriendly-0.0.2.tar.gz (101.8 kB view details)

Uploaded Source

Built Distribution

chatgptdevfriendly-0.0.2-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file chatgptdevfriendly-0.0.2.tar.gz.

File metadata

  • Download URL: chatgptdevfriendly-0.0.2.tar.gz
  • Upload date:
  • Size: 101.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.4

File hashes

Hashes for chatgptdevfriendly-0.0.2.tar.gz
Algorithm Hash digest
SHA256 9498b40917da527fd69f4ee72cced7cedfdc7887ddfa71a3386ccfd169a66e83
MD5 c13490de87681e6b0626f75b8f89cc97
BLAKE2b-256 4c99f63d0c1a4f850e7c15af718b01bf892fa12bc0f07fa097506384f6cd2499

See more details on using hashes here.

File details

Details for the file chatgptdevfriendly-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for chatgptdevfriendly-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 db3c58ad073a5df15bb94debdb3d2ac77f102fdac65b896626c78428a643700b
MD5 449c441731a1b4a236d56a648b81f8c3
BLAKE2b-256 9475e6a91bd99d04e49afed20d8b455b30940e993c374658a3978a839783a843

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page