Metadata-Version: 2.1
Name: azureChatGPT
Version: 0.0.3
Summary: ChatGPT is a reverse engineering of Azure ChatGPT API
Home-page: https://github.com/EvAnhaodong/azureChatGPT
Author: yehaodong
Author-email: yehaodong@genomics.cn
License: GNU General Public License v2.0
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# Azure_ChatGPT

According to the [Azure OpenAI Service Documentation](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/chatgpt-quickstart?tabs=command-line&pivots=programming-language-python), the GPT-35-Turbo model for Azure OpenAI service only has completion functionality, and cannot perform conversations like the official OpenAI API. 

Based on the chat prompt construction method provided in the documentation.

I have made modifications to the source code of the V3 module in [ChatGPT](https://github.com/acheong08/ChatGPT).

Encapsulate Azure OpenAI GPT-35-Turbo model into a chat API. Extensible for chatbots etc.

# Installation
`git clone git@github.com:EvAnhaodong/Azure_ChatGPT.git`

`python3 setup.py install`

# Terminal Chat

Get `api_key`, `api_base`, `engine` from your Azure (API_KEY, ENDPOINT, ENGINE)

Modify the configuration file `azure.yaml` and run 

## Command line

`python3 -m azureChatGPT --config azure.yaml`

> You can save or load your YAML at any time during the program's execution, making it easy to restore your work state (including conversation records).

```
 $ python3 -m azureChatGPT -h

    ChatGPT - Official azureChatGPT API
    Repo: github.com/EvAnhaodong/Azure_ChatGPT
    
Type '!help' to show a full list of commands
Press Esc followed by Enter or Alt+Enter to send a message.

usage: __main__.py [-h] [--temperature TEMPERATURE] [--top_p TOP_P] [--system_prompt SYSTEM_PROMPT] --config CONFIG [--submit_key SUBMIT_KEY]

options:
  -h, --help            show this help message and exit
  --temperature TEMPERATURE
                        Temperature for response
  --top_p TOP_P         Top p for response
  --system_prompt SYSTEM_PROMPT
                        Base prompt for chatbot
  --config CONFIG       Path to config yaml file
  --submit_key SUBMIT_KEY
                        Custom submit key for chatbot. For more information on keys, see https://python-prompt-toolkit.readthedocs.io/en/stable/pages/advanced_topics/key_bindings.html#list-of-special-keys
```

# Disclaimers

This is a personal project. Modify from [ChatGPT](https://github.com/acheong08/ChatGPT)
