├── .gitignore ├── LICENSE ├── README.md ├── docker ├── gib │ └── Dockerfile ├── openllm │ └── Dockerfile ├── peft │ └── Dockerfile └── whisper │ └── Dockerfile └── src ├── app.py ├── conf ├── cli-commands.map ├── constants.js ├── domain-names.map ├── gib-app-splainer.ini ├── gib-app.ini ├── long-term-memory │ ├── events.csv │ ├── events.jsonl │ ├── solutions │ │ ├── can-you-tell-me-how-many-days-there-are-in-this-month-0.json │ │ ├── can-you-tell-me-what-my-current-time-zone-is-0.json │ │ ├── do-i-have-any-concerts-this-week-0.json │ │ ├── how-many-birthdays-do-i-have-this-week-0.json │ │ ├── how-many-events-does-the-data-frame-contain-0.json │ │ ├── how-many-rows-do-i-have-in-the-todo-list-data-frame-0.json │ │ ├── how-many-seconds-in-an-hour-0.json │ │ ├── w-many-hours-time-difference-is-there-between-washington-dc-and-...-0.json │ │ ├── what-is-next-fridays-date-0.json │ │ ├── what-time-is-it-in-san-francisco-0.json │ │ ├── what-time-is-it-in-washington-dc-0.json │ │ ├── what-was-yesterdays-date-0.json │ │ ├── whats-on-my-todo-list-for-today-0.json │ │ ├── whats-todays-date-0.json │ │ ├── whats-tomorrows-date-0.json │ │ └── who-has-birthdays-this-week-0.json │ └── todo.csv ├── modes.json ├── numbers.map ├── prompt-dictionary.map ├── prompts.map ├── prompts │ ├── agent-router-template.txt │ ├── agents │ │ ├── bug-injector.txt │ │ ├── calendaring-all.txt │ │ ├── calendaring.txt │ │ ├── date-and-time.txt │ │ ├── debugger-minimalist.txt │ │ ├── debugger.txt │ │ ├── function-mapping.txt │ │ ├── receptionist.txt │ │ ├── todo-lists.txt │ │ └── weather.txt │ ├── formatters │ │ ├── calendaring.txt │ │ ├── date-and-time.txt │ │ ├── receptionist.txt │ │ ├── receptionist.yaml │ │ ├── todo-list.txt │ │ └── weather.txt │ ├── incremental-agents │ │ ├── events │ │ │ ├── calendaring-step-1.txt │ │ │ ├── calendaring-step-2.txt │ │ │ ├── calendaring-step-3.txt │ │ │ ├── calendaring-step-4.txt │ │ │ ├── calendaring-xml-formatting-instructions-step-1.txt │ │ │ ├── calendaring-xml-formatting-instructions-step-2.txt │ │ │ └── calendaring-xml-formatting-instructions-step-3.txt │ │ └── todo-lists │ │ │ ├── todo-lists-step-1.txt │ │ │ ├── todo-lists-step-2.txt │ │ │ ├── todo-lists-step-3.txt │ │ │ ├── todo-lists-step-4.txt │ │ │ ├── todo-lists-xml-formatting-instructions-step-1.txt │ │ │ ├── todo-lists-xml-formatting-instructions-step-2.txt │ │ │ └── todo-lists-xml-formatting-instructions-step-3.txt │ ├── iterative-agents │ │ └── debugger │ │ │ ├── debugger-step-1.txt │ │ │ └── debugger-xml-formatting-instructions-step-1.txt │ ├── llms │ │ ├── structure-mixtral-8x7b.txt │ │ └── structure-phind-codellama-34b.txt │ ├── prompt-proofreader-generic.txt │ ├── python-proofreading-template.txt │ ├── sql-proofreading-template.txt │ └── vox-command-template.txt ├── tools │ ├── search.json │ └── search.xml └── translation-dictionary.map ├── ephemera ├── __init__.py ├── dead-letters │ ├── Decomposing lion chain agent.py │ ├── __init__.py │ ├── event_generator.py │ ├── event_generator_df.py │ ├── foo.json │ ├── genie_client_cli.py │ ├── genie_client_cmd.py │ ├── genie_client_gui.py │ ├── grep.sh │ ├── incremental_calendaring_agent.py │ └── memory_manager.py ├── notebooks │ ├── alice.txt │ ├── ddg-search-toaster.ipynb │ ├── deepily-calendaring-agent-handmade.ipynb │ ├── deepily-code-debugging-agent.ipynb │ ├── deepily-eleven-tts.ipynb │ ├── deepily-iterative-calendaring-agent.ipynb │ ├── deepily-regex.ipynb │ ├── deepily-xml-prompt-generator.ipynb │ ├── foo-assorted-bits-and-bobs.ipynb │ ├── langchain-agent-dataframe-long-term-memory.ipynb │ ├── langchain-agent-dataframe.ipynb │ ├── langchain-autogpt-agent.ipynb │ ├── langchain-calendaring-agent-take-ii.ipynb │ ├── langchain-calendaring-agent.ipynb │ ├── langchain-chat-memory.ipynb │ ├── langchain-custom-knowledge-chatbot.ipynb │ ├── langchain-linux-console.ipynb │ ├── mistral │ │ ├── mistral-7b-instruct-v2-synthetic-function-mapping-data.ipynb │ │ └── mistral-7b-instruct-v2-training-peft.ipynb │ ├── openai-fine-tuning-classification.ipynb │ ├── openllm-and-langchain.ipynb │ ├── phind-codellama-34b-v2 │ │ ├── codellama-13b-instruct-hf.ipynb │ │ ├── codellama-7b-hf-training-peft-kaitchup.ipynb │ │ ├── codellama-7b-hf-training-peft-original.ipynb │ │ ├── huggingface-text-generation-toaster.ipynb │ │ ├── huggingface-tgi-client.ipynb │ │ ├── kaitchup-evaluating-4-bit-qlora.ipynb │ │ ├── kaitchup-merging-lora-and-llms-the-right-way.ipynb │ │ ├── phind-34b-v2-hf-training-peft-kaitchup-load-and-test-adapter.ipynb │ │ ├── phind-34b-v2-hf-training-peft-kaitchup.ipynb │ │ ├── phind-codellama-34b-v2-baseline.ipynb │ │ ├── phind-codellama-34b-v2-training-peft.ipynb │ │ └── phind-codellama-34b-v2-training.ipynb │ ├── synthetic-data-generation-json.ipynb │ ├── synthetic-data-generation-plain-text.ipynb │ ├── threaded-queue-access-toaster.ipynb │ └── utterance-embeddings.ipynb └── prompts │ ├── __init__.py │ ├── data │ ├── __init__.py │ ├── fine-tuning-results │ │ ├── ft-deepily-2023-06-20-17-49-29.csv │ │ └── ft-deepily-2023-07-10-23-39-03.csv │ ├── jsonl │ │ ├── args-extraction-domain-names-batch-01.jsonl │ │ ├── args-extraction-search-terms-batch-01.jsonl │ │ ├── vox-command-batch-02.jsonl │ │ ├── vox-command-batch-02_prepared_train.jsonl │ │ └── vox-command-batch-02_prepared_valid.jsonl │ ├── munger.py │ ├── placeholders-calendaring-dates-and-times.txt │ ├── placeholders-calendaring-events.txt │ ├── placeholders-calendaring-locations.txt │ ├── placeholders-calendaring-people.txt │ ├── placeholders-cities-and-countries.txt │ ├── placeholders-interjections-um-er-uh-etc.txt │ ├── placeholders-receptionist-names.txt │ ├── placeholders-receptionist-salutations.txt │ ├── placeholders-receptionist-titles.txt │ ├── placeholders-search-terms.txt │ ├── synthetic-data-agent-routing-calendaring.txt │ ├── synthetic-data-agent-routing-date-and-time.txt │ ├── synthetic-data-agent-routing-receptionist.txt │ ├── synthetic-data-agent-routing-todo-lists.txt │ ├── synthetic-data-agent-routing-weather.txt │ ├── synthetic-data-agent-search-static-vs-dynamic.txt │ ├── synthetic-data-agent-search-static-vs-dynamic.xml │ ├── synthetic-data-load-url-current-tab.txt │ ├── synthetic-data-load-url-new-tab.txt │ ├── synthetic-data-none-of-the-above.txt │ ├── synthetic-data-search-clipboard-GENERIC-current-tab.txt │ ├── synthetic-data-search-clipboard-GENERIC-new-tab.txt │ ├── synthetic-data-search-clipboard-google-in-current-tab.txt │ ├── synthetic-data-search-clipboard-google-in-new-tab.txt │ ├── synthetic-data-search-clipboard-google-scholar-in-current-tab.txt │ ├── synthetic-data-search-clipboard-google-scholar-in-new-tab.txt │ ├── synthetic-data-search-clipboard-in-current-tab.txt │ ├── synthetic-data-search-clipboard-in-new-tab.txt │ ├── synthetic-data-search-clipboard-kagi-in-current-tab.txt │ ├── synthetic-data-search-clipboard-kagi-in-new-tab.txt │ ├── synthetic-data-search-clipboard-perplexity-in-current-tab.txt │ ├── synthetic-data-search-clipboard-perplexity-in-new-tab.txt │ ├── synthetic-data-search-clipboard-phind-in-current-tab.txt │ ├── synthetic-data-search-clipboard-phind-in-new-tab.txt │ ├── synthetic-data-search-google-in-current-tab.txt │ ├── synthetic-data-search-google-in-new-tab.txt │ ├── synthetic-data-search-google-scholar-in-current-tab.txt │ ├── synthetic-data-search-google-scholar-in-new-tab.txt │ ├── synthetic-data-search-in-current-tab.txt │ ├── synthetic-data-search-in-new-tab.txt │ ├── synthetic-data-search-kagi-in-current-tab.txt │ ├── synthetic-data-search-kagi-in-new-tab.txt │ ├── synthetic-data-search-perplexity-in-current-tab.txt │ ├── synthetic-data-search-perplexity-in-new-tab.txt │ ├── synthetic-data-search-phind-in-current-tab.txt │ ├── synthetic-data-search-phind-in-new-tab.txt │ └── training-commands.map │ ├── list_utterance_generator.py │ ├── retired │ ├── synthetic-data-generation-synonymous-load-url-in-current-tab.txt │ ├── synthetic-data-generation-synonymous-load_url_in_new_tab.txt │ ├── synthetic-data-generation-synonymous-search_current_tab.txt │ ├── synthetic-data-generation-synonymous-search_google_current_tab.txt │ ├── synthetic-data-generation-synonymous-search_google_new_tab.txt │ ├── synthetic-data-generation-synonymous-search_google_scholar_new_tab.txt │ └── synthetic-data-generation-synonymous-search_new_tab.txt │ └── xml_fine_tuning_prompt_generator.py ├── lib ├── __init__.py ├── agents │ ├── __init__.py │ ├── agent_base.py │ ├── agent_refactoring.py │ ├── bug_injector.py │ ├── calendaring_agent.py │ ├── date_and_time_agent.py │ ├── deprecated │ │ ├── __init__.py │ │ ├── xxx_agent.py │ │ ├── xxx_data_querying_agent.py │ │ ├── xxx_incremental_calendaring_agent.py │ │ └── xxx_incremental_todo_list_agent.py │ ├── function_mapping_json.py │ ├── function_mapping_search.py │ ├── iterative_debugging_agent.py │ ├── llm.py │ ├── raw_output_formatter.py │ ├── receptionist_agent.py │ ├── runnable_code.py │ ├── todo_list_agent.py │ └── weather_agent.py ├── app │ ├── __init__.py │ ├── configuration_manager.py │ ├── fifo_queue.py │ ├── multimodal_munger.py │ ├── running_fifo_queue.py │ ├── todo_fifo_queue.py │ └── util_llm_client.py ├── autogen │ └── __init__.py ├── clients │ ├── __init__.py │ ├── genie_client.py │ ├── genie_client_cmd.py │ └── genie_client_gui.py ├── memory │ ├── __init__.py │ ├── deprecated │ │ ├── __init__.py │ │ └── question_embeddings_dict.py │ ├── input_and_output_table.py │ ├── question_embeddings_table.py │ ├── solution_snapshot.py │ └── solution_snapshot_mgr.py ├── tools │ ├── __init__.py │ ├── search_gib.py │ └── search_kagi.py └── utils │ ├── __init__.py │ ├── util.py │ ├── util_code_runner.py │ ├── util_pandas.py │ ├── util_pytorch.py │ ├── util_stopwatch.py │ └── util_xml.py ├── resources └── sound │ ├── ._working.wav │ └── working.wav ├── scripts ├── run-flask-gib.sh ├── run-flask-tts.sh └── run-genie-gui.sh ├── static ├── gentle-gong.mp3 ├── play-16.png └── queue.html └── templates ├── upload-and-transcribe.html └── uploader.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/README.md -------------------------------------------------------------------------------- /docker/gib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/docker/gib/Dockerfile -------------------------------------------------------------------------------- /docker/openllm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/docker/openllm/Dockerfile -------------------------------------------------------------------------------- /docker/peft/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/docker/peft/Dockerfile -------------------------------------------------------------------------------- /docker/whisper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/docker/whisper/Dockerfile -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/app.py -------------------------------------------------------------------------------- /src/conf/cli-commands.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/cli-commands.map -------------------------------------------------------------------------------- /src/conf/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/constants.js -------------------------------------------------------------------------------- /src/conf/domain-names.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/domain-names.map -------------------------------------------------------------------------------- /src/conf/gib-app-splainer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/gib-app-splainer.ini -------------------------------------------------------------------------------- /src/conf/gib-app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/gib-app.ini -------------------------------------------------------------------------------- /src/conf/long-term-memory/events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/events.csv -------------------------------------------------------------------------------- /src/conf/long-term-memory/events.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/events.jsonl -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/can-you-tell-me-how-many-days-there-are-in-this-month-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/can-you-tell-me-how-many-days-there-are-in-this-month-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/can-you-tell-me-what-my-current-time-zone-is-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/can-you-tell-me-what-my-current-time-zone-is-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/do-i-have-any-concerts-this-week-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/do-i-have-any-concerts-this-week-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/how-many-birthdays-do-i-have-this-week-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/how-many-birthdays-do-i-have-this-week-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/how-many-events-does-the-data-frame-contain-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/how-many-events-does-the-data-frame-contain-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/how-many-rows-do-i-have-in-the-todo-list-data-frame-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/how-many-rows-do-i-have-in-the-todo-list-data-frame-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/how-many-seconds-in-an-hour-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/how-many-seconds-in-an-hour-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/w-many-hours-time-difference-is-there-between-washington-dc-and-...-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/w-many-hours-time-difference-is-there-between-washington-dc-and-...-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/what-is-next-fridays-date-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/what-is-next-fridays-date-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/what-time-is-it-in-san-francisco-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/what-time-is-it-in-san-francisco-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/what-time-is-it-in-washington-dc-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/what-time-is-it-in-washington-dc-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/what-was-yesterdays-date-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/what-was-yesterdays-date-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/whats-on-my-todo-list-for-today-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/whats-on-my-todo-list-for-today-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/whats-todays-date-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/whats-todays-date-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/whats-tomorrows-date-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/whats-tomorrows-date-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/solutions/who-has-birthdays-this-week-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/solutions/who-has-birthdays-this-week-0.json -------------------------------------------------------------------------------- /src/conf/long-term-memory/todo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/long-term-memory/todo.csv -------------------------------------------------------------------------------- /src/conf/modes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/modes.json -------------------------------------------------------------------------------- /src/conf/numbers.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/numbers.map -------------------------------------------------------------------------------- /src/conf/prompt-dictionary.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompt-dictionary.map -------------------------------------------------------------------------------- /src/conf/prompts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts.map -------------------------------------------------------------------------------- /src/conf/prompts/agent-router-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agent-router-template.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/bug-injector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/bug-injector.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/calendaring-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/calendaring-all.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/calendaring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/calendaring.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/date-and-time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/date-and-time.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/debugger-minimalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/debugger-minimalist.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/debugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/debugger.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/function-mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/function-mapping.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/receptionist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/receptionist.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/todo-lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/agents/todo-lists.txt -------------------------------------------------------------------------------- /src/conf/prompts/agents/weather.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/conf/prompts/formatters/calendaring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/calendaring.txt -------------------------------------------------------------------------------- /src/conf/prompts/formatters/date-and-time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/date-and-time.txt -------------------------------------------------------------------------------- /src/conf/prompts/formatters/receptionist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/receptionist.txt -------------------------------------------------------------------------------- /src/conf/prompts/formatters/receptionist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/receptionist.yaml -------------------------------------------------------------------------------- /src/conf/prompts/formatters/todo-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/todo-list.txt -------------------------------------------------------------------------------- /src/conf/prompts/formatters/weather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/formatters/weather.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-step-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-step-2.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-step-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-step-3.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-step-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-step-4.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-2.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/events/calendaring-xml-formatting-instructions-step-3.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-2.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-3.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-step-4.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-2.txt -------------------------------------------------------------------------------- /src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/incremental-agents/todo-lists/todo-lists-xml-formatting-instructions-step-3.txt -------------------------------------------------------------------------------- /src/conf/prompts/iterative-agents/debugger/debugger-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/iterative-agents/debugger/debugger-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/iterative-agents/debugger/debugger-xml-formatting-instructions-step-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/iterative-agents/debugger/debugger-xml-formatting-instructions-step-1.txt -------------------------------------------------------------------------------- /src/conf/prompts/llms/structure-mixtral-8x7b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/llms/structure-mixtral-8x7b.txt -------------------------------------------------------------------------------- /src/conf/prompts/llms/structure-phind-codellama-34b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/llms/structure-phind-codellama-34b.txt -------------------------------------------------------------------------------- /src/conf/prompts/prompt-proofreader-generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/prompt-proofreader-generic.txt -------------------------------------------------------------------------------- /src/conf/prompts/python-proofreading-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/python-proofreading-template.txt -------------------------------------------------------------------------------- /src/conf/prompts/sql-proofreading-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/sql-proofreading-template.txt -------------------------------------------------------------------------------- /src/conf/prompts/vox-command-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/prompts/vox-command-template.txt -------------------------------------------------------------------------------- /src/conf/tools/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/tools/search.json -------------------------------------------------------------------------------- /src/conf/tools/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/tools/search.xml -------------------------------------------------------------------------------- /src/conf/translation-dictionary.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/conf/translation-dictionary.map -------------------------------------------------------------------------------- /src/ephemera/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ephemera/dead-letters/Decomposing lion chain agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/Decomposing lion chain agent.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ephemera/dead-letters/event_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/event_generator.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/event_generator_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/event_generator_df.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/foo.json -------------------------------------------------------------------------------- /src/ephemera/dead-letters/genie_client_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/genie_client_cli.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/genie_client_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/genie_client_cmd.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/genie_client_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/genie_client_gui.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/grep.sh -------------------------------------------------------------------------------- /src/ephemera/dead-letters/incremental_calendaring_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/incremental_calendaring_agent.py -------------------------------------------------------------------------------- /src/ephemera/dead-letters/memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/dead-letters/memory_manager.py -------------------------------------------------------------------------------- /src/ephemera/notebooks/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/alice.txt -------------------------------------------------------------------------------- /src/ephemera/notebooks/ddg-search-toaster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/ddg-search-toaster.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-calendaring-agent-handmade.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-calendaring-agent-handmade.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-code-debugging-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-code-debugging-agent.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-eleven-tts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-eleven-tts.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-iterative-calendaring-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-iterative-calendaring-agent.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-regex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-regex.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/deepily-xml-prompt-generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/deepily-xml-prompt-generator.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/foo-assorted-bits-and-bobs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/foo-assorted-bits-and-bobs.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-agent-dataframe-long-term-memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-agent-dataframe-long-term-memory.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-agent-dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-agent-dataframe.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-autogpt-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-autogpt-agent.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-calendaring-agent-take-ii.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-calendaring-agent-take-ii.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-calendaring-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-calendaring-agent.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-chat-memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-chat-memory.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-custom-knowledge-chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-custom-knowledge-chatbot.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/langchain-linux-console.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/langchain-linux-console.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/mistral/mistral-7b-instruct-v2-synthetic-function-mapping-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/mistral/mistral-7b-instruct-v2-synthetic-function-mapping-data.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/mistral/mistral-7b-instruct-v2-training-peft.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/mistral/mistral-7b-instruct-v2-training-peft.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/openai-fine-tuning-classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/openai-fine-tuning-classification.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/openllm-and-langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/openllm-and-langchain.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/codellama-13b-instruct-hf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/codellama-13b-instruct-hf.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/codellama-7b-hf-training-peft-kaitchup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/codellama-7b-hf-training-peft-kaitchup.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/codellama-7b-hf-training-peft-original.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/codellama-7b-hf-training-peft-original.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/huggingface-text-generation-toaster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/huggingface-text-generation-toaster.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/huggingface-tgi-client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/huggingface-tgi-client.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/kaitchup-evaluating-4-bit-qlora.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/kaitchup-evaluating-4-bit-qlora.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/kaitchup-merging-lora-and-llms-the-right-way.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/kaitchup-merging-lora-and-llms-the-right-way.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/phind-34b-v2-hf-training-peft-kaitchup-load-and-test-adapter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/phind-34b-v2-hf-training-peft-kaitchup-load-and-test-adapter.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/phind-34b-v2-hf-training-peft-kaitchup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/phind-34b-v2-hf-training-peft-kaitchup.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-baseline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-baseline.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-training-peft.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-training-peft.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/phind-codellama-34b-v2/phind-codellama-34b-v2-training.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/synthetic-data-generation-json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/synthetic-data-generation-json.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/synthetic-data-generation-plain-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/synthetic-data-generation-plain-text.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/threaded-queue-access-toaster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/threaded-queue-access-toaster.ipynb -------------------------------------------------------------------------------- /src/ephemera/notebooks/utterance-embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/notebooks/utterance-embeddings.ipynb -------------------------------------------------------------------------------- /src/ephemera/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ephemera/prompts/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ephemera/prompts/data/fine-tuning-results/ft-deepily-2023-06-20-17-49-29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/fine-tuning-results/ft-deepily-2023-06-20-17-49-29.csv -------------------------------------------------------------------------------- /src/ephemera/prompts/data/fine-tuning-results/ft-deepily-2023-07-10-23-39-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/fine-tuning-results/ft-deepily-2023-07-10-23-39-03.csv -------------------------------------------------------------------------------- /src/ephemera/prompts/data/jsonl/args-extraction-domain-names-batch-01.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/jsonl/args-extraction-domain-names-batch-01.jsonl -------------------------------------------------------------------------------- /src/ephemera/prompts/data/jsonl/args-extraction-search-terms-batch-01.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/jsonl/args-extraction-search-terms-batch-01.jsonl -------------------------------------------------------------------------------- /src/ephemera/prompts/data/jsonl/vox-command-batch-02.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/jsonl/vox-command-batch-02.jsonl -------------------------------------------------------------------------------- /src/ephemera/prompts/data/jsonl/vox-command-batch-02_prepared_train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/jsonl/vox-command-batch-02_prepared_train.jsonl -------------------------------------------------------------------------------- /src/ephemera/prompts/data/jsonl/vox-command-batch-02_prepared_valid.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/jsonl/vox-command-batch-02_prepared_valid.jsonl -------------------------------------------------------------------------------- /src/ephemera/prompts/data/munger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/munger.py -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-calendaring-dates-and-times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-calendaring-dates-and-times.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-calendaring-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-calendaring-events.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-calendaring-locations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-calendaring-locations.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-calendaring-people.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-calendaring-people.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-cities-and-countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-cities-and-countries.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-interjections-um-er-uh-etc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-interjections-um-er-uh-etc.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-receptionist-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-receptionist-names.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-receptionist-salutations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-receptionist-salutations.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-receptionist-titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-receptionist-titles.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/placeholders-search-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/placeholders-search-terms.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-routing-calendaring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-routing-calendaring.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-routing-date-and-time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-routing-date-and-time.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-routing-receptionist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-routing-receptionist.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-routing-todo-lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-routing-todo-lists.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-routing-weather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-routing-weather.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-search-static-vs-dynamic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-search-static-vs-dynamic.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-agent-search-static-vs-dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-agent-search-static-vs-dynamic.xml -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-load-url-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-load-url-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-load-url-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-load-url-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-none-of-the-above.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-none-of-the-above.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-GENERIC-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-GENERIC-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-GENERIC-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-GENERIC-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-google-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-google-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-google-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-google-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-google-scholar-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-google-scholar-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-google-scholar-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-google-scholar-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-kagi-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-kagi-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-kagi-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-kagi-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-perplexity-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-perplexity-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-perplexity-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-perplexity-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-phind-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-phind-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-clipboard-phind-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-clipboard-phind-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-google-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-google-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-google-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-google-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-google-scholar-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-google-scholar-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-google-scholar-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-google-scholar-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-kagi-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-kagi-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-kagi-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-kagi-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-perplexity-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-perplexity-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-perplexity-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-perplexity-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-phind-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-phind-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/synthetic-data-search-phind-in-new-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/synthetic-data-search-phind-in-new-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/data/training-commands.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/data/training-commands.map -------------------------------------------------------------------------------- /src/ephemera/prompts/list_utterance_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/list_utterance_generator.py -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-load-url-in-current-tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-load-url-in-current-tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-load_url_in_new_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-load_url_in_new_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_current_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_current_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_current_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_current_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_new_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_new_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_scholar_new_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_google_scholar_new_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_new_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/retired/synthetic-data-generation-synonymous-search_new_tab.txt -------------------------------------------------------------------------------- /src/ephemera/prompts/xml_fine_tuning_prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/ephemera/prompts/xml_fine_tuning_prompt_generator.py -------------------------------------------------------------------------------- /src/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/agents/agent_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/agent_base.py -------------------------------------------------------------------------------- /src/lib/agents/agent_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/agent_refactoring.py -------------------------------------------------------------------------------- /src/lib/agents/bug_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/bug_injector.py -------------------------------------------------------------------------------- /src/lib/agents/calendaring_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/calendaring_agent.py -------------------------------------------------------------------------------- /src/lib/agents/date_and_time_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/date_and_time_agent.py -------------------------------------------------------------------------------- /src/lib/agents/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/agents/deprecated/xxx_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/deprecated/xxx_agent.py -------------------------------------------------------------------------------- /src/lib/agents/deprecated/xxx_data_querying_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/deprecated/xxx_data_querying_agent.py -------------------------------------------------------------------------------- /src/lib/agents/deprecated/xxx_incremental_calendaring_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/deprecated/xxx_incremental_calendaring_agent.py -------------------------------------------------------------------------------- /src/lib/agents/deprecated/xxx_incremental_todo_list_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/deprecated/xxx_incremental_todo_list_agent.py -------------------------------------------------------------------------------- /src/lib/agents/function_mapping_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/function_mapping_json.py -------------------------------------------------------------------------------- /src/lib/agents/function_mapping_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/function_mapping_search.py -------------------------------------------------------------------------------- /src/lib/agents/iterative_debugging_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/iterative_debugging_agent.py -------------------------------------------------------------------------------- /src/lib/agents/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/llm.py -------------------------------------------------------------------------------- /src/lib/agents/raw_output_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/raw_output_formatter.py -------------------------------------------------------------------------------- /src/lib/agents/receptionist_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/receptionist_agent.py -------------------------------------------------------------------------------- /src/lib/agents/runnable_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/runnable_code.py -------------------------------------------------------------------------------- /src/lib/agents/todo_list_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/todo_list_agent.py -------------------------------------------------------------------------------- /src/lib/agents/weather_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/agents/weather_agent.py -------------------------------------------------------------------------------- /src/lib/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/app/configuration_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/configuration_manager.py -------------------------------------------------------------------------------- /src/lib/app/fifo_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/fifo_queue.py -------------------------------------------------------------------------------- /src/lib/app/multimodal_munger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/multimodal_munger.py -------------------------------------------------------------------------------- /src/lib/app/running_fifo_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/running_fifo_queue.py -------------------------------------------------------------------------------- /src/lib/app/todo_fifo_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/todo_fifo_queue.py -------------------------------------------------------------------------------- /src/lib/app/util_llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/app/util_llm_client.py -------------------------------------------------------------------------------- /src/lib/autogen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/clients/genie_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/clients/genie_client.py -------------------------------------------------------------------------------- /src/lib/clients/genie_client_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/clients/genie_client_cmd.py -------------------------------------------------------------------------------- /src/lib/clients/genie_client_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/clients/genie_client_gui.py -------------------------------------------------------------------------------- /src/lib/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/memory/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/memory/deprecated/question_embeddings_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/memory/deprecated/question_embeddings_dict.py -------------------------------------------------------------------------------- /src/lib/memory/input_and_output_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/memory/input_and_output_table.py -------------------------------------------------------------------------------- /src/lib/memory/question_embeddings_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/memory/question_embeddings_table.py -------------------------------------------------------------------------------- /src/lib/memory/solution_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/memory/solution_snapshot.py -------------------------------------------------------------------------------- /src/lib/memory/solution_snapshot_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/memory/solution_snapshot_mgr.py -------------------------------------------------------------------------------- /src/lib/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/tools/search_gib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/tools/search_gib.py -------------------------------------------------------------------------------- /src/lib/tools/search_kagi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/tools/search_kagi.py -------------------------------------------------------------------------------- /src/lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util.py -------------------------------------------------------------------------------- /src/lib/utils/util_code_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util_code_runner.py -------------------------------------------------------------------------------- /src/lib/utils/util_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util_pandas.py -------------------------------------------------------------------------------- /src/lib/utils/util_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util_pytorch.py -------------------------------------------------------------------------------- /src/lib/utils/util_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util_stopwatch.py -------------------------------------------------------------------------------- /src/lib/utils/util_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/lib/utils/util_xml.py -------------------------------------------------------------------------------- /src/resources/sound/._working.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/resources/sound/._working.wav -------------------------------------------------------------------------------- /src/resources/sound/working.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/resources/sound/working.wav -------------------------------------------------------------------------------- /src/scripts/run-flask-gib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/scripts/run-flask-gib.sh -------------------------------------------------------------------------------- /src/scripts/run-flask-tts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/scripts/run-flask-tts.sh -------------------------------------------------------------------------------- /src/scripts/run-genie-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/scripts/run-genie-gui.sh -------------------------------------------------------------------------------- /src/static/gentle-gong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/static/gentle-gong.mp3 -------------------------------------------------------------------------------- /src/static/play-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/static/play-16.png -------------------------------------------------------------------------------- /src/static/queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/static/queue.html -------------------------------------------------------------------------------- /src/templates/upload-and-transcribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/templates/upload-and-transcribe.html -------------------------------------------------------------------------------- /src/templates/uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepily/genie-in-the-box/HEAD/src/templates/uploader.html --------------------------------------------------------------------------------