-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
89 lines (81 loc) · 1.72 KB
/
index.ts
File metadata and controls
89 lines (81 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/**
* LockLLM JavaScript/TypeScript SDK
*
* Universal AI security SDK with prompt injection detection.
* Completely free with unlimited usage. BYOK (Bring Your Own Key).
*
* @packageDocumentation
*/
// Main client
export { LockLLM } from './client';
// Error classes
export {
LockLLMError,
AuthenticationError,
RateLimitError,
PromptInjectionError,
PolicyViolationError,
AbuseDetectedError,
PIIDetectedError,
InsufficientCreditsError,
UpstreamError,
ConfigurationError,
NetworkError,
} from './errors';
// Types
export type {
LockLLMConfig,
RequestOptions,
Provider,
ScanMode,
ScanAction,
RouteAction,
PIIAction,
ProxyRequestOptions,
ProxyResponseMetadata,
} from './types/common';
export type {
ScanRequest,
ScanResponse,
ScanOptions,
Sensitivity,
PolicyViolation,
ScanWarning,
AbuseWarning,
PIIResult,
} from './types/scan';
export type {
ScanResult,
LockLLMErrorData,
PromptInjectionErrorData,
PolicyViolationErrorData,
AbuseDetectedErrorData,
PIIDetectedErrorData,
InsufficientCreditsErrorData,
} from './types/errors';
export type { ProviderName } from './types/providers';
// Utilities
export { getProxyURL, getAllProxyURLs, getUniversalProxyURL } from './utils';
export { buildLockLLMHeaders, parseProxyMetadata, decodeDetailField } from './utils/proxy-headers';
// Wrappers (re-exported for convenience)
export {
createOpenAI,
createAnthropic,
createClient,
createOpenAICompatible,
createGroq,
createDeepSeek,
createPerplexity,
createMistral,
createOpenRouter,
createTogether,
createXAI,
createFireworks,
createAnyscale,
createHuggingFace,
createGemini,
createCohere,
createAzure,
createBedrock,
createVertexAI,
} from './wrappers';