ai4f


Nameai4f JSON
Version 0.1.8 PyPI version JSON
download
home_page
SummaryThe AI 4 Free repository | Collection of LLMs | Forked from xtekky
upload_time2023-08-31 01:02:11
maintainer
docs_urlNone
authorZorenX
requires_python
license
keywords python chatbot reverse-engineering openai chatbots gpt language-model gpt-3 gpt3 openai-api gpt-4 gpt4 chatgpt chatgpt-api openai-chatgpt chatgpt-free chatgpt-4 chatgpt4 chatgpt4-api free free-gpt gpt4free g4f ai4f llm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# AI 4 FREE
By using this repository or any code related to it, you agree to the [legal notice](./LEGAL_NOTICE.md). The author is not responsible for any copies, forks, or reuploads made by other users. This is the author's only account and repository. To prevent impersonation or irresponsible actions, you may comply with the GNU GPL license this Repository uses.

This (quite censored) New Version of gpt4free, was just released, it may contain bugs, open an issue or contribute a PR when encountering one, some features were disabled.
Docker is for now not available but I would be happy if someone contributes a PR. The g4f GUI will be uploaded soon enough.

### New
- pypi package:
```
pip install -U ai4f
```

## Table of Contents:

- [Getting Started](#getting-started)
    + [Prerequisites](#prerequisites)
    + [Setting up the project](#setting-up-the-project)
- [Usage](#usage)
  * [The `g4f` Package](#the-g4f-package)
  * [interference openai-proxy api](#interference-openai-proxy-api-use-with-openai-python-package)
- [Models](#models)
  * [gpt-3.5 / gpt-4](#gpt-35--gpt-4)
  * [Other Models](#other-models)
- [Related gpt4free projects](#related-gpt4free-projects)
- [Contribute](#contribute)
- [ChatGPT clone](#chatgpt-clone)
- [Copyright](#copyright)
- [Copyright Notice](#copyright-notice)
- [Star History](#star-history)

## Getting Started

#### Prerequisites:
1. [Download and install Python](https://www.python.org/downloads/) (Version 3.x is recommended).

#### Setting up the project:
##### Install using pypi
```
pip install -U ai4f
```

##### or

1. Clone the GitHub repository: 
```
git clone https://github.com/hansfzlorenzana/AI-4-Free.git
```
2. Navigate to the project directory:
```
cd AI-4-Free
```
3. (Recommended) Create a virtual environment to manage Python packages for your project:
```
python3 -m venv venv
```
4. Activate the virtual environment:
   - On Windows:
   ```
   .\venv\Scripts\activate
   ```
   - On macOS and Linux:
   ```
   source venv/bin/activate
   ```
5. Install the required Python packages from `requirements.txt`:
```
pip install -r requirements.txt
```

6. Create a `test.py` file in the root folder and start using the repo, further Instructions are below
```py
import ai4f

...
```

## Usage

### The `ai4f` Package
```py
import ai4f


print(ai4f.Provider.Ails.params) # supported args

# Automatic selection of provider

# streamed completion
response = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', messages=[
                                     {"role": "user", "content": "Hello world"}], stream=True)

for message in response:
    print(message)

# normal response
response = ai4f.ChatCompletion.create(model=ai4f.models.gpt_4, messages=[
                                     {"role": "user", "content": "hi"}]) # alterative model setting

print(response)


# Set with provider
response = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', provider=ai4f.Provider.Forefront, messages=[
                                     {"role": "user", "content": "Hello world"}], stream=True)

for message in response:
    print(message)
```

providers:
```py
from ai4f.Provider import (
    Ails,
    You,
    Bing,
    Yqcloud,
    Theb,
    Aichat,
    Bard,
    Vercel,
    Forefront,
    Lockchat,
    Liaobots,
    H2o,
    ChatgptLogin,
    DeepAi,
    GetGpt,
    AItianhu,
    EasyChat,
    Acytoo,
    DfeHub,
    AiService,
    BingHuan,
    Wewordle,
    ChatgptAi,
    opchatgpts,
    Poe,
)

# usage:
response = ai4f.ChatCompletion.create(..., provider=ProviderName)
```

### interference openai-proxy api (use with openai python package)    

run server:
```sh
python3 -m interference.app
```

```py
import openai

openai.api_key = ''
openai.api_base = 'http://127.0.0.1:1337'

chat_completion = openai.ChatCompletion.create(stream=True,
    model='gpt-3.5-turbo', messages=[{'role': 'user', 'content': 'write a poem about a tree'}])

#print(chat_completion.choices[0].message.content)

for token in chat_completion:
    
    content = token['choices'][0]['delta'].get('content')
    if content != None:
        print(content)
```

## Models    
### gpt-3.5 / gpt-4

| Website| Provider| gpt-3.5 | gpt-4 | others | Stream | Status | Auth |
| --- | --- | --- | --- | --- | --- | --- | --- |
| [ai.ls](https://ai.ls) | `g4f.Provider.Ails` | ✔️ | ❌ | ❌ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [you.com](https://you.com) | `g4f.Provider.You` | ✔️ | ❌ |  ❌ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [bing.com](https://bing.com/chat) | `g4f.Provider.Bing` | ❌ | ✔️ |  ❌ |✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [chat9.yqcloud.top](https://chat9.yqcloud.top/) | `g4f.Provider.Yqcloud` | ✔️ | ❌ | ❌ |✔️ |![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [theb.ai](https://theb.ai) | `g4f.Provider.Theb` | ✔️ | ❌ | ❌ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [chat-gpt.org](https://chat-gpt.org/chat) | `g4f.Provider.Aichat` | ✔️ | ❌ | ❌ |❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [bard.google.com](https://bard.google.com) | `g4f.Provider.Bard` | ❌ | ❌ |  ✔️ |❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ✔️ |
| [play.vercel.ai](https://play.vercel.ai) | `g4f.Provider.Vercel` | ✔️ | ❌ | ✔️ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [forefront.com](https://forefront.com) | `g4f.Provider.Forefront` | ✔️ | ❌ |  ❌ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [supertest.lockchat.app](http://supertest.lockchat.app) | `g4f.Provider.Lockchat` | ✔️ | ✔️ | ❌ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [liaobots.com](https://liaobots.com) | `g4f.Provider.Liaobots` | ✔️ | ✔️ |  ❌ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ✔️ |
| [gpt-gm.h2o.ai](https://gpt-gm.h2o.ai) | `g4f.Provider.H2o` | ❌ | ❌ | ✔️ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [chatgptlogin.ac](https://chatgptlogin.ac) | `g4f.Provider.ChatgptLogin` | ✔️ | ❌ |  ❌ | ❌ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [deepai.org](https://deepai.org) | `g4f.Provider.DeepAi` | ✔️ | ❌ |  ❌ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [chat.getgpt.world](https://chat.getgpt.world/) | `g4f.Provider.GetGpt` | ✔️ | ❌ |  ❌ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [www.aitianhu.com](https://www.aitianhu.com/api/chat-process) | `g4f.Provider.AItianhu` | ✔️ | ❌ | ❌ | ❌ |![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [free.easychat.work](https://free.easychat.work) | `g4f.Provider.EasyChat` | ✔️ | ❌ |  ❌ |✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [chat.acytoo.com](https://chat.acytoo.com/api/completions) | `g4f.Provider.Acytoo` | ✔️ | ❌ |  ❌ |❌ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [chat.dfehub.com](https://chat.dfehub.com/api/chat) | `g4f.Provider.DfeHub` | ✔️ | ❌ | ❌ | ✔️ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [aiservice.vercel.app](https://aiservice.vercel.app/api/chat/answer) | `g4f.Provider.AiService` | ✔️ | ❌ | ❌ | ❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [b.ai-huan.xyz](https://b.ai-huan.xyz) | `g4f.Provider.BingHuan` | ✔️ | ✔️ |  ❌ |✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [wewordle.org](https://wewordle.org/gptapi/v1/android/turbo) | `g4f.Provider.Wewordle` | ✔️ | ❌ | ❌ | ❌ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
| [chatgpt.ai](https://chatgpt.ai/gpt-4/) | `g4f.Provider.ChatgptAi` | ❌ | ✔️ |  ❌ |❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [opchatgpts.net](https://opchatgpts.net) | `g4f.Provider.opchatgpts` | ✔️ | ❌ | ❌ | ❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
| [poe.com](https://poe.com) | `g4f.Provider.Poe` |  ✔️  |   ✔️  | ✔️ |  ✔️ |  ![Active](https://img.shields.io/badge/Active-brightgreen) |  ✔️  |


### Other Models

| Model| Base Provider | Provider | Website |
| ------- | ----------- | ---- |---- |
| palm2 | Google | `g4f.Provider.Bard` | [Google Bard](https://bard.google.com/) |
| sage-assistant | Quora | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| claude-instant-v1-100k | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| claude-v2-100k | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| claude-instant-v1 | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| gpt-3.5-turbo-16k | OpenAI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| gpt-4-32k | OpenAI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| llama-2-7b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| llama-2-13b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| llama-2-70b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |
| falcon-40b | Huggingface | `g4f.Provider.H2o` | [H2o](https://www.h2o.ai/) |
| falcon-7b | Huggingface |`g4f.Provider.H2o` | [H2o](https://www.h2o.ai/) |
| llama-13b | Huggingface | `g4f.Provider.H2o`| [H2o](https://www.h2o.ai/) |
| claude-instant-v1-100k | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| claude-instant-v1 | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| claude-v1-100k | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| claude-v1 | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| alpaca-7b | Replicate | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| stablelm-tuned-alpha-7b | Replicate | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| bloom | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| bloomz | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| flan-t5-xxl | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| flan-ul2 | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| gpt-neox-20b | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| oasst-sft-4-pythia-12b-epoch-3.5 |Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| santacoder | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| command-medium-nightly | Cohere | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| command-xlarge-nightly | Cohere | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| code-cushman-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| code-davinci-002 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| text-ada-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| text-babbage-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| text-curie-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| text-davinci-002 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |
| text-davinci-003 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |

## Related AI-4Free projects

<table>
  <thead align="center">
    <tr border: none;>
      <td><b>🎁 Projects</b></td>
      <td><b>⭐ Stars</b></td>
      <td><b>📚 Forks</b></td>
      <td><b>🛎 Issues</b></td>
      <td><b>📬 Pull requests</b></td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a href="https://github.com/xtekky/gpt4free"><b>gpt4free</b></a></td>
      <td><a href="https://github.com/xtekky/gpt4free/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/xtekky/gpt4free?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/xtekky/gpt4free/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/xtekky/gpt4free?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/xtekky/gpt4free/issues"><img alt="Issues" src="https://img.shields.io/github/issues/xtekky/gpt4free?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/xtekky/gpt4free/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/xtekky/gpt4free?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/Ruu3f/freeGPT"><b>freeGPT</b></a></td>
      <td><a href="https://github.com/Ruu3f/freeGPT/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/Ruu3f/freeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/Ruu3f/freeGPT/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/Ruu3f/freeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/Ruu3f/freeGPT/issues"><img alt="Issues" src="https://img.shields.io/github/issues/Ruu3f/freeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/Ruu3f/freeGPT/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/Ruu3f/freeGPT?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/snowby666/poe-api-wrapper"><b>Poe API Wrapper</b></a></td>
      <td><a href="https://github.com/snowby666/poe-api-wrapper/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/snowby666/poe-api-wrapper/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/snowby666/poe-api-wrapper/issues"><img alt="Issues" src="https://img.shields.io/github/issues/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/snowby666/poe-api-wrapper/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/acheong08/EdgeGPT"><b>Edge GPT</b></a></td>
      <td><a href="https://github.com/acheong08/EdgeGPT/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/acheong08/EdgeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/EdgeGPT/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/acheong08/EdgeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/EdgeGPT/issues"><img alt="Issues" src="https://img.shields.io/github/issues/acheong08/EdgeGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/EdgeGPT/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/acheong08/EdgeGPT?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/acheong08/Bard"><b>Bard Reversed</b></a></td>
      <td><a href="https://github.com/acheong08/Bard/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/acheong08/Bard?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/Bard/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/acheong08/Bard?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/Bard/issues"><img alt="Issues" src="https://img.shields.io/github/issues/acheong08/Bard?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/Bard/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/acheong08/Bard?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/acheong08/ChatGPT"><b>ChatGPT Reversed</b></a></td>
      <td><a href="https://github.com/acheong08/ChatGPT/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/acheong08/ChatGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/ChatGPT/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/acheong08/ChatGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/ChatGPT/issues"><img alt="Issues" src="https://img.shields.io/github/issues/acheong08/ChatGPT?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/acheong08/ChatGPT/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/acheong08/ChatGPT?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
    <tr>
      <td><a href="https://github.com/ading2210/poe-api"><b>Python Poe API</b></a></td>
      <td><a href="https://github.com/ading2210/poe-api/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/ading2210/poe-api?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/ading2210/poe-api/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/ading2210/poe-api?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/ading2210/poe-api/issues"><img alt="Issues" src="https://img.shields.io/github/issues/ading2210/poe-api?style=flat-square&labelColor=343b41"/></a></td>
      <td><a href="https://github.com/ading2210/poe-api/pulls"><img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/ading2210/poe-api?style=flat-square&labelColor=343b41"/></a></td>
    </tr>
  </tbody>
</table>

## Contribute

to add another provider, its very simple:
1. create a new file in [ai4f/Provider/Providers](./ai4f/Provider/Providers) with the name of the Provider
2. in the file, paste the *Boilerplate* you can find in [ai4f/Provider/Provider.py](./ai4f/Provider/Provider.py): 

```py
import os
from ..typing import sha256, Dict, get_type_hints

url = None
model = None
supports_stream = False
needs_auth = False

def _create_completion(model: str, messages: list, stream: bool, **kwargs):
    return


params = f'ai4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \
    '(%s)' % ', '.join(
        [f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]])

```

3. Here, you can adjust the settings, for example if the website does support streaming, set `supports_stream` to `True`...
4. Write code to request the provider in `_create_completion` and `yield` the response, *even if* its a one-time response, do not hesitate to look at other providers for inspiration
5. Add the Provider Name in [ai4f/Provider/__init__.py](./ai4f/Provider/__init__.py)

```py
from . import Provider
from .Providers import (
    ...,
    ProviderNameHere
)
```

6. You are done !, test the provider by calling it:
```py
import ai4f

response = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', provider=ai4f.Provider.PROVIDERNAME,
                                    messages=[{"role": "user", "content": "test"}], stream=g4f.Provider.PROVIDERNAME.supports_stream)

for message in response:
    print(message, flush=True, end='')
```

## Copyright:

This program is licensed under the [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.txt)

## Copyright Notice:

```
hansfzlorenzana/AI-4-Free: Copyright (C) 2023 hansfzlorenzana

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
```


## Star History

<a href="https://github.com/hansfzlorenzana/AI-4-Free/stargazers">
        <img width="500" alt="Star History Chart" src="https://api.star-history.com/svg?repos=hansfzlorenzana/AI-4-Free&type=Date">
      </a> 

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ai4f",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,chatbot,reverse-engineering,openai,chatbots,gpt,language-model,gpt-3,gpt3,openai-api,gpt-4,gpt4,chatgpt,chatgpt-api,openai-chatgpt,chatgpt-free,chatgpt-4,chatgpt4,chatgpt4-api,free,free-gpt,gpt4free,g4f,ai4f,llm",
    "author": "ZorenX",
    "author_email": "<hansfzlorenzana@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b3/4d/881ebe56ab7bc37a80f8d569181954dcda9872552eb6b7daf84f6267df31/ai4f-0.1.8.tar.gz",
    "platform": null,
    "description": "\n# AI 4 FREE\nBy using this repository or any code related to it, you agree to the [legal notice](./LEGAL_NOTICE.md). The author is not responsible for any copies, forks, or reuploads made by other users. This is the author's only account and repository. To prevent impersonation or irresponsible actions, you may comply with the GNU GPL license this Repository uses.\n\nThis (quite censored) New Version of gpt4free, was just released, it may contain bugs, open an issue or contribute a PR when encountering one, some features were disabled.\nDocker is for now not available but I would be happy if someone contributes a PR. The g4f GUI will be uploaded soon enough.\n\n### New\n- pypi package:\n```\npip install -U ai4f\n```\n\n## Table of Contents:\n\n- [Getting Started](#getting-started)\n    + [Prerequisites](#prerequisites)\n    + [Setting up the project](#setting-up-the-project)\n- [Usage](#usage)\n  * [The `g4f` Package](#the-g4f-package)\n  * [interference openai-proxy api](#interference-openai-proxy-api-use-with-openai-python-package)\n- [Models](#models)\n  * [gpt-3.5 / gpt-4](#gpt-35--gpt-4)\n  * [Other Models](#other-models)\n- [Related gpt4free projects](#related-gpt4free-projects)\n- [Contribute](#contribute)\n- [ChatGPT clone](#chatgpt-clone)\n- [Copyright](#copyright)\n- [Copyright Notice](#copyright-notice)\n- [Star History](#star-history)\n\n## Getting Started\n\n#### Prerequisites:\n1. [Download and install Python](https://www.python.org/downloads/) (Version 3.x is recommended).\n\n#### Setting up the project:\n##### Install using pypi\n```\npip install -U ai4f\n```\n\n##### or\n\n1. Clone the GitHub repository: \n```\ngit clone https://github.com/hansfzlorenzana/AI-4-Free.git\n```\n2. Navigate to the project directory:\n```\ncd AI-4-Free\n```\n3. (Recommended) Create a virtual environment to manage Python packages for your project:\n```\npython3 -m venv venv\n```\n4. Activate the virtual environment:\n   - On Windows:\n   ```\n   .\\venv\\Scripts\\activate\n   ```\n   - On macOS and Linux:\n   ```\n   source venv/bin/activate\n   ```\n5. Install the required Python packages from `requirements.txt`:\n```\npip install -r requirements.txt\n```\n\n6. Create a `test.py` file in the root folder and start using the repo, further Instructions are below\n```py\nimport ai4f\n\n...\n```\n\n## Usage\n\n### The `ai4f` Package\n```py\nimport ai4f\n\n\nprint(ai4f.Provider.Ails.params) # supported args\n\n# Automatic selection of provider\n\n# streamed completion\nresponse = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', messages=[\n                                     {\"role\": \"user\", \"content\": \"Hello world\"}], stream=True)\n\nfor message in response:\n    print(message)\n\n# normal response\nresponse = ai4f.ChatCompletion.create(model=ai4f.models.gpt_4, messages=[\n                                     {\"role\": \"user\", \"content\": \"hi\"}]) # alterative model setting\n\nprint(response)\n\n\n# Set with provider\nresponse = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', provider=ai4f.Provider.Forefront, messages=[\n                                     {\"role\": \"user\", \"content\": \"Hello world\"}], stream=True)\n\nfor message in response:\n    print(message)\n```\n\nproviders:\n```py\nfrom ai4f.Provider import (\n    Ails,\n    You,\n    Bing,\n    Yqcloud,\n    Theb,\n    Aichat,\n    Bard,\n    Vercel,\n    Forefront,\n    Lockchat,\n    Liaobots,\n    H2o,\n    ChatgptLogin,\n    DeepAi,\n    GetGpt,\n    AItianhu,\n    EasyChat,\n    Acytoo,\n    DfeHub,\n    AiService,\n    BingHuan,\n    Wewordle,\n    ChatgptAi,\n    opchatgpts,\n    Poe,\n)\n\n# usage:\nresponse = ai4f.ChatCompletion.create(..., provider=ProviderName)\n```\n\n### interference openai-proxy api (use with openai python package)    \n\nrun server:\n```sh\npython3 -m interference.app\n```\n\n```py\nimport openai\n\nopenai.api_key = ''\nopenai.api_base = 'http://127.0.0.1:1337'\n\nchat_completion = openai.ChatCompletion.create(stream=True,\n    model='gpt-3.5-turbo', messages=[{'role': 'user', 'content': 'write a poem about a tree'}])\n\n#print(chat_completion.choices[0].message.content)\n\nfor token in chat_completion:\n    \n    content = token['choices'][0]['delta'].get('content')\n    if content != None:\n        print(content)\n```\n\n## Models    \n### gpt-3.5 / gpt-4\n\n| Website| Provider| gpt-3.5 | gpt-4 | others | Stream | Status | Auth |\n| --- | --- | --- | --- | --- | --- | --- | --- |\n| [ai.ls](https://ai.ls) | `g4f.Provider.Ails` | \u2714\ufe0f | \u274c | \u274c | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [you.com](https://you.com) | `g4f.Provider.You` | \u2714\ufe0f | \u274c |  \u274c | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [bing.com](https://bing.com/chat) | `g4f.Provider.Bing` | \u274c | \u2714\ufe0f |  \u274c |\u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [chat9.yqcloud.top](https://chat9.yqcloud.top/) | `g4f.Provider.Yqcloud` | \u2714\ufe0f | \u274c | \u274c |\u2714\ufe0f |![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [theb.ai](https://theb.ai) | `g4f.Provider.Theb` | \u2714\ufe0f | \u274c | \u274c | \u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [chat-gpt.org](https://chat-gpt.org/chat) | `g4f.Provider.Aichat` | \u2714\ufe0f | \u274c | \u274c |\u274c | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [bard.google.com](https://bard.google.com) | `g4f.Provider.Bard` | \u274c | \u274c |  \u2714\ufe0f |\u274c | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u2714\ufe0f |\n| [play.vercel.ai](https://play.vercel.ai) | `g4f.Provider.Vercel` | \u2714\ufe0f | \u274c | \u2714\ufe0f | \u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [forefront.com](https://forefront.com) | `g4f.Provider.Forefront` | \u2714\ufe0f | \u274c |  \u274c | \u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [supertest.lockchat.app](http://supertest.lockchat.app) | `g4f.Provider.Lockchat` | \u2714\ufe0f | \u2714\ufe0f | \u274c | \u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [liaobots.com](https://liaobots.com) | `g4f.Provider.Liaobots` | \u2714\ufe0f | \u2714\ufe0f |  \u274c | \u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u2714\ufe0f |\n| [gpt-gm.h2o.ai](https://gpt-gm.h2o.ai) | `g4f.Provider.H2o` | \u274c | \u274c | \u2714\ufe0f | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [chatgptlogin.ac](https://chatgptlogin.ac) | `g4f.Provider.ChatgptLogin` | \u2714\ufe0f | \u274c |  \u274c | \u274c | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [deepai.org](https://deepai.org) | `g4f.Provider.DeepAi` | \u2714\ufe0f | \u274c |  \u274c | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [chat.getgpt.world](https://chat.getgpt.world/) | `g4f.Provider.GetGpt` | \u2714\ufe0f | \u274c |  \u274c | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [www.aitianhu.com](https://www.aitianhu.com/api/chat-process) | `g4f.Provider.AItianhu` | \u2714\ufe0f | \u274c | \u274c | \u274c |![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [free.easychat.work](https://free.easychat.work) | `g4f.Provider.EasyChat` | \u2714\ufe0f | \u274c |  \u274c |\u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [chat.acytoo.com](https://chat.acytoo.com/api/completions) | `g4f.Provider.Acytoo` | \u2714\ufe0f | \u274c |  \u274c |\u274c | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [chat.dfehub.com](https://chat.dfehub.com/api/chat) | `g4f.Provider.DfeHub` | \u2714\ufe0f | \u274c | \u274c | \u2714\ufe0f | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [aiservice.vercel.app](https://aiservice.vercel.app/api/chat/answer) | `g4f.Provider.AiService` | \u2714\ufe0f | \u274c | \u274c | \u274c | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [b.ai-huan.xyz](https://b.ai-huan.xyz) | `g4f.Provider.BingHuan` | \u2714\ufe0f | \u2714\ufe0f |  \u274c |\u2714\ufe0f | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [wewordle.org](https://wewordle.org/gptapi/v1/android/turbo) | `g4f.Provider.Wewordle` | \u2714\ufe0f | \u274c | \u274c | \u274c | ![Inactive](https://img.shields.io/badge/Inactive-red) | \u274c |\n| [chatgpt.ai](https://chatgpt.ai/gpt-4/) | `g4f.Provider.ChatgptAi` | \u274c | \u2714\ufe0f |  \u274c |\u274c | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [opchatgpts.net](https://opchatgpts.net) | `g4f.Provider.opchatgpts` | \u2714\ufe0f | \u274c | \u274c | \u274c | ![Active](https://img.shields.io/badge/Active-brightgreen) | \u274c |\n| [poe.com](https://poe.com) | `g4f.Provider.Poe` |  \u2714\ufe0f  |   \u2714\ufe0f  | \u2714\ufe0f |  \u2714\ufe0f |  ![Active](https://img.shields.io/badge/Active-brightgreen) |  \u2714\ufe0f  |\n\n\n### Other Models\n\n| Model| Base Provider | Provider | Website |\n| ------- | ----------- | ---- |---- |\n| palm2 | Google | `g4f.Provider.Bard` | [Google Bard](https://bard.google.com/) |\n| sage-assistant | Quora | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| claude-instant-v1-100k | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| claude-v2-100k | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| claude-instant-v1 | Anthropic | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| gpt-3.5-turbo-16k | OpenAI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| gpt-4-32k | OpenAI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| llama-2-7b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| llama-2-13b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| llama-2-70b | Meta AI | `g4f.Provider.Poe` | [Quora Poe](https://poe.com/) |\n| falcon-40b | Huggingface | `g4f.Provider.H2o` | [H2o](https://www.h2o.ai/) |\n| falcon-7b | Huggingface |`g4f.Provider.H2o` | [H2o](https://www.h2o.ai/) |\n| llama-13b | Huggingface | `g4f.Provider.H2o`| [H2o](https://www.h2o.ai/) |\n| claude-instant-v1-100k | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| claude-instant-v1 | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| claude-v1-100k | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| claude-v1 | Anthropic | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| alpaca-7b | Replicate | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| stablelm-tuned-alpha-7b | Replicate | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| bloom | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| bloomz | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| flan-t5-xxl | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| flan-ul2 | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| gpt-neox-20b | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| oasst-sft-4-pythia-12b-epoch-3.5 |Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| santacoder | Huggingface | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| command-medium-nightly | Cohere | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| command-xlarge-nightly | Cohere | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| code-cushman-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| code-davinci-002 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| text-ada-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| text-babbage-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| text-curie-001 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| text-davinci-002 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n| text-davinci-003 | OpenAI | `g4f.Provider.Vercel` | [sdk.vercel.ai](https://sdk.vercel.ai/) |\n\n## Related AI-4Free projects\n\n<table>\n  <thead align=\"center\">\n    <tr border: none;>\n      <td><b>\ud83c\udf81 Projects</b></td>\n      <td><b>\u2b50 Stars</b></td>\n      <td><b>\ud83d\udcda Forks</b></td>\n      <td><b>\ud83d\udece Issues</b></td>\n      <td><b>\ud83d\udcec Pull requests</b></td>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td><a href=\"https://github.com/xtekky/gpt4free\"><b>gpt4free</b></a></td>\n      <td><a href=\"https://github.com/xtekky/gpt4free/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/xtekky/gpt4free?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/xtekky/gpt4free/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/xtekky/gpt4free?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/xtekky/gpt4free/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/xtekky/gpt4free?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/xtekky/gpt4free/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/xtekky/gpt4free?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/Ruu3f/freeGPT\"><b>freeGPT</b></a></td>\n      <td><a href=\"https://github.com/Ruu3f/freeGPT/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/Ruu3f/freeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/Ruu3f/freeGPT/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/Ruu3f/freeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/Ruu3f/freeGPT/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/Ruu3f/freeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/Ruu3f/freeGPT/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/Ruu3f/freeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/snowby666/poe-api-wrapper\"><b>Poe API Wrapper</b></a></td>\n      <td><a href=\"https://github.com/snowby666/poe-api-wrapper/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/snowby666/poe-api-wrapper/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/snowby666/poe-api-wrapper/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/snowby666/poe-api-wrapper/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/snowby666/poe-api-wrapper?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/acheong08/EdgeGPT\"><b>Edge GPT</b></a></td>\n      <td><a href=\"https://github.com/acheong08/EdgeGPT/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/acheong08/EdgeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/EdgeGPT/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/acheong08/EdgeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/EdgeGPT/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/acheong08/EdgeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/EdgeGPT/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/acheong08/EdgeGPT?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/acheong08/Bard\"><b>Bard Reversed</b></a></td>\n      <td><a href=\"https://github.com/acheong08/Bard/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/acheong08/Bard?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/Bard/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/acheong08/Bard?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/Bard/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/acheong08/Bard?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/Bard/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/acheong08/Bard?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/acheong08/ChatGPT\"><b>ChatGPT Reversed</b></a></td>\n      <td><a href=\"https://github.com/acheong08/ChatGPT/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/acheong08/ChatGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/ChatGPT/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/acheong08/ChatGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/ChatGPT/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/acheong08/ChatGPT?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/acheong08/ChatGPT/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/acheong08/ChatGPT?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n    <tr>\n      <td><a href=\"https://github.com/ading2210/poe-api\"><b>Python Poe API</b></a></td>\n      <td><a href=\"https://github.com/ading2210/poe-api/stargazers\"><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/ading2210/poe-api?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/ading2210/poe-api/network/members\"><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/ading2210/poe-api?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/ading2210/poe-api/issues\"><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/ading2210/poe-api?style=flat-square&labelColor=343b41\"/></a></td>\n      <td><a href=\"https://github.com/ading2210/poe-api/pulls\"><img alt=\"Pull Requests\" src=\"https://img.shields.io/github/issues-pr/ading2210/poe-api?style=flat-square&labelColor=343b41\"/></a></td>\n    </tr>\n  </tbody>\n</table>\n\n## Contribute\n\nto add another provider, its very simple:\n1. create a new file in [ai4f/Provider/Providers](./ai4f/Provider/Providers) with the name of the Provider\n2. in the file, paste the *Boilerplate* you can find in [ai4f/Provider/Provider.py](./ai4f/Provider/Provider.py): \n\n```py\nimport os\nfrom ..typing import sha256, Dict, get_type_hints\n\nurl = None\nmodel = None\nsupports_stream = False\nneeds_auth = False\n\ndef _create_completion(model: str, messages: list, stream: bool, **kwargs):\n    return\n\n\nparams = f'ai4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \\\n    '(%s)' % ', '.join(\n        [f\"{name}: {get_type_hints(_create_completion)[name].__name__}\" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]])\n\n```\n\n3. Here, you can adjust the settings, for example if the website does support streaming, set `supports_stream` to `True`...\n4. Write code to request the provider in `_create_completion` and `yield` the response, *even if* its a one-time response, do not hesitate to look at other providers for inspiration\n5. Add the Provider Name in [ai4f/Provider/__init__.py](./ai4f/Provider/__init__.py)\n\n```py\nfrom . import Provider\nfrom .Providers import (\n    ...,\n    ProviderNameHere\n)\n```\n\n6. You are done !, test the provider by calling it:\n```py\nimport ai4f\n\nresponse = ai4f.ChatCompletion.create(model='gpt-3.5-turbo', provider=ai4f.Provider.PROVIDERNAME,\n                                    messages=[{\"role\": \"user\", \"content\": \"test\"}], stream=g4f.Provider.PROVIDERNAME.supports_stream)\n\nfor message in response:\n    print(message, flush=True, end='')\n```\n\n## Copyright:\n\nThis program is licensed under the [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.txt)\n\n## Copyright Notice:\n\n```\nhansfzlorenzana/AI-4-Free: Copyright (C) 2023 hansfzlorenzana\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <https://www.gnu.org/licenses/>.\n```\n\n\n## Star History\n\n<a href=\"https://github.com/hansfzlorenzana/AI-4-Free/stargazers\">\n        <img width=\"500\" alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=hansfzlorenzana/AI-4-Free&type=Date\">\n      </a> \n",
    "bugtrack_url": null,
    "license": "",
    "summary": "The AI 4 Free repository | Collection of LLMs | Forked from xtekky",
    "version": "0.1.8",
    "project_urls": null,
    "split_keywords": [
        "python",
        "chatbot",
        "reverse-engineering",
        "openai",
        "chatbots",
        "gpt",
        "language-model",
        "gpt-3",
        "gpt3",
        "openai-api",
        "gpt-4",
        "gpt4",
        "chatgpt",
        "chatgpt-api",
        "openai-chatgpt",
        "chatgpt-free",
        "chatgpt-4",
        "chatgpt4",
        "chatgpt4-api",
        "free",
        "free-gpt",
        "gpt4free",
        "g4f",
        "ai4f",
        "llm"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b34d881ebe56ab7bc37a80f8d569181954dcda9872552eb6b7daf84f6267df31",
                "md5": "1be218dac9a5b9791c48c2650674c647",
                "sha256": "e3cd81be42f016883cf8400e574af0b5acec9400791e35fa3796b83aaf88ec92"
            },
            "downloads": -1,
            "filename": "ai4f-0.1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "1be218dac9a5b9791c48c2650674c647",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 60968,
            "upload_time": "2023-08-31T01:02:11",
            "upload_time_iso_8601": "2023-08-31T01:02:11.026514Z",
            "url": "https://files.pythonhosted.org/packages/b3/4d/881ebe56ab7bc37a80f8d569181954dcda9872552eb6b7daf84f6267df31/ai4f-0.1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-31 01:02:11",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ai4f"
}
        
Elapsed time: 0.11429s