UNPKG
@sisu-ai/adapter-openai
Version:
latest (4.1.0)
4.1.0
4.0.2
4.0.1
4.0.0
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.0.0
1.0.1
1.0.0
OpenAI‑compatible Chat adapter with tools support.
github.com/finger-gun/sisu
finger-gun/sisu
@sisu-ai/adapter-openai
/
dist
/
index.d.ts
9 lines
(8 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
LLM
}
from
'@sisu-ai/core'
;
export
interface
OpenAIAdapterOptions
{
model
:
string
;
apiKey
?:
string
;
baseUrl
?:
string
;
responseModel
?:
string
; }
export
declare
function
openAIAdapter
(
opts
:
OpenAIAdapterOptions
):
LLM
;