Skip to main content

Interact with AI without API key

Project description

tgpt2

Python Test License PyPi Black Passing coverage Progress Downloads Latest release release date wakatime

AI for all

from tgpt2 import TGPT
bot = TGPT()
resp = bot.chat('<Your prompt>')
print(resp)
# Output : How may I help you.

This project allows you to interact with AI (LLaMA) without API Key.

The name tgpt2 is inherited from it's parent project tgpt which runs on golang.

Prerequisite

Installation and usage

Installation

Pick either of the following ways to get started.

  1. From pypi:
pip install tgpt2
  1. Direct from source
pip install git+https://github.com/Simatwa/tgpt2.git
  1. Clone and Install
git clone https://github.com/Simatwa/tgpt2.git
cd tgp2
pip install .

Usage

This package features a ready to use commandline interface.

  • Quick response python -m tgpt2 generate "<Your prompt>"

  • Interactive mode python -m tgpt2 interactive

Instead of python -m tgpt2, ypu can as well use just tgpt2

Developer Docs

  1. Generate a quick response
from tgpt2 import TGPT
bot = TGPT()
resp = bot.chat('<Your prompt>')
print(resp)
# Output : How may I help you.
  1. Get back whole response
from tgpt2 import TGPT
bot = TGPT()
resp = bot.ask('<Your Prompt')
print(resp)
# Output
"""
{'completion': "I'm so excited to share with you the incredible experiences...", 'stop_reason': None, 'truncated': False, 'stop': None, 'model': 'llama-2-13b-chat', 'log_id': 'cmpl-3NmRt5A5Djqo2jXtXLBwJ2', 'exception': None}
"""

Stream Response

Just add parameter stream with value true.

  1. Text Generated only
from tgpt2 import TGPT
bot = TGPT()
resp = bot.chat('<Your prompt>', stream=True)
for value in resp:
    print(value)
# output
"""
How may
How may I help 
How may I help you
How may I help you today?
"""
  1. Whole Response
from tgpt2 import TGPT
bot = TGPT()
resp = bot.ask('<Your Prompt>', stream=True)
for value in resp:
    print(value)
# Output
"""
{'completion': "I'm so", 'stop_reason': None, 'truncated': False, 'stop': None, 'model': 'llama-2-13b-chat', 'log_id': 'cmpl-3NmRt5A5Djqo2jXtXLBwJ2', 'exception': None}

{'completion': "I'm so excited to share with.", 'stop_reason': None, 'truncated': False, 'stop': None, 'model': 'llama-2-13b-chat', 'log_id': 'cmpl-3NmRt5A5Djqo2jXtXLBwJ2', 'exception': None}

{'completion': "I'm so excited to share with you the incredible ", 'stop_reason': None, 'truncated': False, 'stop': None, 'model': 'llama-2-13b-chat', 'log_id': 'cmpl-3NmRt5A5Djqo2jXtXLBwJ2', 'exception': None}

{'completion': "I'm so excited to share with you the incredible experiences...", 'stop_reason': None, 'truncated': False, 'stop': None, 'model': 'llama-2-13b-chat', 'log_id': 'cmpl-3NmRt5A5Djqo2jXtXLBwJ2', 'exception': None}
"""

Note : At the time of wriiting this, Chatting conversational is not supported

Acknowledgements

  1. tgpt
  2. You

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

tgpt2-0.0.5.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

tgpt2-0.0.5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file tgpt2-0.0.5.tar.gz.

File metadata

  • Download URL: tgpt2-0.0.5.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for tgpt2-0.0.5.tar.gz
Algorithm Hash digest
SHA256 60f8e757070b2ed915df6d03c68ff60a94c19230645cc428c048242bf34a2411
MD5 e8f9fd433e6999389c8175f2cc55020e
BLAKE2b-256 751d42d9ad2308af09cfc294482f11cbcdceafcd7647dc197fa4fc5480e7c7f2

See more details on using hashes here.

File details

Details for the file tgpt2-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: tgpt2-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for tgpt2-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 c4e289d4c409972b3022a9c9a196fd58d91accb2da3d17982f2528abed10b521
MD5 a56c9c16a01f5547ac92931c03de72a1
BLAKE2b-256 e2772a3864ef10311f44d2bdf943d35139b73e7bf007c03f2f87cc8453b4e6b8

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