18 lines
540 B
Python
18 lines
540 B
Python
"""
|
|
Agent package for various specialized agents.
|
|
|
|
This package contains agents responsible for specific tasks such as
|
|
cleaning up key facts and key snippets in the database when they
|
|
exceed certain thresholds.
|
|
|
|
Includes agents for:
|
|
- Key facts garbage collection
|
|
- Key snippets garbage collection
|
|
"""
|
|
|
|
from typing import Optional
|
|
|
|
from ra_aid.agents.key_facts_gc_agent import run_key_facts_gc_agent
|
|
from ra_aid.agents.key_snippets_gc_agent import run_key_snippets_gc_agent
|
|
|
|
__all__ = ["run_key_facts_gc_agent", "run_key_snippets_gc_agent"] |