@synsci/cli-darwin-x64 1.1.59 → 1.1.60
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/bin/skills/grpo-rl-training/README.md +1 -1
- package/bin/skills/hugging-face-evaluation/examples/.env.example +7 -0
- package/bin/skills/hugging-face-evaluation/scripts/test_extraction.py +0 -0
- package/bin/skills/hugging-face-model-trainer/scripts/convert_to_gguf.py +0 -0
- package/bin/skills/hugging-face-model-trainer/scripts/estimate_cost.py +0 -0
- package/bin/skills/hugging-face-paper-publisher/scripts/paper_manager.py +0 -0
- package/bin/skills/hugging-face-trackio/.claude-plugin/plugin.json +19 -0
- package/bin/skills/modal/SKILL.md +316 -275
- package/bin/skills/modal/references/advanced-patterns.md +598 -0
- package/bin/skills/modal/references/examples-catalog.md +423 -0
- package/bin/skills/prime-intellect-lab/README.md +69 -0
- package/bin/skills/prime-intellect-lab/SKILL.md +598 -0
- package/bin/skills/prime-intellect-lab/templates/basic_rl_training.toml +82 -0
- package/bin/skills/tensorpool/SKILL.md +519 -0
- package/bin/synsc +0 -0
- package/package.json +1 -1
- package/bin/skills/modal/references/advanced-usage.md +0 -503
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Hugging Face Token (required for all operations)
|
|
2
|
+
# Get your token at: https://huggingface.co/settings/tokens
|
|
3
|
+
HF_TOKEN=hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
4
|
+
|
|
5
|
+
# Artificial Analysis API Key (required for import-aa command)
|
|
6
|
+
# Get your key at: https://artificialanalysis.ai/
|
|
7
|
+
AA_API_KEY=aa_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "trackio-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Query Trackio projects, runs, and metrics using the `trackio` CLI. Use when the user needs to list projects/runs/metrics, get summaries, or retrieve metric values from local Trackio databases. Supports both human-readable and JSON output formats. Covers project discovery, run inspection, metric querying, and system metrics. Designed for LLM agents and automation scripts.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Hugging Face"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://github.com/huggingface/skills",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"trackio",
|
|
12
|
+
"experiment-tracking",
|
|
13
|
+
"metrics",
|
|
14
|
+
"mlops",
|
|
15
|
+
"cli",
|
|
16
|
+
"monitoring"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
|