-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
44 lines (44 loc) · 1.2 KB
/
smithery.yaml
File metadata and controls
44 lines (44 loc) · 1.2 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
name: dagpipe-generator
description: "Generate crash-proof Python LLM pipelines from plain English. DagPipe reliability layer — crash recovery, schema validation, cost routing. Powered by Groq & LLaMA-3."
type: remote
url: https://gastronomic-desk--dagpipe-generator-mcp.apify.actor/mcp
tags:
- pipeline
- llm
- python
- workflow
- groq
- code-generation
- ai-automation
- mcp
- dagpipe
startCommand:
type: http
configSchema:
type: object
required:
- groqApiKey
properties:
groqApiKey:
type: string
title: "Groq API Key"
description: "Your Groq API key from console.groq.com/keys"
groqModel:
type: string
title: "Groq Model"
description: "Groq model to use for generation"
default: "llama-3.3-70b-versatile"
enum:
- "llama-3.3-70b-versatile"
- "llama-3.1-8b-instant"
- "mixtral-8x7b-32768"
- "gemma2-9b-it"
debugMode:
type: boolean
title: "Debug Mode"
description: "Enable verbose logging"
default: false
exampleConfig:
groqApiKey: "gsk_example1234567890abcdef"
groqModel: "llama-3.3-70b-versatile"
debugMode: false