summaryrefslogtreecommitdiffstats
path: root/docs/webview.md
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-06 12:23:58 +0200
committerGitHub <noreply@github.com>2024-04-06 12:23:58 +0200
commit5db96406dd142b9a84d459ab45a10465bdb61740 (patch)
treeeb7d4844047d6bd8560aa4032a6f3cf9f5cb82ec /docs/webview.md
parentUpdate client.md (diff)
parentUpdate README.md (diff)
downloadgpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.gz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.bz2
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.lz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.xz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.zst
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.zip
Diffstat (limited to 'docs/webview.md')
-rw-r--r--docs/webview.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/webview.md b/docs/webview.md
new file mode 100644
index 00000000..afd6c76c
--- /dev/null
+++ b/docs/webview.md
@@ -0,0 +1,30 @@
+### G4F - Webview GUI
+
+Open the GUI in a window of your OS. Runs on a local/static/ssl server and use a JavaScript API.
+Supports login into the OpenAI Chat (.har files), Image Upload and streamed Text Generation.
+
+Supports all platforms, but only Linux/Windows tested.
+
+1. Install all python requirements with:
+
+```bash
+pip install g4f[webview]
+```
+
+2. *a)* Follow the **OS specific** steps here:
+ [pywebview installation](https://pywebview.flowrl.com/guide/installation.html#dependencies)
+
+2. *b)* **WebView2** on **Windows**: Our application requires the *WebView2 Runtime* to be installed on your system. If you do not have it installed, please download and install it from the [Microsoft Developer Website](https://developer.microsoft.com/en-us/microsoft-edge/webview2/). If you already have *WebView2 Runtime* installed but are encountering issues, navigate to *Installed Windows Apps*, select *WebView2*, and opt for the repair option.
+
+3. Run the app with:
+
+```python
+from g4f.gui.webview import run_webview
+run_webview(debug=True)
+```
+or execute the following command:
+```bash
+python -m g4f.gui.webview -debug
+```
+
+[Return to Home](/) \ No newline at end of file