From 3220f19ee209de5e4bbc6db44261adcd4bbf1df1 Mon Sep 17 00:00:00 2001 From: Ccheers <1048315650@qq.com> Date: Thu, 16 Nov 2023 00:23:41 +0800 Subject: [PATCH] feat(runapi): add RunStepList response args https://platform.openai.com/docs/api-reference/runs/listRunSteps (#573) --- run.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run.go b/run.go index 7ff730f..f95bf0e 100644 --- a/run.go +++ b/run.go @@ -157,6 +157,10 @@ type StepDetailsToolCalls struct { type RunStepList struct { RunSteps []RunStep `json:"data"` + FirstID string `json:"first_id"` + LastID string `json:"last_id"` + HasMore bool `json:"has_more"` + httpHeader }