oluown / pipelines.json
mgbam's picture
Upload 5 files
87f1580 verified
raw
history blame contribute delete
548 Bytes
{
"bio_summary": {
"nodes": [
{
"id": "q",
"type": "prompt",
"text": "${question}"
},
{
"id": "rag",
"type": "rag",
"k": 5,
"from": "q"
},
{
"id": "llm",
"type": "llm",
"from": [
"q",
"rag"
],
"system": "You are a bioinformatics assistant. Use tools to compute sequence stats when helpful. Provide concise, safe, non-experimental insights."
}
],
"outputs": [
"llm"
]
}
}