mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-23 08:34:20 +01:00
docs: audio example
This commit is contained in:
27
README.md
27
README.md
@@ -90,7 +90,19 @@ gptdeploy --description "Given a 3d object, return vertex count and face count"
|
|||||||
```bash
|
```bash
|
||||||
gptdeploy --description "Create mel spectrograms from audio file" --test "https://cdn.pixabay.com/download/audio/2023/02/28/audio_550d815fa5.mp3"
|
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!"
|
||||||
|
```
|
||||||
|

|
||||||
|
wav:
|
||||||
|
<audio controls>
|
||||||
|
<source src="res/text_to_spech_example.wav" type="audio/wav"/>
|
||||||
|
Your browser does not support the audio element.
|
||||||
|
</audio>
|
||||||
|
|
||||||
|
##
|
||||||
# 🔮 vision
|
# 🔮 vision
|
||||||
Use natural language interface to create, deploy and update your microservice infrastructure.
|
Use natural language interface to create, deploy and update your microservice infrastructure.
|
||||||
|
|
||||||
@@ -101,14 +113,25 @@ critical
|
|||||||
- [ ] add more interesting examples to README.md
|
- [ ] add more interesting examples to README.md
|
||||||
- [ ] api key in install instruction
|
- [ ] api key in install instruction
|
||||||
- [ ] add instruction about cleanup of deployments
|
- [ ] add instruction about cleanup of deployments
|
||||||
|
- [ ] add logo
|
||||||
|
|
||||||
Nice to have
|
Nice to have
|
||||||
- [ ] hide prompts in normal mode and show them in verbose mode
|
- [ ] hide prompts in normal mode and show them in verbose mode
|
||||||
- [ ] tests
|
- [ ] tests
|
||||||
- [ ] clean up duplicate code
|
- [ ] clean up duplicate code
|
||||||
- [ ] support popular cloud providers
|
- [ ] support popular cloud providers - lambda, cloud run, cloud functions, ...
|
||||||
- [ ] support local docker builds
|
- [ ] support local docker builds
|
||||||
- [ ] autoscaling enabled for cost saving
|
- [ ] autoscaling enabled for cost saving
|
||||||
|
- [ ] don't show this message:
|
||||||
|
🔐 You are logged in to Jina AI as florian.hoenicke (username:auth0-unified-448f11965ce142b6).
|
||||||
|
To log out, use jina auth logout.
|
||||||
|
- [ ] add more examples to README.md
|
||||||
|
- [ ] support multiple endpoints - example: todolist microservice with endpoints for adding, deleting, and listing todos
|
||||||
|
- [ ] support stateful microservices
|
||||||
|
- [ ] The playground is currently printed twice even if it did not change.
|
||||||
|
Make sure it is only printed twice in case it changed.
|
||||||
|
- [ ] allow to update your microservice by providing feedback
|
||||||
|
- [ ] bug: it can happen that the code generation is hanging forever - in this case aboard and redo the generation
|
||||||
|
- [ ] feat: make playground more stylish by adding attributes like: clean design, beautiful, like it was made by a professional designer, ...
|
||||||
|
|
||||||
[//]: # ([](https://user-images.githubusercontent.com/11627845/226220484-17810f7c-b184-4a03-9af2-3a977fbb014b.mov))
|
[//]: # ([](https://user-images.githubusercontent.com/11627845/226220484-17810f7c-b184-4a03-9af2-3a977fbb014b.mov))
|
||||||
|
|||||||
BIN
res/audio_to_mel_example.png
Normal file
BIN
res/audio_to_mel_example.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 333 KiB |
BIN
res/text_to_speech_example.png
Normal file
BIN
res/text_to_speech_example.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
BIN
res/text_to_speech_example.wav
Normal file
BIN
res/text_to_speech_example.wav
Normal file
Binary file not shown.
@@ -90,7 +90,7 @@ jcloud:
|
|||||||
version: 3.14.2.dev18
|
version: 3.14.2.dev18
|
||||||
labels:
|
labels:
|
||||||
creator: microchain
|
creator: microchain
|
||||||
name: mybelovedocrflow
|
name: gptdeploy
|
||||||
executors:
|
executors:
|
||||||
- name: {executor_name.lower()}
|
- name: {executor_name.lower()}
|
||||||
uses: jinaai+docker://{get_user_name()}/{executor_name}:latest
|
uses: jinaai+docker://{get_user_name()}/{executor_name}:latest
|
||||||
|
|||||||
@@ -52,8 +52,9 @@ def test_executor_file_task(executor_name, test_scenario):
|
|||||||
+ "Use the following import to import the executor: "
|
+ "Use the following import to import the executor: "
|
||||||
f"from executor import {executor_name} "
|
f"from executor import {executor_name} "
|
||||||
+ not_allowed()
|
+ not_allowed()
|
||||||
+ "The test is not allowed to open local files. "
|
+ "The test must not open local files. "
|
||||||
+ "The test is not allowed to mock a function of the executor. ",
|
+ "The test must not mock a function of the executor. "
|
||||||
|
+ "The test must not use other data than the one provided in the test scenario. ",
|
||||||
TEST_EXECUTOR_FILE_TAG,
|
TEST_EXECUTOR_FILE_TAG,
|
||||||
TEST_EXECUTOR_FILE_NAME
|
TEST_EXECUTOR_FILE_NAME
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user