Files
microdao-daarion/crews/agromatrix_crew/agents/spreadsheet_agent.py
Apple 90080c632a fix(fabric): use broadcast subject for NATS capabilities discovery
NATS wildcards (node.*.capabilities.get) only work for subscriptions,
not for publish. Switch to a dedicated broadcast subject
(fabric.capabilities.discover) that all NCS instances subscribe to,
enabling proper scatter-gather discovery across nodes.

Made-with: Cursor
2026-02-27 03:20:13 -08:00

15 lines
480 B
Python

from crewai import Agent
from crews.agromatrix_crew.llm_factory import make_llm
def build_spreadsheet():
return Agent(
role="Spreadsheet Agent",
goal="Читати/редагувати/створювати XLSX файли та формувати артефакти.",
backstory="Використовує лише spreadsheet інструмент.",
tools=[],
llm=make_llm(),
allow_delegation=False,
verbose=True
)