├── README.md └── agent ├── .env.sample ├── .gitignore ├── .python-version ├── Dockerfile ├── __init__.py ├── behavior.py ├── config.py ├── db ├── __init__.py ├── db_seed.py ├── db_setup.py ├── examples.txt ├── examples2.txt └── models.py ├── docker-compose.yml ├── engines ├── __init__.py ├── memory │ ├── __init__.py │ ├── long_term_mem.py │ ├── short_term_mem.py │ └── significance_scorer.py ├── prompts │ ├── __init__.py │ └── prompts.py ├── twitter │ ├── __init__.py │ ├── create_user.py │ ├── follow_user.py │ ├── post_maker.py │ ├── post_retriever.py │ ├── post_sender.py │ ├── reply_manager.py │ ├── signin.py │ └── utils.py └── wallet │ ├── __init__.py │ └── wallet_send.py ├── models.py ├── notification_queue.py ├── pipeline.py ├── pyproject.toml ├── requirements.txt ├── run_pipeline.py └── uv.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/README.md -------------------------------------------------------------------------------- /agent/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/.env.sample -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/.gitignore -------------------------------------------------------------------------------- /agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/Dockerfile -------------------------------------------------------------------------------- /agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/behavior.py -------------------------------------------------------------------------------- /agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/config.py -------------------------------------------------------------------------------- /agent/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/db/db_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/db/db_seed.py -------------------------------------------------------------------------------- /agent/db/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/db/db_setup.py -------------------------------------------------------------------------------- /agent/db/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/db/examples.txt -------------------------------------------------------------------------------- /agent/db/examples2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/db/examples2.txt -------------------------------------------------------------------------------- /agent/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/db/models.py -------------------------------------------------------------------------------- /agent/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/docker-compose.yml -------------------------------------------------------------------------------- /agent/engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/memory/long_term_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/memory/long_term_mem.py -------------------------------------------------------------------------------- /agent/engines/memory/short_term_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/memory/short_term_mem.py -------------------------------------------------------------------------------- /agent/engines/memory/significance_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/memory/significance_scorer.py -------------------------------------------------------------------------------- /agent/engines/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/prompts/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/prompts/prompts.py -------------------------------------------------------------------------------- /agent/engines/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/twitter/create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/create_user.py -------------------------------------------------------------------------------- /agent/engines/twitter/follow_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/follow_user.py -------------------------------------------------------------------------------- /agent/engines/twitter/post_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/post_maker.py -------------------------------------------------------------------------------- /agent/engines/twitter/post_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/post_retriever.py -------------------------------------------------------------------------------- /agent/engines/twitter/post_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/post_sender.py -------------------------------------------------------------------------------- /agent/engines/twitter/reply_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/reply_manager.py -------------------------------------------------------------------------------- /agent/engines/twitter/signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/signin.py -------------------------------------------------------------------------------- /agent/engines/twitter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/twitter/utils.py -------------------------------------------------------------------------------- /agent/engines/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/wallet/wallet_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/engines/wallet/wallet_send.py -------------------------------------------------------------------------------- /agent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/models.py -------------------------------------------------------------------------------- /agent/notification_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/notification_queue.py -------------------------------------------------------------------------------- /agent/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/pipeline.py -------------------------------------------------------------------------------- /agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/pyproject.toml -------------------------------------------------------------------------------- /agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/requirements.txt -------------------------------------------------------------------------------- /agent/run_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/run_pipeline.py -------------------------------------------------------------------------------- /agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NousResearch/nousflash-agents/HEAD/agent/uv.lock --------------------------------------------------------------------------------