Metadata-Version: 2.1
Name: langchain-chatgpt-browser-api
Version: 0.0.1
Summary: A Python library that allows you to use Langchain with the ChatGPT instance in your browser.
Author-email: Lorenzo Di Martino <lorflea@gmail.com>
Project-URL: Homepage, https://github.com/lorenzo-polaris/langchain-chatgpt-browser-api
Project-URL: Bug Tracker, https://github.com/lorenzo-polaris/langchain-chatgpt-browser-api/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Langchain LLM

[![PyPI version](https://badge.fury.io/py/langchain-llm.svg)](https://badge.fury.io/py/langchain-llm)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Description

ChatGPT Browser API is a Python library that allows you to use Langchain with the ChatGPT instance in your browser.

With a Plus subscription, you can take advantage of GPT4 without the need for an API key.

## Installation

You can install ChatGPT Browser API via pip. Run the following command to install it:

```
pip install chatgpt-browser-api
```

Ensure that you have Python 3.6 or a higher version installed on your system.

## Usage

Once installed, you can import ChatGPT Browser API. Here's a basic example to get you started:

```python
from chatgpt_browser_api import BaseChatGPT

# Create an instance of LangchainLLM
llm = BaseChatGPT(chatgpt_web_api_url="http://localhost:3001")

answer = chatgpt("Write your prompt here")

print(answer)
```

To start the web server located at chatgpt_web_api_url, see [ChatGPT-Web-API](https://github.com/lorenzo-polaris/ChatGPT-Web-API)

## Contributing

Contributions are welcome! If you have any ideas, bug reports, or feature requests, please open an issue or submit a pull request on GitHub.

## License

This library is licensed under the MIT License. See the LICENSE file for more information.

```

Please note that you may need to replace certain sections, such as the license badge and the GitHub repository link, with the appropriate information for your project.
```
