├── .gitignore ├── earnings-reports ├── 10k │ ├── goog.html │ ├── microsoft.html │ └── nvda.html ├── README.md ├── csv │ ├── goog.csv │ ├── microsoft.csv │ └── nvda.csv ├── extraction.py ├── images │ └── nvidia-income.png ├── manual │ ├── goog.csv │ ├── microsoft.csv │ └── nvda.csv ├── requirements.txt └── validate-output.py ├── file-renamer ├── README.md ├── demo.gif ├── source_data │ ├── camps.json │ ├── notes1.txt │ ├── scratch.txt │ ├── scratch_scratch.txt │ ├── untitled1.txt │ └── untitled2.txt └── src │ ├── __init__.py │ ├── file_proc.py │ └── main.py ├── holidays-2024 ├── README.md ├── gifter │ ├── README.md │ ├── gifting.py │ ├── gifting_web.py │ ├── prompts │ │ └── gifts.txt │ ├── requirements.txt │ ├── static │ │ └── logo.svg │ └── templates │ │ ├── error.html │ │ ├── index.html │ │ └── results.html └── santa │ ├── README.md │ ├── prompts │ └── santa-baby.txt │ ├── santa-demo.gif │ └── santa-game.py ├── its-a-smol-world ├── README.md ├── demo.gif ├── requirements.txt └── src │ ├── __init__.py │ ├── app.py │ ├── constants.py │ ├── fn.py │ ├── functions.json │ ├── prompt.py │ └── smol_mind.py ├── logs ├── README.md ├── example.py ├── logs │ ├── access-10k.log │ ├── apache-10k.log │ └── linux-2k.log ├── requirements.txt ├── security-prompt.txt └── stressed.py ├── lore-generator ├── README.md ├── db-explorer.py ├── loremaster.py ├── main.py ├── requirements.txt └── slides.pdf ├── nouscon-24 ├── README.md ├── demo.py ├── requirements.txt ├── slides.pdf └── slides.qmd └── say-what-you-mean ├── GSM8K_JSON.ipynb ├── JSON_section.ipynb ├── Last_Letter_NL_best.ipynb ├── Shuffle_Objects.ipynb ├── data └── text_llama-3-8b-instruct_shots_1.jsonl └── templates ├── base.txt └── lastletter-t3-f3.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/.gitignore -------------------------------------------------------------------------------- /earnings-reports/10k/goog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/10k/goog.html -------------------------------------------------------------------------------- /earnings-reports/10k/microsoft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/10k/microsoft.html -------------------------------------------------------------------------------- /earnings-reports/10k/nvda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/10k/nvda.html -------------------------------------------------------------------------------- /earnings-reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/README.md -------------------------------------------------------------------------------- /earnings-reports/csv/goog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/csv/goog.csv -------------------------------------------------------------------------------- /earnings-reports/csv/microsoft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/csv/microsoft.csv -------------------------------------------------------------------------------- /earnings-reports/csv/nvda.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/csv/nvda.csv -------------------------------------------------------------------------------- /earnings-reports/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/extraction.py -------------------------------------------------------------------------------- /earnings-reports/images/nvidia-income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/images/nvidia-income.png -------------------------------------------------------------------------------- /earnings-reports/manual/goog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/manual/goog.csv -------------------------------------------------------------------------------- /earnings-reports/manual/microsoft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/manual/microsoft.csv -------------------------------------------------------------------------------- /earnings-reports/manual/nvda.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/manual/nvda.csv -------------------------------------------------------------------------------- /earnings-reports/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/requirements.txt -------------------------------------------------------------------------------- /earnings-reports/validate-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/earnings-reports/validate-output.py -------------------------------------------------------------------------------- /file-renamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/README.md -------------------------------------------------------------------------------- /file-renamer/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/demo.gif -------------------------------------------------------------------------------- /file-renamer/source_data/camps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/camps.json -------------------------------------------------------------------------------- /file-renamer/source_data/notes1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/notes1.txt -------------------------------------------------------------------------------- /file-renamer/source_data/scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/scratch.txt -------------------------------------------------------------------------------- /file-renamer/source_data/scratch_scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/scratch_scratch.txt -------------------------------------------------------------------------------- /file-renamer/source_data/untitled1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/untitled1.txt -------------------------------------------------------------------------------- /file-renamer/source_data/untitled2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/source_data/untitled2.txt -------------------------------------------------------------------------------- /file-renamer/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file-renamer/src/file_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/src/file_proc.py -------------------------------------------------------------------------------- /file-renamer/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/file-renamer/src/main.py -------------------------------------------------------------------------------- /holidays-2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/README.md -------------------------------------------------------------------------------- /holidays-2024/gifter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/README.md -------------------------------------------------------------------------------- /holidays-2024/gifter/gifting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/gifting.py -------------------------------------------------------------------------------- /holidays-2024/gifter/gifting_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/gifting_web.py -------------------------------------------------------------------------------- /holidays-2024/gifter/prompts/gifts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/prompts/gifts.txt -------------------------------------------------------------------------------- /holidays-2024/gifter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/requirements.txt -------------------------------------------------------------------------------- /holidays-2024/gifter/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/static/logo.svg -------------------------------------------------------------------------------- /holidays-2024/gifter/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/templates/error.html -------------------------------------------------------------------------------- /holidays-2024/gifter/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/templates/index.html -------------------------------------------------------------------------------- /holidays-2024/gifter/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/gifter/templates/results.html -------------------------------------------------------------------------------- /holidays-2024/santa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/santa/README.md -------------------------------------------------------------------------------- /holidays-2024/santa/prompts/santa-baby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/santa/prompts/santa-baby.txt -------------------------------------------------------------------------------- /holidays-2024/santa/santa-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/santa/santa-demo.gif -------------------------------------------------------------------------------- /holidays-2024/santa/santa-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/holidays-2024/santa/santa-game.py -------------------------------------------------------------------------------- /its-a-smol-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/README.md -------------------------------------------------------------------------------- /its-a-smol-world/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/demo.gif -------------------------------------------------------------------------------- /its-a-smol-world/requirements.txt: -------------------------------------------------------------------------------- 1 | outlines==0.1.1 2 | transformers 3 | torch 4 | accelerate>=0.26.0 5 | -------------------------------------------------------------------------------- /its-a-smol-world/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /its-a-smol-world/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/app.py -------------------------------------------------------------------------------- /its-a-smol-world/src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/constants.py -------------------------------------------------------------------------------- /its-a-smol-world/src/fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/fn.py -------------------------------------------------------------------------------- /its-a-smol-world/src/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/functions.json -------------------------------------------------------------------------------- /its-a-smol-world/src/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/prompt.py -------------------------------------------------------------------------------- /its-a-smol-world/src/smol_mind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/its-a-smol-world/src/smol_mind.py -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/README.md -------------------------------------------------------------------------------- /logs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/example.py -------------------------------------------------------------------------------- /logs/logs/access-10k.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/logs/access-10k.log -------------------------------------------------------------------------------- /logs/logs/apache-10k.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/logs/apache-10k.log -------------------------------------------------------------------------------- /logs/logs/linux-2k.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/logs/linux-2k.log -------------------------------------------------------------------------------- /logs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/requirements.txt -------------------------------------------------------------------------------- /logs/security-prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/security-prompt.txt -------------------------------------------------------------------------------- /logs/stressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/logs/stressed.py -------------------------------------------------------------------------------- /lore-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/README.md -------------------------------------------------------------------------------- /lore-generator/db-explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/db-explorer.py -------------------------------------------------------------------------------- /lore-generator/loremaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/loremaster.py -------------------------------------------------------------------------------- /lore-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/main.py -------------------------------------------------------------------------------- /lore-generator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/requirements.txt -------------------------------------------------------------------------------- /lore-generator/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/lore-generator/slides.pdf -------------------------------------------------------------------------------- /nouscon-24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/nouscon-24/README.md -------------------------------------------------------------------------------- /nouscon-24/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/nouscon-24/demo.py -------------------------------------------------------------------------------- /nouscon-24/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/nouscon-24/requirements.txt -------------------------------------------------------------------------------- /nouscon-24/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/nouscon-24/slides.pdf -------------------------------------------------------------------------------- /nouscon-24/slides.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/nouscon-24/slides.qmd -------------------------------------------------------------------------------- /say-what-you-mean/GSM8K_JSON.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/GSM8K_JSON.ipynb -------------------------------------------------------------------------------- /say-what-you-mean/JSON_section.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/JSON_section.ipynb -------------------------------------------------------------------------------- /say-what-you-mean/Last_Letter_NL_best.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/Last_Letter_NL_best.ipynb -------------------------------------------------------------------------------- /say-what-you-mean/Shuffle_Objects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/Shuffle_Objects.ipynb -------------------------------------------------------------------------------- /say-what-you-mean/data/text_llama-3-8b-instruct_shots_1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/data/text_llama-3-8b-instruct_shots_1.jsonl -------------------------------------------------------------------------------- /say-what-you-mean/templates/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/templates/base.txt -------------------------------------------------------------------------------- /say-what-you-mean/templates/lastletter-t3-f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dottxt-ai/demos/HEAD/say-what-you-mean/templates/lastletter-t3-f3.yaml --------------------------------------------------------------------------------