Skip to content
Merged

'Dev #32

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ my_skills

.pytest_cache

AGENTS.md
.ejagent-sessions
.simagentplg-sessions
8 changes: 7 additions & 1 deletion src/ejagent/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""Composable stateful agents with tool handlers and MCP integration."""
"""Composable stateful agents with tool handlers and MCP integration.

.. note::

This package provides the core agent framework — see :class:`BaseAgent` for
the primary entry point.
"""

from ejagent.agent.base import BaseAgent
from ejagent.agent.behavior import (
Expand Down