summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-19 19:34:28 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-19 19:34:28 +0100
commit5612ee4c8d9ffbd0ddc958c1a16f588d9994b223 (patch)
tree626701d8b12e4c2e1bfa45dda16e8d69208551a7 /docs
parentAdd MathJax to GUI #1563, Add model name to GUI #1600 (diff)
downloadgpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar.gz
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar.bz2
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar.lz
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar.xz
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.tar.zst
gpt4free-5612ee4c8d9ffbd0ddc958c1a16f588d9994b223.zip
Diffstat (limited to 'docs')
-rw-r--r--docs/client.md7
-rw-r--r--docs/docker.md46
-rw-r--r--docs/leagcy.md182
-rw-r--r--docs/requirements.md46
4 files changed, 277 insertions, 4 deletions
diff --git a/docs/client.md b/docs/client.md
index 74a5efec..8e02b581 100644
--- a/docs/client.md
+++ b/docs/client.md
@@ -1,4 +1,4 @@
-### G4F Client API Documentation (Beta Version)
+### G4F - Client API (Beta Version)
#### Introduction
@@ -31,7 +31,7 @@ from g4f.client import Client
from g4f.Provider import BingCreateImages, OpenaiChat, Gemini
client = Client(
- text_provider=OpenaiChat,
+ provider=OpenaiChat,
image_provider=Gemini,
proxies=None
)
@@ -89,5 +89,4 @@ Original / Variant:
[![Original Image](/docs/cat.jpeg)](/docs/client.md)
[![Variant Image](/docs/cat.webp)](/docs/client.md)
-[Return to Documentation Home](/)
-``` \ No newline at end of file
+[Return to Home](/) \ No newline at end of file
diff --git a/docs/docker.md b/docs/docker.md
new file mode 100644
index 00000000..6baf386a
--- /dev/null
+++ b/docs/docker.md
@@ -0,0 +1,46 @@
+### G4F - Docker
+
+If you have Docker installed, you can easily set up and run the project without manually installing dependencies.
+
+1. First, ensure you have both Docker and Docker Compose installed.
+
+ - [Install Docker](https://docs.docker.com/get-docker/)
+ - [Install Docker Compose](https://docs.docker.com/compose/install/)
+
+2. Clone the GitHub repo:
+
+```bash
+git clone https://github.com/xtekky/gpt4free.git
+```
+
+3. Navigate to the project directory:
+
+```bash
+cd gpt4free
+```
+
+4. Build the Docker image:
+
+```bash
+docker pull selenium/node-chrome
+docker-compose build
+```
+
+5. Start the service using Docker Compose:
+
+```bash
+docker-compose up
+```
+
+Your server will now be running at `http://localhost:1337`. You can interact with the API or run your tests as you would normally.
+
+To stop the Docker containers, simply run:
+
+```bash
+docker-compose down
+```
+
+> [!Note]
+> When using Docker, any changes you make to your local files will be reflected in the Docker container thanks to the volume mapping in the `docker-compose.yml` file. If you add or remove dependencies, however, you'll need to rebuild the Docker image using `docker-compose build`.
+
+[Return to Home](/) \ No newline at end of file
diff --git a/docs/leagcy.md b/docs/leagcy.md
new file mode 100644
index 00000000..224bc098
--- /dev/null
+++ b/docs/leagcy.md
@@ -0,0 +1,182 @@
+### G4F - Leagcy API
+
+#### ChatCompletion
+
+```python
+import g4f
+
+g4f.debug.logging = True # Enable debug logging
+g4f.debug.version_check = False # Disable automatic version checking
+print(g4f.Provider.Bing.params) # Print supported args for Bing
+
+# Using automatic a provider for the given model
+## Streamed completion
+response = g4f.ChatCompletion.create(
+ model="gpt-3.5-turbo",
+ messages=[{"role": "user", "content": "Hello"}],
+ stream=True,
+)
+for message in response:
+ print(message, flush=True, end='')
+
+## Normal response
+response = g4f.ChatCompletion.create(
+ model=g4f.models.gpt_4,
+ messages=[{"role": "user", "content": "Hello"}],
+) # Alternative model setting
+
+print(response)
+```
+
+##### Completion
+
+```python
+import g4f
+
+allowed_models = [
+ 'code-davinci-002',
+ 'text-ada-001',
+ 'text-babbage-001',
+ 'text-curie-001',
+ 'text-davinci-002',
+ 'text-davinci-003'
+]
+
+response = g4f.Completion.create(
+ model='text-davinci-003',
+ prompt='say this is a test'
+)
+
+print(response)
+```
+
+##### Providers
+
+```python
+import g4f
+
+# Print all available providers
+print([
+ provider.__name__
+ for provider in g4f.Provider.__providers__
+ if provider.working
+])
+
+# Execute with a specific provider
+response = g4f.ChatCompletion.create(
+ model="gpt-3.5-turbo",
+ provider=g4f.Provider.Aichat,
+ messages=[{"role": "user", "content": "Hello"}],
+ stream=True,
+)
+for message in response:
+ print(message)
+```
+
+
+##### Image Upload & Generation
+
+Image upload and generation are supported by three main providers:
+
+- **Bing & Other GPT-4 Providers:** Utilizes Microsoft's Image Creator.
+- **Google Gemini:** Available for free accounts with IP addresses outside Europe.
+- **OpenaiChat with GPT-4:** Accessible for users with a Plus subscription.
+
+```python
+import g4f
+
+# Setting up the request for image creation
+response = g4f.ChatCompletion.create(
+ model=g4f.models.default, # Using the default model
+ provider=g4f.Provider.Gemini, # Specifying the provider as Gemini
+ messages=[{"role": "user", "content": "Create an image like this"}],
+ image=open("images/g4f.png", "rb"), # Image input can be a data URI, bytes, PIL Image, or IO object
+ image_name="g4f.png" # Optional: specifying the filename
+)
+
+# Displaying the response
+print(response)
+
+from g4f.image import ImageResponse
+
+# Get image links from response
+for chunk in g4f.ChatCompletion.create(
+ model=g4f.models.default, # Using the default model
+ provider=g4f.Provider.OpenaiChat, # Specifying the provider as OpenaiChat
+ messages=[{"role": "user", "content": "Create images with dogs"}],
+ access_token="...", # Need a access token from a plus user
+ stream=True,
+ ignore_stream=True
+):
+ if isinstance(chunk, ImageResponse):
+ print(chunk.images) # Print generated image links
+ print(chunk.alt) # Print used prompt for image generation
+```
+
+##### Using Browser
+
+Some providers using a browser to bypass the bot protection. They using the selenium webdriver to control the browser. The browser settings and the login data are saved in a custom directory. If the headless mode is enabled, the browser windows are loaded invisibly. For performance reasons, it is recommended to reuse the browser instances and close them yourself at the end:
+
+```python
+import g4f
+from undetected_chromedriver import Chrome, ChromeOptions
+from g4f.Provider import (
+ Bard,
+ Poe,
+ AItianhuSpace,
+ MyShell,
+ PerplexityAi,
+)
+
+options = ChromeOptions()
+options.add_argument("--incognito");
+webdriver = Chrome(options=options, headless=True)
+for idx in range(10):
+ response = g4f.ChatCompletion.create(
+ model=g4f.models.default,
+ provider=g4f.Provider.MyShell,
+ messages=[{"role": "user", "content": "Suggest me a name."}],
+ webdriver=webdriver
+ )
+ print(f"{idx}:", response)
+webdriver.quit()
+```
+
+##### Async Support
+
+To enhance speed and overall performance, execute providers asynchronously. The total execution time will be determined by the duration of the slowest provider's execution.
+
+```python
+import g4f
+import asyncio
+
+_providers = [
+ g4f.Provider.Aichat,
+ g4f.Provider.ChatBase,
+ g4f.Provider.Bing,
+ g4f.Provider.GptGo,
+ g4f.Provider.You,
+ g4f.Provider.Yqcloud,
+]
+
+async def run_provider(provider: g4f.Provider.BaseProvider):
+ try:
+ response = await g4f.ChatCompletion.create_async(
+ model=g4f.models.default,
+ messages=[{"role": "user", "content": "Hello"}],
+ provider=provider,
+ )
+ print(f"{provider.__name__}:", response)
+ except Exception as e:
+ print(f"{provider.__name__}:", e)
+
+async def run_all():
+ calls = [
+ run_provider(provider) for provider in _providers
+ ]
+ await asyncio.gather(*calls)
+
+asyncio.run(run_all())
+```
+
+[Return to Home](/) \ No newline at end of file
diff --git a/docs/requirements.md b/docs/requirements.md
new file mode 100644
index 00000000..7715a403
--- /dev/null
+++ b/docs/requirements.md
@@ -0,0 +1,46 @@
+### G4F - Additional Requirements
+
+#### Introduction
+
+You can install requirements partially or completely. So G4F can be used as you wish. You have the following options for this:
+
+#### Options
+
+Install required packages for the OpenaiChat provider:
+```
+pip install -U g4f[openai]
+```
+Install required packages for the interference api:
+```
+pip install -U g4f[api]
+```
+Install required packages for the web interface:
+```
+pip install -U g4f[gui]
+```
+Install required packages for uploading / generating images:
+```
+pip install -U g4f[image]
+```
+Install required packages for using the webdriver:
+```
+pip install -U g4f[webdriver]
+```
+Install required package for proxy support with aiohttp:
+```
+pip install -U aiohttp_socks
+```
+Install required package for loading cookies from browser:
+```
+pip install browser_cookie3
+```
+Install curl_cffi for better protection from being blocked:
+```
+pip install curl_cffi
+```
+Install all packages and uninstall this package for disabling the webdriver:
+```
+pip uninstall undetected-chromedriver
+```
+
+[Return to Home](/) \ No newline at end of file