├── .gitignore ├── README.md ├── data ├── questions_01.txt └── questions_02.txt ├── figures ├── best_model_performance_by_section.pdf ├── best_model_performance_by_section.png ├── model_progression.pdf └── model_progression.png ├── poetry.lock ├── pyproject.toml ├── results ├── questions-02.tar.gz └── questions-02 │ └── sessions-01 │ ├── cpa-exam-020 │ ├── exam_data.json │ └── session.html │ └── cpa-exam-180 │ ├── exam_data.json │ └── session.html └── src ├── export_session_html.py ├── prompts.py ├── publication_figures_q01.ipynb ├── publication_figures_q02.ipynb ├── question_data.py ├── results_assessment_2.py ├── run_exam.py ├── run_exam_old_models.py ├── score_exam.py └── session_template.html /.gitignore: -------------------------------------------------------------------------------- 1 | .openai_key -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/README.md -------------------------------------------------------------------------------- /data/questions_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/data/questions_01.txt -------------------------------------------------------------------------------- /data/questions_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/data/questions_02.txt -------------------------------------------------------------------------------- /figures/best_model_performance_by_section.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/figures/best_model_performance_by_section.pdf -------------------------------------------------------------------------------- /figures/best_model_performance_by_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/figures/best_model_performance_by_section.png -------------------------------------------------------------------------------- /figures/model_progression.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/figures/model_progression.pdf -------------------------------------------------------------------------------- /figures/model_progression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/figures/model_progression.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /results/questions-02.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/results/questions-02.tar.gz -------------------------------------------------------------------------------- /results/questions-02/sessions-01/cpa-exam-020/exam_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/results/questions-02/sessions-01/cpa-exam-020/exam_data.json -------------------------------------------------------------------------------- /results/questions-02/sessions-01/cpa-exam-020/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/results/questions-02/sessions-01/cpa-exam-020/session.html -------------------------------------------------------------------------------- /results/questions-02/sessions-01/cpa-exam-180/exam_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/results/questions-02/sessions-01/cpa-exam-180/exam_data.json -------------------------------------------------------------------------------- /results/questions-02/sessions-01/cpa-exam-180/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/results/questions-02/sessions-01/cpa-exam-180/session.html -------------------------------------------------------------------------------- /src/export_session_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/export_session_html.py -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/prompts.py -------------------------------------------------------------------------------- /src/publication_figures_q01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/publication_figures_q01.ipynb -------------------------------------------------------------------------------- /src/publication_figures_q02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/publication_figures_q02.ipynb -------------------------------------------------------------------------------- /src/question_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/question_data.py -------------------------------------------------------------------------------- /src/results_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/results_assessment_2.py -------------------------------------------------------------------------------- /src/run_exam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/run_exam.py -------------------------------------------------------------------------------- /src/run_exam_old_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/run_exam_old_models.py -------------------------------------------------------------------------------- /src/score_exam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/score_exam.py -------------------------------------------------------------------------------- /src/session_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbommar/gpt-as-knowledge-worker/HEAD/src/session_template.html --------------------------------------------------------------------------------