Skip to content

Commit

Permalink
Avoid time.DateOnly
Browse files Browse the repository at this point in the history
It looks like the github action build environment for this repo uses
a go 1.19.x environment which does not have time.DateOnly. Replace
with local constant until this is upgraded.
  • Loading branch information
mikeb26 committed Nov 17, 2023
1 parent e16ad3f commit 83c32d7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions billing.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ type BillingUsageResponse struct {
httpHeader
}

// @todo remove this and replace w/ time.DateOnly once github build
// environment is upgraded to a more recent go toolchain.
const DateOnly = "2006-01-02"

// currently the OpenAI usage API is not publicly documented and will explictly
// reject requests using an API key authorization. however, it can be utilized
// logging into https://platform.openai.com/usage and retrieving your session
Expand All @@ -43,8 +47,8 @@ var (
// GetBillingUsage — API call to Get billing usage details.
func (c *Client) GetBillingUsage(ctx context.Context, startDate time.Time,
endDate time.Time) (response BillingUsageResponse, err error) {
startDateArg := fmt.Sprintf("start_date=%v", startDate.Format(time.DateOnly))
endDateArg := fmt.Sprintf("end_date=%v", endDate.Format(time.DateOnly))
startDateArg := fmt.Sprintf("start_date=%v", startDate.Format(DateOnly))
endDateArg := fmt.Sprintf("end_date=%v", endDate.Format(DateOnly))
queryParams := fmt.Sprintf("%v&%v", startDateArg, endDateArg)
urlSuffix := fmt.Sprintf("%v?%v", billingUsageSuffix, queryParams)

Expand Down

0 comments on commit 83c32d7

Please sign in to comment.