0.0.15 • Published 5 months ago

llm-sdk-node v0.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

llm-sdk-node

This is just another SDK for the common LLM API providers.

Installation

npm install llm-sdk-node

Usage

import { generateText, AzureOpenAIService } from 'llm-sdk-node';

const llm = new AzureOpenAIService({
  apiKey: 'YOUR_API_KEY',
  deployment: 'YOUR_DEPLOYMENT',
  endpoint: 'YOUR_ENDPOINT'
});

const { text } = await generateText({
  llm,
  messages: [{ role: 'user', content: 'Write a story single sentence about a dragon' }]
});
0.0.15

5 months ago

0.0.14

5 months ago

0.0.13

5 months ago

0.0.12

5 months ago

0.0.11

5 months ago

0.0.10

5 months ago

0.0.9

5 months ago

0.0.8

5 months ago

0.0.7

5 months ago

0.0.6

5 months ago

0.0.5

5 months ago

0.0.4

5 months ago

0.0.3

5 months ago

0.0.2

5 months ago

0.0.1

5 months ago