From 09a8e7652da3943ef97b78818a1235905766a5cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20Ho=CC=88nicke?=
Turn your natural language descriptions into fully functional, deployed microservices with a single command! +Your imagination is the limit!
@@ -38,7 +39,7 @@ pip install gptdeploy
## run
```bash
gptdeploy --description "Take a pdf file as input, and returns the text it contains." \
---test "https://www2.deloitte.com/content/dam/Deloitte/de/Documents/about-deloitte/Deloitte-Unternehmensgeschichte.pdf"
+--test "https://www.africau.edu/images/default/sample.pdf"
```
@@ -83,28 +84,32 @@ graph TB
```bash
gptdeploy --description "Given a 3d object, return vertex count and face count" --test "https://raw.githubusercontent.com/polygonjs/polygonjs-assets/master/models/wolf.obj"
```
-
+
+
## Table extraction
```bash
--description "Given a URL, extract all tables as csv" --test "http://www.ins.tn/statistiques/90"
```
-
+
+
## Audio to mel spectrogram
```bash
gptdeploy --description "Create mel spectrograms from audio file" --test "https://cdn.pixabay.com/download/audio/2023/02/28/audio_550d815fa5.mp3"
```
-
+
+
## Text to speech
```bash
gptdeploy --description "Convert text to speech" --test "Hello, welcome to GPT Deploy!"
```
-[](res/text_to_speech_example.wav)
-## OCR
+
+
+## QR Code Generator
```bash
gptdeploy --description "Generate QR code from URL" --test "https://www.example.com"
```
-
+
# TO BE TESTED