16 lines
424 B
Python
16 lines
424 B
Python
"""
|
|
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)
|