Skip to content

Commit 5cdde9c

Browse files
authored
[ai] feat: add a stub workflow (#295)
1 parent 5f4ac62 commit 5cdde9c

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build HF Dataset
2+
3+
# Stub on master.
4+
5+
on:
6+
workflow_dispatch:
7+
inputs:
8+
hf_dataset:
9+
description: "HF dataset id, e.g. Qdrant/dbpedia-entities-openai3-text-embedding-3-large-1536-100K"
10+
required: true
11+
output_name:
12+
description: "Output tarball basename"
13+
required: true
14+
vector_column:
15+
description: "Embedding column name"
16+
default: "embedding"
17+
18+
jobs:
19+
stub:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- run: |
23+
echo "This is the master stub for the Build HF Dataset workflow."
24+
exit 0

0 commit comments

Comments
 (0)