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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
"""Tests for infinite_chat module."""
import os
import pytest
from typing import List
from openai.types.chat import ChatCompletionMessageParam
from ..src import (
SupermemoryOpenAI,
SupermemoryInfiniteChatConfigWithProviderName,
SupermemoryInfiniteChatConfigWithProviderUrl,
ProviderName,
)
# Test configuration
PROVIDERS: List[ProviderName] = [
"openai",
"anthropic",
"openrouter",
"deepinfra",
"groq",
"google",
"cloudflare",
]
@pytest.fixture
def test_api_key() -> str:
"""Get test Supermemory API key from environment."""
api_key = os.getenv("SUPERMEMORY_API_KEY")
if not api_key:
pytest.skip("SUPERMEMORY_API_KEY environment variable is required for tests")
return api_key
@pytest.fixture
def test_provider_api_key() -> str:
"""Get test provider API key from environment."""
api_key = os.getenv("PROVIDER_API_KEY")
if not api_key:
pytest.skip("PROVIDER_API_KEY environment variable is required for tests")
return api_key
@pytest.fixture
def test_provider_name() -> ProviderName:
"""Get test provider name from environment."""
provider_name = os.getenv("PROVIDER_NAME", "openai")
if provider_name not in PROVIDERS:
pytest.fail(f"Invalid provider name: {provider_name}")
return provider_name # type: ignore
@pytest.fixture
def test_provider_url() -> str:
"""Get test provider URL from environment."""
return os.getenv("PROVIDER_URL", "")
@pytest.fixture
def test_model_name() -> str:
"""Get test model name from environment."""
return os.getenv("MODEL_NAME", "gpt-4o-mini")
@pytest.fixture
def test_headers() -> dict:
"""Get test headers."""
return {"custom-header": "test-value"}
@pytest.fixture
def test_messages() -> List[List[ChatCompletionMessageParam]]:
"""Test message sets."""
return [
[{"role": "user", "content": "Hello!"}],
[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "What is AI?"},
],
[
{"role": "user", "content": "Tell me a joke"},
{
"role": "assistant",
"content": "Why don't scientists trust atoms? Because they make up everything!",
},
{"role": "user", "content": "Tell me another one"},
],
]
class TestClientCreation:
"""Test client creation."""
def test_create_client_with_provider_name(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
test_headers: dict,
):
"""Test creating client with provider name configuration."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers=test_headers,
)
client = SupermemoryOpenAI(test_api_key, config)
assert client is not None
assert client.chat is not None
def test_create_client_with_openai_provider(
self, test_api_key: str, test_provider_api_key: str, test_headers: dict
):
"""Test creating client with OpenAI provider configuration."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name="openai",
provider_api_key=test_provider_api_key,
headers=test_headers,
)
client = SupermemoryOpenAI(test_api_key, config)
assert client is not None
def test_create_client_with_custom_provider_url(
self, test_api_key: str, test_provider_api_key: str, test_headers: dict
):
"""Test creating client with custom provider URL."""
custom_url = "https://custom-provider.com/v1"
config = SupermemoryInfiniteChatConfigWithProviderUrl(
provider_url=custom_url,
provider_api_key=test_provider_api_key,
headers=test_headers,
)
client = SupermemoryOpenAI(test_api_key, config)
assert client is not None
class TestChatCompletions:
"""Test chat completions functionality."""
@pytest.mark.asyncio
async def test_create_chat_completion_simple_message(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
test_model_name: str,
test_messages: List[List[ChatCompletionMessageParam]],
):
"""Test creating chat completion with simple message."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers={},
)
client = SupermemoryOpenAI(test_api_key, config)
result = await client.create_chat_completion(
model=test_model_name,
messages=test_messages[0], # "Hello!"
)
assert result is not None
assert hasattr(result, "choices")
assert len(result.choices) > 0
assert result.choices[0].message.content is not None
@pytest.mark.asyncio
async def test_chat_completion_convenience_method(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
test_model_name: str,
test_messages: List[List[ChatCompletionMessageParam]],
):
"""Test chat completion using convenience method."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers={},
)
client = SupermemoryOpenAI(test_api_key, config)
result = await client.chat_completion(
messages=test_messages[1], # System + user messages
model=test_model_name,
temperature=0.7,
)
assert result is not None
assert hasattr(result, "choices")
assert len(result.choices) > 0
assert result.choices[0].message.content is not None
@pytest.mark.asyncio
async def test_handle_conversation_history(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
test_model_name: str,
test_messages: List[List[ChatCompletionMessageParam]],
):
"""Test handling conversation history."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers={},
)
client = SupermemoryOpenAI(test_api_key, config)
result = await client.chat_completion(
messages=test_messages[2], # Multi-turn conversation
model=test_model_name,
)
assert result is not None
assert hasattr(result, "choices")
assert len(result.choices) > 0
assert result.choices[0].message.content is not None
@pytest.mark.asyncio
async def test_custom_headers(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
test_model_name: str,
):
"""Test working with custom headers."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers={"x-custom-header": "test-value"},
)
client = SupermemoryOpenAI(test_api_key, config)
result = await client.chat_completion(
messages=[{"role": "user", "content": "Hello"}],
model=test_model_name,
)
assert result is not None
assert hasattr(result, "choices")
class TestConfigurationValidation:
"""Test configuration validation."""
def test_handle_empty_headers_object(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
):
"""Test handling empty headers object."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
headers={},
)
client = SupermemoryOpenAI(test_api_key, config)
assert client is not None
def test_handle_configuration_without_headers(
self,
test_api_key: str,
test_provider_api_key: str,
test_provider_name: ProviderName,
):
"""Test handling configuration without headers."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name=test_provider_name,
provider_api_key=test_provider_api_key,
)
client = SupermemoryOpenAI(test_api_key, config)
assert client is not None
def test_handle_different_api_keys(self):
"""Test handling different API keys."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name="openai",
provider_api_key="different-provider-key",
)
client = SupermemoryOpenAI("different-sm-key", config)
assert client is not None
class TestDisabledEndpoints:
"""Test that non-chat endpoints are disabled."""
def test_disabled_endpoints_throw_errors(
self, test_api_key: str, test_provider_api_key: str
):
"""Test that all disabled endpoints throw appropriate errors."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name="openai",
provider_api_key=test_provider_api_key,
)
client = SupermemoryOpenAI(test_api_key, config)
# Test that all disabled endpoints throw appropriate errors
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.embeddings
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.fine_tuning
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.images
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.audio
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.models
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.moderations
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.files
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.batches
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.uploads
with pytest.raises(
RuntimeError, match="Supermemory only supports chat completions"
):
_ = client.beta
def test_chat_completions_still_work(
self, test_api_key: str, test_provider_api_key: str
):
"""Test that chat completions still work after disabling other endpoints."""
config = SupermemoryInfiniteChatConfigWithProviderName(
provider_name="openai",
provider_api_key=test_provider_api_key,
)
client = SupermemoryOpenAI(test_api_key, config)
# Chat completions should still be accessible
assert client.chat is not None
assert client.chat.completions is not None
assert callable(client.create_chat_completion)
assert callable(client.chat_completion)
|