From 6da05a7a790bab48270e697adce0726979027c9c Mon Sep 17 00:00:00 2001 From: tytodd Date: Sun, 22 Feb 2026 12:45:34 -0800 Subject: [PATCH] (no commit message) --- README.md | 2 -- config.json | 3 +++ program.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) delete mode 100644 README.md create mode 100644 config.json create mode 100644 program.json diff --git a/README.md b/README.md deleted file mode 100644 index 57d7bf9..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# no-code-repo - diff --git a/config.json b/config.json new file mode 100644 index 0000000..4475ebc --- /dev/null +++ b/config.json @@ -0,0 +1,3 @@ +{ + "model": null +} \ No newline at end of file diff --git a/program.json b/program.json new file mode 100644 index 0000000..7b864a9 --- /dev/null +++ b/program.json @@ -0,0 +1,42 @@ +{ + "predictor": { + "traces": [], + "train": [], + "demos": [], + "signature": { + "instructions": "Given the fields `question`, `context`, produce the fields `answer`.", + "fields": [ + { + "prefix": "Question:", + "description": "${question}" + }, + { + "prefix": "Context:", + "description": "${context}" + }, + { + "prefix": "Answer:", + "description": "Answer to the question, based on the passage" + } + ] + }, + "lm": { + "model": "openai/gpt-4o-mini", + "model_type": "chat", + "cache": true, + "num_retries": 3, + "finetuning_model": null, + "launch_kwargs": {}, + "train_kwargs": {}, + "temperature": null, + "max_tokens": null + } + }, + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.1.2", + "cloudpickle": "3.1" + } + } +} \ No newline at end of file