Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added featured -> other and hello world #31

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/Nosana-RAG-bot-webui/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "Nosana RAG Bot WebUI",
"description": "A web UI for Nosana's Retrieval-Augmented Generation (RAG) bot.",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://nosana.io/img/Nosana_Logomark_color.png"
}
2 changes: 1 addition & 1 deletion templates/Pytorch-jupyter-notebook/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Jupyter Notebook with pytorch:2.4.0-cuda12.1-cudnn9-runtime",
"description": "Jupyter Notebook Service",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://www.google.com/imgres?q=pytorch%20logo&imgurl=https%3A%2F%2Fwww.clipartmax.com%2Fpng%2Fmiddle%2F476-4769276_pytorch-logo-png.png&imgrefurl=https%3A%2F%2Fwww.clipartmax.com%2Fmiddle%2Fm2H7m2i8H7A0A0G6_pytorch-logo-png%2F&docid=AWv1vZ_1ftQU9M&tbnid=6aaNrsdmoeEDjM&vet=12ahUKEwjT3cHsupCKAxVZgP0HHbcpHagQM3oECH0QAA..i&w=840&h=848&hcb=2&ved=2ahUKEwjT3cHsupCKAxVZgP0HHbcpHagQM3oECH0QAA",
"github_url": "https://github.com/pytorch/pytorch"
}
2 changes: 1 addition & 1 deletion templates/Rstudio/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "RStudio Server",
"description": "Run RStudio Server on a remote server accessible through your browser, enabling a consistent and powerful development environment for R.",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/R_logo.svg/1200px-R_logo.svg.png",
"github_url": "https://github.com/rocker-org/rocker"
}
2 changes: 1 addition & 1 deletion templates/Tensorflow-jupyter-notebook/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Jupyter Notebook with Tensorflow",
"description": "Jupyter Notebook Service",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://user-images.githubusercontent.com/40668801/42043955-fbb838a2-7af7-11e8-9795-7f890e871d13.png",
"github_url": "https://github.com/tensorflow/tensorflow"
}
2 changes: 1 addition & 1 deletion templates/Text-To-Speech-UI/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Text to Speech Generation UI",
"description": "A web interface for generating speech from text using various TTS models",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://cdn-icons-png.flaticon.com/512/8984/8984813.png",
"github_url": "https://github.com/coqui-ai/TTS"
}
2 changes: 1 addition & 1 deletion templates/VScode-server/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "VSCode Server",
"description": "Run Visual Studio Code on a remote server accessible through your browser, enabling a consistent and powerful development environment.",
"category": ["Web UI"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://avatars.githubusercontent.com/u/12324908?s=280&v=4",
"github_url": "https://github.com/coder/code-server"
}
2 changes: 1 addition & 1 deletion templates/Whisper-ASR-API/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Whisper ASR Webservice",
"description": "A robust speech recognition service powered by OpenAI's Whisper model, supporting multilingual transcription, translation, and language identification.",
"category": ["API Only"],
"subcategory": ["Featured"],
"subcategory": ["Other"],
"icon": "https://www.datocms-assets.com/96965/1685731715-open-ai-stars-2x.png",
"github_url": "https://github.com/openai/whisper"
}
3 changes: 3 additions & 0 deletions templates/hello-world/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Hello World Template

This is a simple template that prints hello world with the 'ubuntu' docker image.
8 changes: 8 additions & 0 deletions templates/hello-world/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"id": "hello-world",
"name": "Hello World",
"description": "Echo hello world in a ubuntu docker container",
"category": ["Other"],
"subcategory": ["Other"],
"icon": "https://miro.medium.com/v2/resize:fit:1000/1*aPfdrf5Y14OzFUXgEwB9TA.jpeg"
}
18 changes: 18 additions & 0 deletions templates/hello-world/job-definition.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.1",
"type": "container",
"meta": {
"trigger": "job-builder"
},
"ops": [
{
"type": "container/run",
"id": "hello-world",
"args": {
"cmd": "echo hello world",
"image": "ubuntu",
"gpu": true
}
}
]
}
Loading