From 05985249f0d6affca9f3c50e59e463a2e4d87690 Mon Sep 17 00:00:00 2001 From: Tyrin Todd Date: Sun, 29 Mar 2026 22:08:49 -0700 Subject: [PATCH] (no commit message) --- README.md | 9 +++++++-- config.json | 6 ++++++ program.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 config.json create mode 100644 program.json diff --git a/README.md b/README.md index 57d7bf9..49cfb58 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ -# no-code-repo - +--- +tags: +- prod +- v2 +task: summarization +version: 3 +--- \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..6b9ac53 --- /dev/null +++ b/config.json @@ -0,0 +1,6 @@ +{ + "model": null, + "output_type": "str", + "lm": "openai/gpt-4o-mini", + "number": 1 +} \ 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