Genr


NameGenr JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/psytech42/genr.ai
SummaryA library to cater all your NLP tasks using LLMs
upload_time2023-01-31 16:05:31
maintainer
docs_urlNone
authormanomay-psytech
requires_python>=3.7.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Genr

This is a python package built on top of OpenAI's language API, designed to perform various tasks such as summarization, Q&A preparation, text-to-dialogue conversion, NER, and more.

## Features

| Feature | Status |
| --- | --- |
| Text Summarization | Implemented |
| Text to Prompt | Implemented |
| Question and Answer Preparation | Pending |
| Text-to-Dialogue Conversion | Pending |
| Named Entity Recognition (NER) | Pending |
| Text Generation | Pending |
| Translation | Pending |

## Getting Started

To use this package, you need to sign up for an API key from OpenAI to access their language API.

1. Clone the repository to your local machine:

 ```bash
 git clone https://github.com/psytech42/genr.ai/
 ```
 

2. Install the dependencies:

```bash
pip install -r requirements.txt
```

3. Use the package in your code:

```python
from Genr.genr import OpenAI

# Initialize the API with your API key
openai = OpenAI("YOUR_API_KEY")

# Use the desired function to perform the task
result = openai.summarize("Your text here")

print(result)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/psytech42/genr.ai",
    "name": "Genr",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "manomay-psytech",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/51/b1/254faa3dbd80e006859dd193f6458e15d84242f7cbdd16926b4661c9ab4f/Genr-0.1.2.tar.gz",
    "platform": null,
    "description": "# Genr\n\nThis is a python package built on top of OpenAI's language API, designed to perform various tasks such as summarization, Q&A preparation, text-to-dialogue conversion, NER, and more.\n\n## Features\n\n| Feature | Status |\n| --- | --- |\n| Text Summarization | Implemented |\n| Text to Prompt | Implemented |\n| Question and Answer Preparation | Pending |\n| Text-to-Dialogue Conversion | Pending |\n| Named Entity Recognition (NER) | Pending |\n| Text Generation | Pending |\n| Translation | Pending |\n\n## Getting Started\n\nTo use this package, you need to sign up for an API key from OpenAI to access their language API.\n\n1. Clone the repository to your local machine:\n\n ```bash\n git clone https://github.com/psytech42/genr.ai/\n ```\n \n\n2. Install the dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n3. Use the package in your code:\n\n```python\nfrom Genr.genr import OpenAI\n\n# Initialize the API with your API key\nopenai = OpenAI(\"YOUR_API_KEY\")\n\n# Use the desired function to perform the task\nresult = openai.summarize(\"Your text here\")\n\nprint(result)\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A library to cater all your NLP tasks using LLMs",
    "version": "0.1.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b5da8e12c947b0e2e31ad64e640077cc13d8ba6e1234ffa409dd1e440c86b06",
                "md5": "df05f12632033b6eb2433f84c291cac6",
                "sha256": "3b38fd6978083c1f1848e91899d635f207c7c2f61023ce272dde0e4b60b92a1a"
            },
            "downloads": -1,
            "filename": "Genr-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "df05f12632033b6eb2433f84c291cac6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7.0",
            "size": 4793,
            "upload_time": "2023-01-31T16:05:25",
            "upload_time_iso_8601": "2023-01-31T16:05:25.848324Z",
            "url": "https://files.pythonhosted.org/packages/3b/5d/a8e12c947b0e2e31ad64e640077cc13d8ba6e1234ffa409dd1e440c86b06/Genr-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51b1254faa3dbd80e006859dd193f6458e15d84242f7cbdd16926b4661c9ab4f",
                "md5": "1bdfe6d08ed1d040c0a1a0c9626877f2",
                "sha256": "b59bdc3ce9ea8ac42c1dbaff37dded7fc53ad882554a2ef1ddc5c286397b29b2"
            },
            "downloads": -1,
            "filename": "Genr-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "1bdfe6d08ed1d040c0a1a0c9626877f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.0",
            "size": 4383,
            "upload_time": "2023-01-31T16:05:31",
            "upload_time_iso_8601": "2023-01-31T16:05:31.300928Z",
            "url": "https://files.pythonhosted.org/packages/51/b1/254faa3dbd80e006859dd193f6458e15d84242f7cbdd16926b4661c9ab4f/Genr-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-31 16:05:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "psytech42",
    "github_project": "genr.ai",
    "lcname": "genr"
}
        
Elapsed time: 0.10805s