├── README.md └── agent ├── .env.sample ├── .gitignore ├── .python-version ├── Dockerfile ├── __init__.py ├── db ├── __init__.py ├── db_seed.py ├── db_setup.py ├── examples.txt ├── examples2.txt └── models.py ├── docker-compose.yml ├── engines ├── __init__.py ├── follow_user.py ├── json_formatter.py ├── long_term_mem.py ├── post_maker.py ├── post_retriever.py ├── post_sender.py ├── prompts.py ├── short_term_mem.py ├── significance_scorer.py └── wallet_send.py ├── models.py ├── pipeline.py ├── pyproject.toml ├── requirements.txt ├── run_pipeline.py ├── signin.py └── uv.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/README.md -------------------------------------------------------------------------------- /agent/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/.env.sample -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__ 3 | venv 4 | data 5 | .DS_Store 6 | agent/engines/prompt.txt -------------------------------------------------------------------------------- /agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/Dockerfile -------------------------------------------------------------------------------- /agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/db/db_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/db/db_seed.py -------------------------------------------------------------------------------- /agent/db/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/db/db_setup.py -------------------------------------------------------------------------------- /agent/db/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/db/examples.txt -------------------------------------------------------------------------------- /agent/db/examples2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/db/examples2.txt -------------------------------------------------------------------------------- /agent/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/db/models.py -------------------------------------------------------------------------------- /agent/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/docker-compose.yml -------------------------------------------------------------------------------- /agent/engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/engines/follow_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/follow_user.py -------------------------------------------------------------------------------- /agent/engines/json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/json_formatter.py -------------------------------------------------------------------------------- /agent/engines/long_term_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/long_term_mem.py -------------------------------------------------------------------------------- /agent/engines/post_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/post_maker.py -------------------------------------------------------------------------------- /agent/engines/post_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/post_retriever.py -------------------------------------------------------------------------------- /agent/engines/post_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/post_sender.py -------------------------------------------------------------------------------- /agent/engines/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/prompts.py -------------------------------------------------------------------------------- /agent/engines/short_term_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/short_term_mem.py -------------------------------------------------------------------------------- /agent/engines/significance_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/significance_scorer.py -------------------------------------------------------------------------------- /agent/engines/wallet_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/engines/wallet_send.py -------------------------------------------------------------------------------- /agent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/models.py -------------------------------------------------------------------------------- /agent/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/pipeline.py -------------------------------------------------------------------------------- /agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/pyproject.toml -------------------------------------------------------------------------------- /agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/requirements.txt -------------------------------------------------------------------------------- /agent/run_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/run_pipeline.py -------------------------------------------------------------------------------- /agent/signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/signin.py -------------------------------------------------------------------------------- /agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamascusGit/nousflash/HEAD/agent/uv.lock --------------------------------------------------------------------------------