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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
- import { createLambdaLabsProvider } from '../../src/providers/lambdalabs';
- import { OpenAiChatCompletionProvider } from '../../src/providers/openai/chat';
- import { OpenAiCompletionProvider } from '../../src/providers/openai/completion';
- import { OpenAiEmbeddingProvider } from '../../src/providers/openai/embedding';
- jest.mock('../../src/providers/openai/chat');
- jest.mock('../../src/providers/openai/completion');
- jest.mock('../../src/providers/openai/embedding');
- describe('createLambdaLabsProvider', () => {
- beforeEach(() => {
- jest.resetAllMocks();
- });
- it('should create chat provider when path includes chat', () => {
- const provider = createLambdaLabsProvider('lambda:chat:model-name');
- expect(provider).toBeInstanceOf(OpenAiChatCompletionProvider);
- expect(OpenAiChatCompletionProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should create completion provider when path includes completion', () => {
- const provider = createLambdaLabsProvider('lambda:completion:model-name');
- expect(provider).toBeInstanceOf(OpenAiCompletionProvider);
- expect(OpenAiCompletionProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should create embedding provider when path includes embedding', () => {
- const provider = createLambdaLabsProvider('lambda:embedding:model-name');
- expect(provider).toBeInstanceOf(OpenAiEmbeddingProvider);
- expect(OpenAiEmbeddingProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should create embedding provider when path includes embeddings', () => {
- const provider = createLambdaLabsProvider('lambda:embeddings:model-name');
- expect(provider).toBeInstanceOf(OpenAiEmbeddingProvider);
- expect(OpenAiEmbeddingProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should default to chat provider when no type specified', () => {
- const provider = createLambdaLabsProvider('lambda:model-name');
- expect(provider).toBeInstanceOf(OpenAiChatCompletionProvider);
- expect(OpenAiChatCompletionProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should pass through additional config options', () => {
- const provider = createLambdaLabsProvider('lambda:chat:model-name', {
- config: {
- config: {
- temperature: 0.7,
- maxTokens: 100,
- },
- },
- });
- expect(provider).toBeInstanceOf(OpenAiChatCompletionProvider);
- expect(OpenAiChatCompletionProvider).toHaveBeenCalledWith('model-name', {
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {
- temperature: 0.7,
- maxTokens: 100,
- },
- },
- });
- });
- it('should pass through provider ID', () => {
- const provider = createLambdaLabsProvider('lambda:chat:model-name', {
- id: 'my-provider',
- });
- expect(provider).toBeInstanceOf(OpenAiChatCompletionProvider);
- expect(OpenAiChatCompletionProvider).toHaveBeenCalledWith('model-name', {
- id: 'my-provider',
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- it('should pass through env overrides', () => {
- const provider = createLambdaLabsProvider('lambda:chat:model-name', {
- env: {
- LAMBDA_API_KEY: 'test-key',
- },
- });
- expect(provider).toBeInstanceOf(OpenAiChatCompletionProvider);
- expect(OpenAiChatCompletionProvider).toHaveBeenCalledWith('model-name', {
- env: {
- LAMBDA_API_KEY: 'test-key',
- },
- config: {
- apiBaseUrl: 'https://api.lambda.ai/v1',
- apiKeyEnvar: 'LAMBDA_API_KEY',
- passthrough: {},
- },
- });
- });
- });
|