Add agent and skill system: implement Agent and Skill classes, register media and naked agents, and create media_info demo skill
Build and Push Agent API / build (push) Successful in 5s

This commit is contained in:
2026-05-10 19:24:44 +02:00
parent 54ac77ab51
commit cb4ebfa43e
7 changed files with 276 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
"""
naked agent — a barebone LLM with no extra skills attached.
Just a thin wrapper that instructs the LLM to be a general helpful assistant.
"""
from agents import Agent, register
naked_agent = Agent(
agent_id="naked",
description="A plain LLM — no extra skills, just a helpful assistant.",
skills=[], # no skills
base_prompt="You are a helpful, general-purpose assistant.",
)
register(naked_agent)