Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/promptslab/openai-detector
AI classifier for indicating AI-written text
https://github.com/promptslab/openai-detector
chatgpt chatgpt-detector detector gpt gpt-2 gpt-3 gpt-detector llm openai openai-api prompt-engineering
Last synced: about 1 month ago
JSON representation
AI classifier for indicating AI-written text
- Host: GitHub
- URL: https://github.com/promptslab/openai-detector
- Owner: promptslab
- License: apache-2.0
- Created: 2023-01-31T21:09:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-17T02:46:16.000Z (almost 2 years ago)
- Last Synced: 2024-03-15T10:13:02.421Z (11 months ago)
- Topics: chatgpt, chatgpt-detector, detector, gpt, gpt-2, gpt-3, gpt-detector, llm, openai, openai-api, prompt-engineering
- Language: Python
- Homepage:
- Size: 705 KB
- Stars: 101
- Watchers: 3
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Prompt-Engineering - [GitHub
- awesome-prompt-engineering-zh-cn - [GitHub
- awesome-prompt-engineering-zh-cn - [GitHub
README
Openai Detector
Open AI classifier for indicating AI-written text
## Installation
```bash
pip3 install openai_detector
```or
```bash
pip3 install git+https://github.com/promptslab/openai-detector.git
```## Usage
```python
from detector import OpenaiDetector
sentence = """All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, “Oh, why can’t you remain like this for ever!” This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end. Of course they lived at 14, and until Wendy came her mother was the chief one. She was a lovely lady, with a romantic mind and such a sweet mocking mouth. Her romantic mind was like the tiny boxes, one within the other, that come from the puzzling East, however many you discover there is always one more; and her sweet mocking mouth had one kiss on it that Wendy could never get, though there it was, perfectly conspicuous in the right-hand corner. The way Mr. Darling won her was this: the many gentlemen who had been boys when she was a girl discovered simultaneously that they loved her, and they all ran to her house to propose to her except Mr. Darling, who took a cab and nipped in first, and so he got her. He got all of her, except the innermost box and the kiss. He never knew about the box, and in time he gave up trying for the kiss. Wendy thought Napoleon could have got it, but I can picture him trying, and then going off in a passion, slamming the door. Mr. Darling used to boast to Wendy that her mother not only loved him but respected him. He was one of those deep ones who know about stocks and shares. Of course no one really knows, but he quite seemed to know, and he often said stocks were up and shares were down in a way that would have made any woman respect him."""
bearer_token = 'Bearer sess-abcd1234..'od = OpenaiDetector(bearer_token)
response = od.detect(sentence)
print(response)
### Output{"output" : "The classifier considers the text to be very unlikely AI-generated.",
"Confidence score" : 96.15870427207666}```
## Community
If you are interested in Prompt-Engineering, LLMs, ChatGPT and other latest research discussions, please consider joining PromptsLab
## Steps to get Bearer token from chrome
- Go to https://platform.openai.com/ai-text-classifier
- Hit F12 to access the Developer tools
- Select the Network Tab
- Select nearly any POST Operation (paste text into detection box and click on submit)
- Find your current Bearer token in the Request HeadersHere is an example
## TO-DO
- Add all classes labels (total 5 classes from openai) ✅
- add verifier to check if the sentence is 1000 characters long
- automatically detect token from user_name, password## Web Version
https://openai.com/blog/new-ai-classifier-for-indicating-ai-written-text/