16 lines
409 B
Modula-2
16 lines
409 B
Modula-2
// PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
// Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
// https://www.permacomputer.com
|
|
|
|
module uncloseai-go-openai
|
|
|
|
go 1.19
|
|
|
|
require github.com/openai/openai-go/v3 v3.3.0
|
|
|
|
require (
|
|
github.com/tidwall/gjson v1.14.4 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/tidwall/sjson v1.2.5 // indirect
|
|
)
|