├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── alexa ├── README.md ├── app.py ├── config.py ├── make_env.sh ├── privacy_policy.md ├── requirements-no-deps.txt ├── requirements.txt ├── utils.py └── zappa_settings.json ├── data ├── alexa │ ├── dialog_model.json │ └── utterance2meta.pkl ├── clips │ └── demo │ │ ├── add_persona.gif │ │ ├── alexa_lex_fridman_reverse_turing_test_compressed.mp4 │ │ ├── neil_degrasse_tyson_with_audio.mp4 │ │ ├── obama.gif │ │ ├── obama_with_audio.mp4 │ │ └── punctuation.gif ├── completions │ └── mma │ │ ├── burns_vs_thompson.txt │ │ ├── burns_vs_thompson_v2.txt │ │ ├── jones_vs_ngannou_2021-07-16.txt │ │ ├── makhachev_vs_moises.txt │ │ ├── poirier_vs_mcgregor_3.txt │ │ ├── sandhagen_vs_dillashaw.txt │ │ └── tuivasa_vs_hardy.txt ├── conversation_personas │ ├── adam_grant │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── agnes_callard │ │ ├── meta.yaml │ │ └── profile.png │ ├── alan_turing │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── albert_einstein │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── alex_honnold │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── alex_morgan │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── amelia_earhart │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── amia_srinivasan │ │ ├── meta.yaml │ │ └── profile.png │ ├── andrej_karpathy │ │ ├── meta.yaml │ │ └── profile.png │ ├── anne_frank │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── apolo_ohno │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── archimedes │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── barack_obama │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── ben_polak │ │ ├── meta.yaml │ │ └── profile.png │ ├── beyonce │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── brandon_sanderson │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── brendan_schaub │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── brooke_raboutou │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── chuck_bartowski │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── daniel_kahneman │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── david_l_mills │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── donald_glover │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── donald_knuth │ │ ├── meta.yaml │ │ └── profile.png │ ├── douglas_adams │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── dr_seuss │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── elijah_wood │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── esther_perel │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── esther_povitsky │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── ezra_klein │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── galileo_galilei │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── geoffrey_hinton │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── george_harrison │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── george_orwell │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── god │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── grace_hopper │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── guido_van_rossum │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── harry_potter │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── henry_koster │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── hermione_granger │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── ilya_sutskever │ │ ├── meta.yaml │ │ └── profile.png │ ├── jk_rowling │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── john_lennon │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── jonathan_goldstein │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── julia_galef │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── justin_vernon │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── kanye_west │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── lex_fridman │ │ ├── meta.yaml │ │ └── profile.png │ ├── marie_curie │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── mark_zuckerberg │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── maya_angelou │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── michelle_obama │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── natalia_grossman │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── neil_degrasse_tyson │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── nicolas_cage │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── noam_chomsky │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── richard_hamming │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── robert_sapolsky │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── robin_hanson │ │ ├── meta.yaml │ │ └── profile.png │ ├── ron_weasley │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── sam_altman │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── sam_harris │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── scott_hutchison │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── shel_silverstein │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── simone_biles │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── socrates │ │ ├── meta.yaml │ │ └── profile.png │ ├── stanislas_dehaene │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── starlee_kine │ │ ├── meta.yaml │ │ └── profile.png │ ├── stephen_fry │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── steve_jobs │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── steven_pinker │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── sylvia_plath │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── ted_chiang │ │ ├── meta.yaml │ │ └── profile.jpg │ ├── ted_mosby │ │ ├── meta.yaml │ │ └── profile.jpg │ └── yann_lecun │ │ ├── meta.yaml │ │ └── profile.jpg ├── dynamic_prompt_data │ ├── creative_writing_ideas.txt │ ├── journal_entry_ideas.txt │ └── misc_writing_prompt_ideas.txt ├── fonts │ └── OpenSans-Light.ttf ├── icons │ └── icon.png ├── legacy_prompts │ ├── README.md │ ├── analyze_writing │ │ ├── config.yaml │ │ └── prompt.txt │ ├── conversation │ │ ├── config.yaml │ │ └── prompt.txt │ ├── debate │ │ ├── config.yaml │ │ └── prompt.txt │ ├── default │ │ ├── config.yaml │ │ └── prompt.txt │ ├── eli │ │ ├── config.yaml │ │ └── prompt.txt │ ├── extract_backend_slot │ │ ├── config.yaml │ │ └── prompt.txt │ ├── how_to │ │ ├── config.yaml │ │ └── prompt.txt │ ├── ml_abstract │ │ ├── config.yaml │ │ ├── prompt.txt │ │ └── sample.txt │ ├── mma │ │ ├── config.yaml │ │ └── prompt.txt │ ├── punctuate │ │ ├── config.yaml │ │ └── prompt.txt │ ├── punctuate_alexa │ │ ├── config.yaml │ │ └── prompt.txt │ ├── punctuate_transcription │ │ ├── config.yaml │ │ └── prompt.txt │ ├── short_dates │ │ ├── config.yaml │ │ └── prompt.txt │ ├── shortest │ │ ├── config.yaml │ │ └── prompt.txt │ ├── simplify_ml │ │ ├── config.yaml │ │ └── prompt.txt │ ├── tldr │ │ ├── config.yaml │ │ └── prompt.txt │ ├── translate │ │ ├── config.yaml │ │ └── prompt.txt │ └── word2number │ │ ├── config.yaml │ │ └── prompt.txt └── prompts │ ├── README.md │ ├── analyze_writing.yaml │ ├── conversation.yaml │ ├── conversation_generalized.yaml │ ├── conversation_transcript.yaml │ ├── creative_writing_ideas.yaml │ ├── debate.yaml │ ├── debug.yaml │ ├── debug_duckling.yaml │ ├── debug_full.yaml │ ├── debug_stack_trace.yaml │ ├── default.yaml │ ├── eli.yaml │ ├── emotion_markup_language.yaml │ ├── explain_code.yaml │ ├── extract_backend_slot.yaml │ ├── extract_code.yaml │ ├── how_to.yaml │ ├── journal_entry_ideas.yaml │ ├── leading_scholars.yaml │ ├── ml_abstract.yaml │ ├── mma.yaml │ ├── nytimes_article.yaml │ ├── punctuate.yaml │ ├── punctuate_alexa.yaml │ ├── punctuate_transcription.yaml │ ├── short_dates.yaml │ ├── shortest.yaml │ ├── simplify_ml.yaml │ ├── social_hypotheses.yaml │ ├── summarize_conversation.yaml │ ├── test_professional.yaml │ ├── time_complexity.yaml │ ├── tldr.yaml │ ├── translate.yaml │ ├── wiki_bio_cleanup.yaml │ └── word2number.yaml ├── docker ├── Dockerfile ├── Makefile ├── docker-compose.yaml ├── requirements.txt ├── setenv.sh └── start.sh ├── gui ├── README.md ├── callbacks.py ├── main.py ├── make_env.sh ├── requirements.txt └── utils.py ├── lib ├── MANIFEST.in ├── README.md ├── jabberwocky │ ├── __init__.py │ ├── cli.py │ ├── config.py │ ├── core.py │ ├── external_data.py │ ├── openai_utils.py │ ├── speech.py │ ├── streaming.py │ └── utils.py ├── requirements.txt └── setup.py ├── notebooks ├── README.md ├── TEMPLATE.ipynb ├── nb01-openai-api-playground.ipynb ├── nb014-redo-static-stream-func.ipynb ├── nb014-test-batch-queries.ipynb ├── nb015-fix-openai-api-issue.ipynb ├── nb016-prompt-object.ipynb ├── nb017-nationality-extraction-and--emotion-detection.ipynb ├── nb018-persona-name-fuzzy-matching.ipynb ├── nb02-youtube-api-playground.ipynb ├── nb020-speedup-lshdict-creation.ipynb ├── nb021-price-monitor.ipynb ├── nb03-transcript-manager.ipynb ├── nb04-multi-video-session.ipynb ├── nb05-gpt-neo-api.ipynb ├── nb06-interruptable-decorator.ipynb ├── nb07-wiki-summary.ipynb ├── nb08-conversation-manager.ipynb ├── nb09-conv-manager-longform-rewrite.ipynb ├── nb10-concurrent-speaker.ipynb ├── nb11-slot-extraction.ipynb ├── nb12-test-backend-selector.ipynb └── nb13-multi-prompt-queries.ipynb ├── pre-commit.py ├── scripts ├── makeprompt.sh └── s01_fetch_sample_responses.py └── setup └── setup.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-documentation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/README.md -------------------------------------------------------------------------------- /alexa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/README.md -------------------------------------------------------------------------------- /alexa/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/app.py -------------------------------------------------------------------------------- /alexa/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/config.py -------------------------------------------------------------------------------- /alexa/make_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/make_env.sh -------------------------------------------------------------------------------- /alexa/privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/privacy_policy.md -------------------------------------------------------------------------------- /alexa/requirements-no-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/requirements-no-deps.txt -------------------------------------------------------------------------------- /alexa/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/requirements.txt -------------------------------------------------------------------------------- /alexa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/utils.py -------------------------------------------------------------------------------- /alexa/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/alexa/zappa_settings.json -------------------------------------------------------------------------------- /data/alexa/dialog_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/alexa/dialog_model.json -------------------------------------------------------------------------------- /data/alexa/utterance2meta.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/alexa/utterance2meta.pkl -------------------------------------------------------------------------------- /data/clips/demo/add_persona.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/add_persona.gif -------------------------------------------------------------------------------- /data/clips/demo/alexa_lex_fridman_reverse_turing_test_compressed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/alexa_lex_fridman_reverse_turing_test_compressed.mp4 -------------------------------------------------------------------------------- /data/clips/demo/neil_degrasse_tyson_with_audio.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/neil_degrasse_tyson_with_audio.mp4 -------------------------------------------------------------------------------- /data/clips/demo/obama.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/obama.gif -------------------------------------------------------------------------------- /data/clips/demo/obama_with_audio.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/obama_with_audio.mp4 -------------------------------------------------------------------------------- /data/clips/demo/punctuation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/clips/demo/punctuation.gif -------------------------------------------------------------------------------- /data/completions/mma/burns_vs_thompson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/burns_vs_thompson.txt -------------------------------------------------------------------------------- /data/completions/mma/burns_vs_thompson_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/burns_vs_thompson_v2.txt -------------------------------------------------------------------------------- /data/completions/mma/jones_vs_ngannou_2021-07-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/jones_vs_ngannou_2021-07-16.txt -------------------------------------------------------------------------------- /data/completions/mma/makhachev_vs_moises.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/makhachev_vs_moises.txt -------------------------------------------------------------------------------- /data/completions/mma/poirier_vs_mcgregor_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/poirier_vs_mcgregor_3.txt -------------------------------------------------------------------------------- /data/completions/mma/sandhagen_vs_dillashaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/sandhagen_vs_dillashaw.txt -------------------------------------------------------------------------------- /data/completions/mma/tuivasa_vs_hardy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/completions/mma/tuivasa_vs_hardy.txt -------------------------------------------------------------------------------- /data/conversation_personas/adam_grant/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/adam_grant/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/adam_grant/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/adam_grant/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/agnes_callard/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/agnes_callard/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/agnes_callard/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/agnes_callard/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/alan_turing/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alan_turing/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/alan_turing/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alan_turing/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/albert_einstein/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/albert_einstein/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/albert_einstein/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/albert_einstein/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/alex_honnold/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alex_honnold/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/alex_honnold/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alex_honnold/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/alex_morgan/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alex_morgan/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/alex_morgan/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/alex_morgan/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/amelia_earhart/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/amelia_earhart/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/amelia_earhart/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/amelia_earhart/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/amia_srinivasan/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/amia_srinivasan/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/amia_srinivasan/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/amia_srinivasan/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/andrej_karpathy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/andrej_karpathy/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/andrej_karpathy/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/andrej_karpathy/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/anne_frank/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/anne_frank/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/anne_frank/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/anne_frank/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/apolo_ohno/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/apolo_ohno/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/apolo_ohno/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/apolo_ohno/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/archimedes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/archimedes/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/archimedes/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/archimedes/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/barack_obama/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/barack_obama/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/barack_obama/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/barack_obama/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/ben_polak/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ben_polak/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ben_polak/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ben_polak/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/beyonce/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/beyonce/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/beyonce/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/beyonce/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/brandon_sanderson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brandon_sanderson/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/brandon_sanderson/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brandon_sanderson/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/brendan_schaub/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brendan_schaub/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/brendan_schaub/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brendan_schaub/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/brooke_raboutou/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brooke_raboutou/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/brooke_raboutou/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/brooke_raboutou/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/chuck_bartowski/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/chuck_bartowski/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/chuck_bartowski/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/chuck_bartowski/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/daniel_kahneman/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/daniel_kahneman/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/daniel_kahneman/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/daniel_kahneman/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/david_l_mills/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/david_l_mills/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/david_l_mills/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/david_l_mills/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/donald_glover/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/donald_glover/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/donald_glover/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/donald_glover/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/donald_knuth/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/donald_knuth/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/donald_knuth/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/donald_knuth/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/douglas_adams/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/douglas_adams/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/douglas_adams/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/douglas_adams/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/dr_seuss/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/dr_seuss/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/dr_seuss/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/dr_seuss/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/elijah_wood/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/elijah_wood/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/elijah_wood/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/elijah_wood/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/esther_perel/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/esther_perel/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/esther_perel/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/esther_perel/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/esther_povitsky/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/esther_povitsky/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/esther_povitsky/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/esther_povitsky/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/ezra_klein/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ezra_klein/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ezra_klein/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ezra_klein/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/galileo_galilei/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/galileo_galilei/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/galileo_galilei/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/galileo_galilei/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/geoffrey_hinton/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/geoffrey_hinton/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/geoffrey_hinton/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/geoffrey_hinton/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/george_harrison/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/george_harrison/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/george_harrison/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/george_harrison/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/george_orwell/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/george_orwell/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/george_orwell/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/george_orwell/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/god/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/god/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/god/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/god/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/grace_hopper/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/grace_hopper/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/grace_hopper/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/grace_hopper/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/guido_van_rossum/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/guido_van_rossum/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/guido_van_rossum/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/guido_van_rossum/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/harry_potter/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/harry_potter/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/harry_potter/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/harry_potter/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/henry_koster/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/henry_koster/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/henry_koster/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/henry_koster/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/hermione_granger/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/hermione_granger/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/hermione_granger/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/hermione_granger/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/ilya_sutskever/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ilya_sutskever/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ilya_sutskever/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ilya_sutskever/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/jk_rowling/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/jk_rowling/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/jk_rowling/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/jk_rowling/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/john_lennon/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/john_lennon/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/john_lennon/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/john_lennon/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/jonathan_goldstein/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/jonathan_goldstein/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/jonathan_goldstein/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/jonathan_goldstein/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/julia_galef/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/julia_galef/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/julia_galef/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/julia_galef/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/justin_vernon/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/justin_vernon/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/justin_vernon/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/justin_vernon/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/kanye_west/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/kanye_west/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/kanye_west/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/kanye_west/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/lex_fridman/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/lex_fridman/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/lex_fridman/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/lex_fridman/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/marie_curie/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/marie_curie/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/marie_curie/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/marie_curie/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/mark_zuckerberg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/mark_zuckerberg/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/mark_zuckerberg/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/mark_zuckerberg/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/maya_angelou/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/maya_angelou/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/maya_angelou/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/maya_angelou/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/michelle_obama/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/michelle_obama/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/michelle_obama/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/michelle_obama/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/natalia_grossman/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/natalia_grossman/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/natalia_grossman/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/natalia_grossman/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/neil_degrasse_tyson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/neil_degrasse_tyson/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/neil_degrasse_tyson/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/neil_degrasse_tyson/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/nicolas_cage/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/nicolas_cage/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/nicolas_cage/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/nicolas_cage/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/noam_chomsky/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/noam_chomsky/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/noam_chomsky/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/noam_chomsky/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/richard_hamming/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/richard_hamming/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/richard_hamming/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/richard_hamming/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/robert_sapolsky/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/robert_sapolsky/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/robert_sapolsky/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/robert_sapolsky/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/robin_hanson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/robin_hanson/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/robin_hanson/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/robin_hanson/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/ron_weasley/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ron_weasley/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ron_weasley/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ron_weasley/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/sam_altman/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sam_altman/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/sam_altman/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sam_altman/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/sam_harris/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sam_harris/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/sam_harris/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sam_harris/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/scott_hutchison/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/scott_hutchison/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/scott_hutchison/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/scott_hutchison/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/shel_silverstein/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/shel_silverstein/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/shel_silverstein/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/shel_silverstein/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/simone_biles/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/simone_biles/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/simone_biles/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/simone_biles/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/socrates/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/socrates/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/socrates/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/socrates/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/stanislas_dehaene/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/stanislas_dehaene/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/stanislas_dehaene/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/stanislas_dehaene/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/starlee_kine/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/starlee_kine/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/starlee_kine/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/starlee_kine/profile.png -------------------------------------------------------------------------------- /data/conversation_personas/stephen_fry/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/stephen_fry/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/stephen_fry/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/stephen_fry/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/steve_jobs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/steve_jobs/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/steve_jobs/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/steve_jobs/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/steven_pinker/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/steven_pinker/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/steven_pinker/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/steven_pinker/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/sylvia_plath/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sylvia_plath/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/sylvia_plath/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/sylvia_plath/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/ted_chiang/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ted_chiang/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ted_chiang/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ted_chiang/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/ted_mosby/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ted_mosby/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/ted_mosby/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/ted_mosby/profile.jpg -------------------------------------------------------------------------------- /data/conversation_personas/yann_lecun/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/yann_lecun/meta.yaml -------------------------------------------------------------------------------- /data/conversation_personas/yann_lecun/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/conversation_personas/yann_lecun/profile.jpg -------------------------------------------------------------------------------- /data/dynamic_prompt_data/creative_writing_ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/dynamic_prompt_data/creative_writing_ideas.txt -------------------------------------------------------------------------------- /data/dynamic_prompt_data/journal_entry_ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/dynamic_prompt_data/journal_entry_ideas.txt -------------------------------------------------------------------------------- /data/dynamic_prompt_data/misc_writing_prompt_ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/dynamic_prompt_data/misc_writing_prompt_ideas.txt -------------------------------------------------------------------------------- /data/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /data/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/icons/icon.png -------------------------------------------------------------------------------- /data/legacy_prompts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/README.md -------------------------------------------------------------------------------- /data/legacy_prompts/analyze_writing/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/analyze_writing/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/analyze_writing/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/analyze_writing/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/conversation/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/conversation/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/conversation/prompt.txt: -------------------------------------------------------------------------------- 1 | This is a conversation with {name}. {summary} 2 | -------------------------------------------------------------------------------- /data/legacy_prompts/debate/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/debate/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/debate/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/debate/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/default/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/default/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/default/prompt.txt: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data/legacy_prompts/eli/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/eli/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/eli/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/eli/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/extract_backend_slot/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/extract_backend_slot/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/extract_backend_slot/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/extract_backend_slot/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/how_to/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/how_to/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/how_to/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/how_to/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/ml_abstract/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/ml_abstract/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/ml_abstract/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/ml_abstract/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/ml_abstract/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/ml_abstract/sample.txt -------------------------------------------------------------------------------- /data/legacy_prompts/mma/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/mma/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/mma/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/mma/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate_alexa/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate_alexa/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate_alexa/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate_alexa/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate_transcription/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate_transcription/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/punctuate_transcription/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/punctuate_transcription/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/short_dates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/short_dates/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/short_dates/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/short_dates/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/shortest/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/shortest/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/shortest/prompt.txt: -------------------------------------------------------------------------------- 1 | 1+1= 2 | -------------------------------------------------------------------------------- /data/legacy_prompts/simplify_ml/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/simplify_ml/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/simplify_ml/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/simplify_ml/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/tldr/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/tldr/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/tldr/prompt.txt: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | tl;dr: 4 | -------------------------------------------------------------------------------- /data/legacy_prompts/translate/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/translate/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/translate/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/translate/prompt.txt -------------------------------------------------------------------------------- /data/legacy_prompts/word2number/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/word2number/config.yaml -------------------------------------------------------------------------------- /data/legacy_prompts/word2number/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/legacy_prompts/word2number/prompt.txt -------------------------------------------------------------------------------- /data/prompts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/README.md -------------------------------------------------------------------------------- /data/prompts/analyze_writing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/analyze_writing.yaml -------------------------------------------------------------------------------- /data/prompts/conversation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/conversation.yaml -------------------------------------------------------------------------------- /data/prompts/conversation_generalized.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/conversation_generalized.yaml -------------------------------------------------------------------------------- /data/prompts/conversation_transcript.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/conversation_transcript.yaml -------------------------------------------------------------------------------- /data/prompts/creative_writing_ideas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/creative_writing_ideas.yaml -------------------------------------------------------------------------------- /data/prompts/debate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/debate.yaml -------------------------------------------------------------------------------- /data/prompts/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/debug.yaml -------------------------------------------------------------------------------- /data/prompts/debug_duckling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/debug_duckling.yaml -------------------------------------------------------------------------------- /data/prompts/debug_full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/debug_full.yaml -------------------------------------------------------------------------------- /data/prompts/debug_stack_trace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/debug_stack_trace.yaml -------------------------------------------------------------------------------- /data/prompts/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/default.yaml -------------------------------------------------------------------------------- /data/prompts/eli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/eli.yaml -------------------------------------------------------------------------------- /data/prompts/emotion_markup_language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/emotion_markup_language.yaml -------------------------------------------------------------------------------- /data/prompts/explain_code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/explain_code.yaml -------------------------------------------------------------------------------- /data/prompts/extract_backend_slot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/extract_backend_slot.yaml -------------------------------------------------------------------------------- /data/prompts/extract_code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/extract_code.yaml -------------------------------------------------------------------------------- /data/prompts/how_to.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/how_to.yaml -------------------------------------------------------------------------------- /data/prompts/journal_entry_ideas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/journal_entry_ideas.yaml -------------------------------------------------------------------------------- /data/prompts/leading_scholars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/leading_scholars.yaml -------------------------------------------------------------------------------- /data/prompts/ml_abstract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/ml_abstract.yaml -------------------------------------------------------------------------------- /data/prompts/mma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/mma.yaml -------------------------------------------------------------------------------- /data/prompts/nytimes_article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/nytimes_article.yaml -------------------------------------------------------------------------------- /data/prompts/punctuate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/punctuate.yaml -------------------------------------------------------------------------------- /data/prompts/punctuate_alexa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/punctuate_alexa.yaml -------------------------------------------------------------------------------- /data/prompts/punctuate_transcription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/punctuate_transcription.yaml -------------------------------------------------------------------------------- /data/prompts/short_dates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/short_dates.yaml -------------------------------------------------------------------------------- /data/prompts/shortest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/shortest.yaml -------------------------------------------------------------------------------- /data/prompts/simplify_ml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/simplify_ml.yaml -------------------------------------------------------------------------------- /data/prompts/social_hypotheses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/social_hypotheses.yaml -------------------------------------------------------------------------------- /data/prompts/summarize_conversation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/summarize_conversation.yaml -------------------------------------------------------------------------------- /data/prompts/test_professional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/test_professional.yaml -------------------------------------------------------------------------------- /data/prompts/time_complexity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/time_complexity.yaml -------------------------------------------------------------------------------- /data/prompts/tldr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/tldr.yaml -------------------------------------------------------------------------------- /data/prompts/translate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/translate.yaml -------------------------------------------------------------------------------- /data/prompts/wiki_bio_cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/wiki_bio_cleanup.yaml -------------------------------------------------------------------------------- /data/prompts/word2number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/data/prompts/word2number.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /docker/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/setenv.sh -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/docker/start.sh -------------------------------------------------------------------------------- /gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/README.md -------------------------------------------------------------------------------- /gui/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/callbacks.py -------------------------------------------------------------------------------- /gui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/main.py -------------------------------------------------------------------------------- /gui/make_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/make_env.sh -------------------------------------------------------------------------------- /gui/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/requirements.txt -------------------------------------------------------------------------------- /gui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/gui/utils.py -------------------------------------------------------------------------------- /lib/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/MANIFEST.in -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/jabberwocky/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.5.0' 2 | -------------------------------------------------------------------------------- /lib/jabberwocky/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/cli.py -------------------------------------------------------------------------------- /lib/jabberwocky/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/config.py -------------------------------------------------------------------------------- /lib/jabberwocky/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/core.py -------------------------------------------------------------------------------- /lib/jabberwocky/external_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/external_data.py -------------------------------------------------------------------------------- /lib/jabberwocky/openai_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/openai_utils.py -------------------------------------------------------------------------------- /lib/jabberwocky/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/speech.py -------------------------------------------------------------------------------- /lib/jabberwocky/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/streaming.py -------------------------------------------------------------------------------- /lib/jabberwocky/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/jabberwocky/utils.py -------------------------------------------------------------------------------- /lib/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/requirements.txt -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/lib/setup.py -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/TEMPLATE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/TEMPLATE.ipynb -------------------------------------------------------------------------------- /notebooks/nb01-openai-api-playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb01-openai-api-playground.ipynb -------------------------------------------------------------------------------- /notebooks/nb014-redo-static-stream-func.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb014-redo-static-stream-func.ipynb -------------------------------------------------------------------------------- /notebooks/nb014-test-batch-queries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb014-test-batch-queries.ipynb -------------------------------------------------------------------------------- /notebooks/nb015-fix-openai-api-issue.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb015-fix-openai-api-issue.ipynb -------------------------------------------------------------------------------- /notebooks/nb016-prompt-object.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb016-prompt-object.ipynb -------------------------------------------------------------------------------- /notebooks/nb017-nationality-extraction-and--emotion-detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb017-nationality-extraction-and--emotion-detection.ipynb -------------------------------------------------------------------------------- /notebooks/nb018-persona-name-fuzzy-matching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb018-persona-name-fuzzy-matching.ipynb -------------------------------------------------------------------------------- /notebooks/nb02-youtube-api-playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb02-youtube-api-playground.ipynb -------------------------------------------------------------------------------- /notebooks/nb020-speedup-lshdict-creation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb020-speedup-lshdict-creation.ipynb -------------------------------------------------------------------------------- /notebooks/nb021-price-monitor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb021-price-monitor.ipynb -------------------------------------------------------------------------------- /notebooks/nb03-transcript-manager.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb03-transcript-manager.ipynb -------------------------------------------------------------------------------- /notebooks/nb04-multi-video-session.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb04-multi-video-session.ipynb -------------------------------------------------------------------------------- /notebooks/nb05-gpt-neo-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb05-gpt-neo-api.ipynb -------------------------------------------------------------------------------- /notebooks/nb06-interruptable-decorator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb06-interruptable-decorator.ipynb -------------------------------------------------------------------------------- /notebooks/nb07-wiki-summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb07-wiki-summary.ipynb -------------------------------------------------------------------------------- /notebooks/nb08-conversation-manager.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb08-conversation-manager.ipynb -------------------------------------------------------------------------------- /notebooks/nb09-conv-manager-longform-rewrite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb09-conv-manager-longform-rewrite.ipynb -------------------------------------------------------------------------------- /notebooks/nb10-concurrent-speaker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb10-concurrent-speaker.ipynb -------------------------------------------------------------------------------- /notebooks/nb11-slot-extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb11-slot-extraction.ipynb -------------------------------------------------------------------------------- /notebooks/nb12-test-backend-selector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb12-test-backend-selector.ipynb -------------------------------------------------------------------------------- /notebooks/nb13-multi-prompt-queries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/notebooks/nb13-multi-prompt-queries.ipynb -------------------------------------------------------------------------------- /pre-commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/pre-commit.py -------------------------------------------------------------------------------- /scripts/makeprompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/scripts/makeprompt.sh -------------------------------------------------------------------------------- /scripts/s01_fetch_sample_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/scripts/s01_fetch_sample_responses.py -------------------------------------------------------------------------------- /setup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdmamin/jabberwocky/HEAD/setup/setup.py --------------------------------------------------------------------------------