├── .gitignore ├── LICENSE ├── README.md ├── banner.png ├── clean.py ├── pyproject.toml ├── requirements.txt └── src └── sentient_agent_framework ├── __init__.py ├── implementation ├── README.md ├── __init__.py ├── default_hook.py ├── default_id_generator.py ├── default_response_handler.py ├── default_server.py ├── default_session.py └── default_text_stream.py └── interface ├── README.md ├── __init__.py ├── agent.py ├── events.py ├── exceptions.py ├── hook.py ├── identity.py ├── request.py ├── response_handler.py └── session.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/banner.png -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/clean.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/sentient_agent_framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/__init__.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/README.md -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_hook.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_id_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_id_generator.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_response_handler.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_server.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_session.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/implementation/default_text_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/implementation/default_text_stream.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/README.md -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/agent.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/events.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/exceptions.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/hook.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/identity.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/request.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/response_handler.py -------------------------------------------------------------------------------- /src/sentient_agent_framework/interface/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentient-agi/Sentient-Agent-Framework/HEAD/src/sentient_agent_framework/interface/session.py --------------------------------------------------------------------------------