-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPROJECT.json
More file actions
67 lines (67 loc) · 2.29 KB
/
Copy pathPROJECT.json
File metadata and controls
67 lines (67 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "flash-agents",
"displayName": "Flash Agents",
"version": "1.0.0",
"description": "40 one-shot AI agents on Cerebras Inference — sub-second structured JSON tasks, vision, rate-safe.",
"url": "https://github.com/anthonyoccelli33480-ctrl/flash-agents",
"license": "MIT",
"author": {
"name": "Anthony Occelli",
"url": "https://github.com/anthonyoccelli33480-ctrl"
},
"ecosystem": {
"role": "cerebras-showcase",
"related": [
{
"name": "devstral-lab",
"url": "https://github.com/anthonyoccelli33480-ctrl/devstral-lab",
"relation": "mistral-code-phase-1"
},
{
"name": "mistral-bureau",
"url": "https://github.com/anthonyoccelli33480-ctrl/mistral-bureau",
"relation": "mistral-fr-phase-2"
}
]
},
"idea": "Showcase ultra-fast Cerebras inference with one-task-one-call agents. No chat loops, no LangChain — paste, run, JSON.",
"features": [
"40 one-shot agents",
"Structured JSON output",
"7 vision agents (Gemma 4 31B)",
"Rate gate anti-429",
"Onboarding + local API key",
"macOS double-click launcher"
],
"techStack": {
"backend": ["Python 3.12", "FastAPI", "httpx", "uvicorn"],
"frontend": ["React 19", "Vite", "TypeScript"],
"inference": ["Cerebras API", "OpenAI-compatible"],
"models": ["zai-glm-4.7", "gpt-oss-120b", "gemma-4-31b"]
},
"agents": {
"count": 40,
"categories": ["dev", "career", "product", "ai", "content", "security", "vision"]
},
"api": {
"basePath": "/api",
"port": 8787,
"frontendPort": 5173,
"endpoints": [
{ "method": "GET", "path": "/api/health", "description": "Health + Cerebras key status" },
{ "method": "GET", "path": "/api/agents", "description": "List all agents" },
{ "method": "POST", "path": "/api/run", "description": "Run one agent (text or images)" },
{ "method": "POST", "path": "/api/setup/key", "description": "Save CEREBRAS_API_KEY to .env" }
]
},
"secrets": {
"envFile": ".env",
"key": "CEREBRAS_API_KEY",
"neverInBrowser": true
},
"keywords": [
"cerebras", "llm-agents", "inference", "fastapi", "react", "vision-llm",
"structured-output", "one-shot-agents", "developer-tools"
]
}