https://github.com/kents00/zert
Conversational AI Sandbox with ChatGPT
https://github.com/kents00/zert
generative-text gpt-3
Last synced: 7 months ago
JSON representation
Conversational AI Sandbox with ChatGPT
- Host: GitHub
- URL: https://github.com/kents00/zert
- Owner: kents00
- License: gpl-3.0
- Created: 2023-12-08T13:21:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-24T07:05:29.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T18:17:11.857Z (9 months ago)
- Topics: generative-text, gpt-3
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zert
Conversational AI Sandbox with ChatGPT
### Introduction
Generative Pre-trained Transformer, is an AI language model developed by OpenAI. It utilizes transformer architecture, which has been successful in natural language processing tasks. The "pre-trained" aspect means that the model is trained on a large and diverse dataset before being fine-tuned for specific tasks. During pre-training, the model learns to predict the next word in a sentence based on context from preceding words, enabling it to understand language structure and semantics. The "generative" aspect enables the model to produce coherent and relevant text when given a prompt, allowing it to perform tasks such as translation, text completion, summarization,and question-answering.
### Installation
To install zert and it locally paste this into your terminal:
```bash
// installing requirements
pip install -r requirements.txt//run into your local machine
flask --app app run
```If you encounter issues installing this in your terminal, it may be because pip is not installed. You can visit the following websites for installation guidance on [Windows](https://phoenixnap.com/kb/install-pip-windows) and [WSL](https://monovm.com/blog/how-to-install-pip-on-windows-linux/)
You can also specify the environment variables in your Flask app by modifying the .flaskenv. It is important to create a .env file for your OpenAI secret key; you can find it [here](https://help.openai.com/en/articles/4936850-where-do-i-find-my-api-key)
```bash
// .flaskenv
FLASK_ENV = development
FLASK_APP = app.py
FLASK_DEBUG = True// .env (create newfile)
OPENAI_API_KEY = your secret key here
```### Issues
If you're having trouble integrating this code into your machine, [open a new issue](https://github.com/kents00/Zert-Chat/issues). As this repository continues to develop, it will be easier for more developers to integrate updates and improve overall user performance!