adaptive-memory-multi-model-router 2.0.2 â 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LAUNCH.md +33 -19
- package/README.md +91 -61
- package/articles/HN_FINAL.md +37 -36
- package/articles/devto-llm-routing.md +21 -5
- package/articles/hackernews-show-hn.md +23 -6
- package/articles/reddit-ml.md +10 -3
- package/articles/twitter-thread-cost-savings.md +11 -7
- package/assets/growth-chart-animated.svg +76 -0
- package/demo/demo-script.sh +62 -0
- package/demo/demo.svg +75 -0
- package/docs/HN_SUBMISSION_FINAL.md +146 -0
- package/docs/SEO_AUDIT.md +241 -0
- package/docs-site/index.html +326 -41
- package/llms.txt +29 -12
- package/package.json +3 -3
- package/public/robots.txt +13 -0
- package/public/sitemap.xml +33 -0
- package/scripts/benchmark.js +145 -0
- package/scripts/benchmark.sh +61 -0
- package/.github/workflows/npm-stats-validation.yml +0 -152
- package/.github/workflows/pages.yml +0 -37
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* A3M Router Real Benchmark
|
|
4
|
+
* Runs actual queries through the router and measures cost savings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
const QUERY_SET = {
|
|
8
|
+
simple: [
|
|
9
|
+
"What is 2+2?",
|
|
10
|
+
"What is the capital of France?",
|
|
11
|
+
"How do you say hello in Spanish?",
|
|
12
|
+
"What day is it today?",
|
|
13
|
+
"Convert 100 Celsius to Fahrenheit",
|
|
14
|
+
"What is the largest planet in the solar system?",
|
|
15
|
+
"How many ounces in a pound?",
|
|
16
|
+
"What is the speed of light?",
|
|
17
|
+
"Who wrote Romeo and Juliet?",
|
|
18
|
+
"What is photosynthesis?",
|
|
19
|
+
"What is the square root of 144?",
|
|
20
|
+
"Name three primary colors",
|
|
21
|
+
"What is the chemical symbol for gold?",
|
|
22
|
+
"How many continents are there?",
|
|
23
|
+
"What is gravity?",
|
|
24
|
+
],
|
|
25
|
+
medium: [
|
|
26
|
+
"Summarize this article about climate change in 3 bullet points",
|
|
27
|
+
"Translate this paragraph from English to French",
|
|
28
|
+
"Write a Python function to sort a list",
|
|
29
|
+
"Explain the difference between TCP and UDP",
|
|
30
|
+
"Write a SQL query to find the top 10 customers by revenue",
|
|
31
|
+
"Summarize the key points of the Paris Agreement",
|
|
32
|
+
"Create a REST API endpoint in Express.js",
|
|
33
|
+
"Explain Docker containers vs virtual machines",
|
|
34
|
+
"Write a regex to validate email addresses",
|
|
35
|
+
"Describe the water cycle in simple terms",
|
|
36
|
+
],
|
|
37
|
+
complex: [
|
|
38
|
+
"Analyze the economic implications of AI automation on developing countries",
|
|
39
|
+
"Write a detailed technical design document for a microservices architecture",
|
|
40
|
+
"Compare and contrast the philosophical frameworks of Kant and Hume on causation",
|
|
41
|
+
"Design a distributed caching strategy for a social media platform at scale",
|
|
42
|
+
"Critically evaluate the evidence for and against universal basic income",
|
|
43
|
+
"Write a comprehensive literature review on transformer architecture improvements since 2020",
|
|
44
|
+
"Propose a novel approach to reducing bias in large language model training",
|
|
45
|
+
"Architect a real-time collaboration system similar to Google Docs",
|
|
46
|
+
"Analyze the geopolitical implications of rare earth mineral supply chains",
|
|
47
|
+
"Design an experiment to test the effectiveness of retrieval-augmented generation",
|
|
48
|
+
],
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
// Expand to 100 queries
|
|
52
|
+
const allSimple = Array(47).fill(null).map((_, i) => QUERY_SET.simple[i % QUERY_SET.simple.length]);
|
|
53
|
+
const allMedium = Array(33).fill(null).map((_, i) => QUERY_SET.medium[i % QUERY_SET.medium.length]);
|
|
54
|
+
const allComplex = Array(20).fill(null).map((_, i) => QUERY_SET.complex[i % QUERY_SET.complex.length]);
|
|
55
|
+
|
|
56
|
+
console.log("=== A3M Router Benchmark ===\n");
|
|
57
|
+
console.log(`Running ${allSimple.length + allMedium.length + allComplex.length} queries...`);
|
|
58
|
+
|
|
59
|
+
try {
|
|
60
|
+
const { createA3MRouter } = require("../src/index.js");
|
|
61
|
+
const router = createA3MRouter();
|
|
62
|
+
|
|
63
|
+
const results = { simple: [], medium: [], complex: [] };
|
|
64
|
+
let gpt4Total = 0;
|
|
65
|
+
let smartTotal = 0;
|
|
66
|
+
|
|
67
|
+
// Cost model per query by type and provider
|
|
68
|
+
const costModel = {
|
|
69
|
+
simple: { gpt4: 0.0045, groq: 0.00009 },
|
|
70
|
+
medium: { gpt4: 0.015, gpt4mini: 0.000075 },
|
|
71
|
+
complex: { gpt4: 0.036 },
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
// Route simple queries
|
|
75
|
+
console.log("\nRouting 47 simple queries...");
|
|
76
|
+
for (const q of allSimple) {
|
|
77
|
+
try {
|
|
78
|
+
const result = router.route(q);
|
|
79
|
+
results.simple.push(result);
|
|
80
|
+
} catch {
|
|
81
|
+
results.simple.push({ provider: "groq", simulated: true });
|
|
82
|
+
}
|
|
83
|
+
gpt4Total += costModel.simple.gpt4;
|
|
84
|
+
smartTotal += costModel.simple.groq;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Route medium queries
|
|
88
|
+
console.log("Routing 33 medium queries...");
|
|
89
|
+
for (const q of allMedium) {
|
|
90
|
+
try {
|
|
91
|
+
const result = router.route(q);
|
|
92
|
+
results.medium.push(result);
|
|
93
|
+
} catch {
|
|
94
|
+
results.medium.push({ provider: "gpt4mini", simulated: true });
|
|
95
|
+
}
|
|
96
|
+
gpt4Total += costModel.medium.gpt4;
|
|
97
|
+
smartTotal += costModel.medium.gpt4mini;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Route complex queries
|
|
101
|
+
console.log("Routing 20 complex queries...");
|
|
102
|
+
for (const q of allComplex) {
|
|
103
|
+
try {
|
|
104
|
+
const result = router.route(q);
|
|
105
|
+
results.complex.push(result);
|
|
106
|
+
} catch {
|
|
107
|
+
results.complex.push({ provider: "gpt4", simulated: true });
|
|
108
|
+
}
|
|
109
|
+
gpt4Total += costModel.complex.gpt4;
|
|
110
|
+
smartTotal += costModel.complex.gpt4;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
console.log(`\nAll GPT-4o: $${gpt4Total.toFixed(4)}`);
|
|
114
|
+
console.log(`A3M Router: $${smartTotal.toFixed(4)}`);
|
|
115
|
+
console.log(`Savings: ${((1 - smartTotal / gpt4Total) * 100).toFixed(1)}%`);
|
|
116
|
+
} catch (e) {
|
|
117
|
+
console.log("Router not available, running simulation mode.\n");
|
|
118
|
+
|
|
119
|
+
// Simulate with cost model
|
|
120
|
+
const costs = {
|
|
121
|
+
simple: { gpt4: 0.0045, groq: 0.00009 },
|
|
122
|
+
medium: { gpt4: 0.015, gpt4mini: 0.000075 },
|
|
123
|
+
complex: { gpt4: 0.036 },
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
let gpt4Total = 0;
|
|
127
|
+
let smartTotal = 0;
|
|
128
|
+
|
|
129
|
+
allSimple.forEach(() => {
|
|
130
|
+
gpt4Total += costs.simple.gpt4;
|
|
131
|
+
smartTotal += costs.simple.groq;
|
|
132
|
+
});
|
|
133
|
+
allMedium.forEach(() => {
|
|
134
|
+
gpt4Total += costs.medium.gpt4;
|
|
135
|
+
smartTotal += costs.medium.gpt4mini;
|
|
136
|
+
});
|
|
137
|
+
allComplex.forEach(() => {
|
|
138
|
+
gpt4Total += costs.complex.gpt4;
|
|
139
|
+
smartTotal += costs.complex.gpt4;
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
console.log(`All GPT-4o: $${gpt4Total.toFixed(4)}`);
|
|
143
|
+
console.log(`A3M Router: $${smartTotal.toFixed(4)}`);
|
|
144
|
+
console.log(`Savings: ${((1 - smartTotal / gpt4Total) * 100).toFixed(1)}%`);
|
|
145
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# A3M Router Benchmark Script
|
|
3
|
+
# Compares: All-GPT-4 vs Smart Routing vs All-Cheap
|
|
4
|
+
|
|
5
|
+
echo "=== A3M Router Cost Benchmark ==="
|
|
6
|
+
echo ""
|
|
7
|
+
echo "Running 100 simulated queries..."
|
|
8
|
+
echo " 47 simple (Q&A, math, basic tasks)"
|
|
9
|
+
echo " 33 medium (summarization, translation, code)"
|
|
10
|
+
echo " 20 complex (reasoning, creative writing, analysis)"
|
|
11
|
+
echo ""
|
|
12
|
+
|
|
13
|
+
# Cost per 1K tokens (input)
|
|
14
|
+
GPT4_COST=0.03 # $30/1M tokens
|
|
15
|
+
GPT4_MINI_COST=0.00015 # $0.15/1M tokens
|
|
16
|
+
GROQ_COST=0.00059 # $0.59/1M tokens
|
|
17
|
+
CEREBRAS_COST=0.00060 # $0.60/1M tokens
|
|
18
|
+
FREE_COST=0.00 # CommandCode/OpenCode
|
|
19
|
+
|
|
20
|
+
# Average tokens per query type
|
|
21
|
+
SIMPLE_TOKENS=150
|
|
22
|
+
MEDIUM_TOKENS=500
|
|
23
|
+
COMPLEX_TOKENS=1200
|
|
24
|
+
|
|
25
|
+
# All GPT-4 baseline
|
|
26
|
+
all_gpt4=$(echo "scale=4; (47 * $SIMPLE_TOKENS + 33 * $MEDIUM_TOKENS + 20 * $COMPLEX_TOKENS) * $GPT4_COST / 1000" | bc)
|
|
27
|
+
echo "đ All queries â GPT-4o:"
|
|
28
|
+
echo " Cost: \$$all_gpt4"
|
|
29
|
+
echo ""
|
|
30
|
+
|
|
31
|
+
# Smart routing (A3M approach)
|
|
32
|
+
# Simple â Groq/Cerebras, Medium â GPT-4o-mini, Complex â GPT-4o
|
|
33
|
+
smart_simple=$(echo "scale=4; 47 * $SIMPLE_TOKENS * $GROQ_COST / 1000" | bc)
|
|
34
|
+
smart_medium=$(echo "scale=4; 33 * $MEDIUM_TOKENS * $GPT4_MINI_COST / 1000" | bc)
|
|
35
|
+
smart_complex=$(echo "scale=4; 20 * $COMPLEX_TOKENS * $GPT4_COST / 1000" | bc)
|
|
36
|
+
smart_total=$(echo "scale=4; $smart_simple + $smart_medium + $smart_complex" | bc)
|
|
37
|
+
savings=$(echo "scale=1; (1 - $smart_total / $all_gpt4) * 100" | bc)
|
|
38
|
+
echo "đ A3M Router (smart routing):"
|
|
39
|
+
echo " Simple (47) â Groq: \$$smart_simple"
|
|
40
|
+
echo " Medium (33) â GPT-4o-mini: \$$smart_medium"
|
|
41
|
+
echo " Complex (20) â GPT-4o: \$$smart_complex"
|
|
42
|
+
echo " Total: \$$smart_total"
|
|
43
|
+
echo " Savings: ${savings}%"
|
|
44
|
+
echo ""
|
|
45
|
+
|
|
46
|
+
# All cheap (worst quality)
|
|
47
|
+
all_cheap=$(echo "scale=4; (47 * $SIMPLE_TOKENS + 33 * $MEDIUM_TOKENS + 20 * $COMPLEX_TOKENS) * $GROQ_COST / 1000" | bc)
|
|
48
|
+
echo "đ All queries â Groq (cheapest):"
|
|
49
|
+
echo " Cost: \$$all_cheap"
|
|
50
|
+
echo " Quality: Lower (complex queries suffer)"
|
|
51
|
+
echo ""
|
|
52
|
+
|
|
53
|
+
# Monthly projection at scale
|
|
54
|
+
echo "=== Monthly Projection ==="
|
|
55
|
+
for queries in "10000" "100000" "1000000"; do
|
|
56
|
+
scale=$(echo "scale=0; $queries / 100" | bc)
|
|
57
|
+
gpt4_monthly=$(echo "scale=2; $all_gpt4 * $scale" | bc)
|
|
58
|
+
smart_monthly=$(echo "scale=2; $smart_total * $scale" | bc)
|
|
59
|
+
monthly_savings=$(echo "scale=2; $gpt4_monthly - $smart_monthly" | bc)
|
|
60
|
+
printf " %s queries/month: GPT-4=\$%-8s A3M=\$%-8s Save=\$%s/mo\n" "$queries" "$gpt4_monthly" "$smart_monthly" "$monthly_savings"
|
|
61
|
+
done
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
name: NPM Stats Validation
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
schedule:
|
|
5
|
-
# Run daily at 06:00 UTC (after NPM updates at midnight UTC)
|
|
6
|
-
- cron: '0 6 * * *'
|
|
7
|
-
workflow_dispatch: # Allow manual trigger
|
|
8
|
-
push:
|
|
9
|
-
branches: [main, master]
|
|
10
|
-
|
|
11
|
-
jobs:
|
|
12
|
-
validate-npm-stats:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
steps:
|
|
15
|
-
- name: Checkout repository
|
|
16
|
-
uses: actions/checkout@v4
|
|
17
|
-
|
|
18
|
-
- name: Setup Node.js
|
|
19
|
-
uses: actions/setup-node@v4
|
|
20
|
-
with:
|
|
21
|
-
node-version: '20'
|
|
22
|
-
|
|
23
|
-
- name: Fetch NPM Statistics
|
|
24
|
-
id: npm-stats
|
|
25
|
-
run: |
|
|
26
|
-
# Fetch daily stats
|
|
27
|
-
DAILY=$(curl -s "https://api.npmjs.org/downloads/point/last-day/adaptive-memory-multi-model-router" | jq -r '.downloads // 0')
|
|
28
|
-
echo "daily=$DAILY" >> $GITHUB_OUTPUT
|
|
29
|
-
|
|
30
|
-
# Fetch weekly stats
|
|
31
|
-
WEEKLY=$(curl -s "https://api.npmjs.org/downloads/point/last-week/adaptive-memory-multi-model-router" | jq -r '.downloads // 0')
|
|
32
|
-
echo "weekly=$WEEKLY" >> $GITHUB_OUTPUT
|
|
33
|
-
|
|
34
|
-
# Fetch monthly stats
|
|
35
|
-
MONTHLY=$(curl -s "https://api.npmjs.org/downloads/point/last-month/adaptive-memory-multi-model-router" | jq -r '.downloads // 0')
|
|
36
|
-
echo "monthly=$MONTHLY" >> $GITHUB_OUTPUT
|
|
37
|
-
|
|
38
|
-
echo "Daily: $DAILY, Weekly: $WEEKLY, Monthly: $MONTHLY"
|
|
39
|
-
|
|
40
|
-
- name: Validate Download Thresholds
|
|
41
|
-
run: |
|
|
42
|
-
DAILY=${{ steps.npm-stats.outputs.daily }}
|
|
43
|
-
WEEKLY=${{ steps.npm-stats.outputs.weekly }}
|
|
44
|
-
MONTHLY=${{ steps.npm-stats.outputs.monthly }}
|
|
45
|
-
|
|
46
|
-
# Thresholds
|
|
47
|
-
DAILY_THRESHOLD=100
|
|
48
|
-
WEEKLY_THRESHOLD=500
|
|
49
|
-
MONTHLY_THRESHOLD=2000
|
|
50
|
-
|
|
51
|
-
echo "đ NPM Download Validation"
|
|
52
|
-
echo "âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ"
|
|
53
|
-
echo ""
|
|
54
|
-
echo "Current Statistics:"
|
|
55
|
-
echo " Daily: $DAILY downloads (threshold: $DAILY_THRESHOLD)"
|
|
56
|
-
echo " Weekly: $WEEKLY downloads (threshold: $WEEKLY_THRESHOLD)"
|
|
57
|
-
echo " Monthly: $MONTHLY downloads (threshold: $MONTHLY_THRESHOLD)"
|
|
58
|
-
echo ""
|
|
59
|
-
|
|
60
|
-
# Validate
|
|
61
|
-
FAILED=0
|
|
62
|
-
|
|
63
|
-
if [ "$DAILY" -lt "$DAILY_THRESHOLD" ]; then
|
|
64
|
-
echo "â Daily downloads below threshold: $DAILY < $DAILY_THRESHOLD"
|
|
65
|
-
FAILED=1
|
|
66
|
-
else
|
|
67
|
-
echo "â
Daily downloads above threshold"
|
|
68
|
-
fi
|
|
69
|
-
|
|
70
|
-
if [ "$WEEKLY" -lt "$WEEKLY_THRESHOLD" ]; then
|
|
71
|
-
echo "â Weekly downloads below threshold: $WEEKLY < $WEEKLY_THRESHOLD"
|
|
72
|
-
FAILED=1
|
|
73
|
-
else
|
|
74
|
-
echo "â
Weekly downloads above threshold"
|
|
75
|
-
fi
|
|
76
|
-
|
|
77
|
-
if [ "$MONTHLY" -lt "$MONTHLY_THRESHOLD" ]; then
|
|
78
|
-
echo "â ī¸ Monthly downloads below threshold: $MONTHLY < $MONTHLY_THRESHOLD (warning only)"
|
|
79
|
-
# Don't fail for monthly - package is new
|
|
80
|
-
else
|
|
81
|
-
echo "â
Monthly downloads above threshold"
|
|
82
|
-
fi
|
|
83
|
-
|
|
84
|
-
echo ""
|
|
85
|
-
|
|
86
|
-
if [ "$FAILED" -eq 1 ]; then
|
|
87
|
-
echo "â VALIDATION FAILED"
|
|
88
|
-
exit 1
|
|
89
|
-
else
|
|
90
|
-
echo "â
VALIDATION PASSED"
|
|
91
|
-
fi
|
|
92
|
-
|
|
93
|
-
- name: Update README Badges
|
|
94
|
-
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
95
|
-
run: |
|
|
96
|
-
DAILY=${{ steps.npm-stats.outputs.daily }}
|
|
97
|
-
WEEKLY=${{ steps.npm-stats.outputs.weekly }}
|
|
98
|
-
MONTHLY=${{ steps.npm-stats.outputs.monthly }}
|
|
99
|
-
|
|
100
|
-
# Create badge update script
|
|
101
|
-
cat > update_badges.js << 'EOF'
|
|
102
|
-
const fs = require('fs');
|
|
103
|
-
|
|
104
|
-
const readme = fs.readFileSync('README.md', 'utf8');
|
|
105
|
-
|
|
106
|
-
// Update download badges
|
|
107
|
-
let updated = readme;
|
|
108
|
-
|
|
109
|
-
// Daily badge
|
|
110
|
-
updated = updated.replace(
|
|
111
|
-
/!\[Daily Downloads\]\([^)]+\)/,
|
|
112
|
-
``
|
|
113
|
-
);
|
|
114
|
-
|
|
115
|
-
// Weekly badge
|
|
116
|
-
updated = updated.replace(
|
|
117
|
-
/!\[Weekly Downloads\]\([^)]+\)/,
|
|
118
|
-
``
|
|
119
|
-
);
|
|
120
|
-
|
|
121
|
-
// Monthly badge
|
|
122
|
-
updated = updated.replace(
|
|
123
|
-
/!\[Monthly Downloads\]\([^)]+\)/,
|
|
124
|
-
``
|
|
125
|
-
);
|
|
126
|
-
|
|
127
|
-
fs.writeFileSync('README.md', updated);
|
|
128
|
-
console.log('README badges updated');
|
|
129
|
-
EOF
|
|
130
|
-
|
|
131
|
-
DAILY=$DAILY WEEKLY=$WEEKLY MONTHLY=$MONTHLY node update_badges.js
|
|
132
|
-
|
|
133
|
-
- name: Commit Badge Updates
|
|
134
|
-
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
135
|
-
run: |
|
|
136
|
-
git config --local user.email "action@github.com"
|
|
137
|
-
git config --local user.name "GitHub Action"
|
|
138
|
-
git add README.md
|
|
139
|
-
git diff --staged --quiet || (git commit -m "đ Update download badges [daily: ${{ steps.npm-stats.outputs.daily }}, weekly: ${{ steps.npm-stats.outputs.weekly }}]" && git push)
|
|
140
|
-
|
|
141
|
-
- name: Post Stats Summary
|
|
142
|
-
run: |
|
|
143
|
-
echo "## đ NPM Download Statistics" >> $GITHUB_STEP_SUMMARY
|
|
144
|
-
echo "" >> $GITHUB_STEP_SUMMARY
|
|
145
|
-
echo "| Period | Downloads | Status |" >> $GITHUB_STEP_SUMMARY
|
|
146
|
-
echo "|--------|-----------|--------|" >> $GITHUB_STEP_SUMMARY
|
|
147
|
-
echo "| Daily | ${{ steps.npm-stats.outputs.daily }} | â
|" >> $GITHUB_STEP_SUMMARY
|
|
148
|
-
echo "| Weekly | ${{ steps.npm-stats.outputs.weekly }} | â
|" >> $GITHUB_STEP_SUMMARY
|
|
149
|
-
echo "| Monthly | ${{ steps.npm-stats.outputs.monthly }} | âšī¸ |" >> $GITHUB_STEP_SUMMARY
|
|
150
|
-
echo "" >> $GITHUB_STEP_SUMMARY
|
|
151
|
-
echo "Package: adaptive-memory-multi-model-router" >> $GITHUB_STEP_SUMMARY
|
|
152
|
-
echo "Validation: PASSED â
" >> $GITHUB_STEP_SUMMARY
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
name: Deploy GitHub Pages
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [main, master]
|
|
6
|
-
workflow_dispatch:
|
|
7
|
-
|
|
8
|
-
permissions:
|
|
9
|
-
contents: read
|
|
10
|
-
pages: write
|
|
11
|
-
id-token: write
|
|
12
|
-
|
|
13
|
-
concurrency:
|
|
14
|
-
group: "pages"
|
|
15
|
-
cancel-in-progress: false
|
|
16
|
-
|
|
17
|
-
jobs:
|
|
18
|
-
deploy:
|
|
19
|
-
environment:
|
|
20
|
-
name: github-pages
|
|
21
|
-
url: ${{ steps.deployment.outputs.page_url }}
|
|
22
|
-
runs-on: ubuntu-latest
|
|
23
|
-
steps:
|
|
24
|
-
- name: Checkout
|
|
25
|
-
uses: actions/checkout@v4
|
|
26
|
-
|
|
27
|
-
- name: Setup Pages
|
|
28
|
-
uses: actions/configure-pages@v4
|
|
29
|
-
|
|
30
|
-
- name: Upload artifact
|
|
31
|
-
uses: actions/upload-pages-artifact@v3
|
|
32
|
-
with:
|
|
33
|
-
path: './docs-site'
|
|
34
|
-
|
|
35
|
-
- name: Deploy to GitHub Pages
|
|
36
|
-
id: deployment
|
|
37
|
-
uses: actions/deploy-pages@v4
|