Skip to main content

Use Open AI models in xonsh shell.

Project description

Use Open AI models in xonsh shell.

If you like the idea click ⭐ on the repo and tweet.

Installation

To install use pip:

xpip install -U xontrib-openai
# or: xpip install -U git+https://github.com/anki-code/xontrib-openai

Usage

$OPENAI_API_KEY = 'abcd1234'  # https://platform.openai.com/account/api-keys

# Defaults:
# $OPENAI_MODEL = 'text-davinci-003'  # https://platform.openai.com/docs/models/overview
# $OPENAI_MAX_TOKENS = 500

xontrib load openai

ai! hello
# Hello! How are you?

In case you need addon with new model:

aliases['ai4'] = "$OPENAI_MODEL='gpt-4' $OPENAI_MAX_TOKENS=1000 @('ai')"

ai4! hello gpt-4
# Hello human

Get shell commands

ai! how to git commit. Give me only command
# git commit -m "Commit message"
ai! how to remove all containers and images in docker. Only commands please
# docker stop $(docker ps -a -q)
# docker rm $(docker ps -a -q)
# docker rmi $(docker images -a -q)

Get Python code

ai! send post request with json data on python
# import requests
# import json
# 
# url = 'http://example.com/api/1/users'
# data = {
#   "first_name": "John",
#   "last_name": "Smith"
# }
# 
# headers = {'Content-type': 'application/json'}
# response = requests.post(url, data=json.dumps(data), headers=headers)

Generate data

ai! give me json where keys are fruits and values are most common fruit color
# {
#     "Apple": "Red",
#     "Banana": "Yellow",
#     "Orange": "Orange",
#     "Grape": "Purple",
#     "Strawberry": "Red",
#     "Lemon": "Yellow",
#     "Kiwi": "Green",
#     "Cherry": "Red",
#     "Watermelon": "Green"
# }

Using the data:

import json
j = json.loads($(ai give me small json))
j
# {'name': 'John', 'age': 25}

Known issues

To use gpt-4 model join wait list.

Credits

This package was created with xontrib template.

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

xontrib_openai-0.1.0.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

xontrib_openai-0.1.0-py3-none-any.whl (3.4 kB view details)

Uploaded Python 3

File details

Details for the file xontrib_openai-0.1.0.tar.gz.

File metadata

  • Download URL: xontrib_openai-0.1.0.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xontrib_openai-0.1.0.tar.gz
Algorithm Hash digest
SHA256 0c10632c94bb19f97540b6f114e886b0c7820b57892dbd71d44899b6fdd05da0
MD5 8a27cdab53071296786181f521304f23
BLAKE2b-256 fcbd56413c4ce62b6a6f211201a60ad1d190ce842037dafa192eaab5c8ab3fef

See more details on using hashes here.

File details

Details for the file xontrib_openai-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for xontrib_openai-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a22331364affa1a726437f61941974a618bd8d93971c00f4ddcdfc7047ef59da
MD5 107bb8473801a72c2b83e0d4ab2fea1a
BLAKE2b-256 f06915f79a38d6ff04eccfee23141f69f76952303fbc0078f40b81a6d3716853

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