include openai_api_key from github action

This commit is contained in:
David Blass
2025-11-13 17:09:16 -05:00
parent 75cb3ecf08
commit cb01f0ae44
5 changed files with 13 additions and 9 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ const keyInputDefs = flatMorph(
export const Inputs = type({
prompt: "string",
...keyInputDefs,
"agent?": AgentName,
"agent?": AgentName.or("undefined"),
});
export type Inputs = typeof Inputs.infer;