-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathconversations_models_test.py
179 lines (148 loc) · 5.55 KB
/
conversations_models_test.py
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
"""Tests for the ConversationsModels class."""
from __future__ import annotations
import os
import sys
import pytest
import requests_mock
if sys.version_info >= (3, 11):
import typing
else:
import typing_extensions as typing
from tests.utils.object_assertions import (
assert_match_object,
assert_object_lists_match,
assert_to_contain_keys,
assert_to_contain_object,
)
from typesense.api_call import ApiCall
from typesense.conversations_models import ConversationsModels
from typesense.types.conversations_model import ConversationModelSchema
def test_init(fake_api_call: ApiCall) -> None:
"""Test that the ConversationsModels object is initialized correctly."""
conversations_models = ConversationsModels(fake_api_call)
assert_match_object(conversations_models.api_call, fake_api_call)
assert_object_lists_match(
conversations_models.api_call.node_manager.nodes,
fake_api_call.node_manager.nodes,
)
assert_match_object(
conversations_models.api_call.config.nearest_node,
fake_api_call.config.nearest_node,
)
assert not conversations_models.conversations_models
def test_get_missing_conversations_model(
fake_conversations_models: ConversationsModels,
) -> None:
"""Test that the ConversationsModels object can get a missing conversations_model."""
conversations_model = fake_conversations_models["conversation_model_id"]
assert_match_object(
conversations_model.api_call,
fake_conversations_models.api_call,
)
assert_object_lists_match(
conversations_model.api_call.node_manager.nodes,
fake_conversations_models.api_call.node_manager.nodes,
)
assert_match_object(
conversations_model.api_call.config.nearest_node,
fake_conversations_models.api_call.config.nearest_node,
)
assert (
conversations_model._endpoint_path # noqa: WPS437
== "/conversations/models/conversation_model_id"
)
def test_get_existing_conversations_model(
fake_conversations_models: ConversationsModels,
) -> None:
"""Test that the ConversationsModels object can get an existing conversations_model."""
conversations_model = fake_conversations_models["conversations_model_id"]
fetched_conversations_model = fake_conversations_models["conversations_model_id"]
assert len(fake_conversations_models.conversations_models) == 1
assert conversations_model is fetched_conversations_model
def test_retrieve(fake_conversations_models: ConversationsModels) -> None:
"""Test that the ConversationsModels object can retrieve conversations_models."""
json_response: typing.List[ConversationModelSchema] = [
{
"api_key": "abc",
"id": "1",
"max_bytes": 1000000,
"model_name": "openAI-gpt-3",
"system_prompt": "This is a system prompt",
},
]
with requests_mock.Mocker() as mock:
mock.get(
"http://nearest:8108/conversations/models",
json=json_response,
)
response = fake_conversations_models.retrieve()
assert len(response) == 1
assert response[0] == json_response[0]
assert response == json_response
def test_create(fake_conversations_models: ConversationsModels) -> None:
"""Test that the ConversationsModels object can create a conversations_model."""
json_response: ConversationModelSchema = {
"api_key": "abc",
"id": "1",
"max_bytes": 1000000,
"model_name": "openAI-gpt-3",
"system_prompt": "This is a system prompt",
}
with requests_mock.Mocker() as mock:
mock.post(
"http://nearest:8108/conversations/models",
json=json_response,
)
fake_conversations_models.create(
model={
"api_key": "abc",
"id": "1",
"max_bytes": 1000000,
"model_name": "openAI-gpt-3",
"system_prompt": "This is a system prompt",
},
)
assert mock.call_count == 1
assert mock.called is True
assert mock.last_request.method == "POST"
assert mock.last_request.url == "http://nearest:8108/conversations/models"
assert mock.last_request.json() == json_response
@pytest.mark.open_ai
def test_actual_create(
actual_conversations_models: ConversationsModels,
create_conversation_history_collection: None,
) -> None:
"""Test that it can create an conversations_model on Typesense Server."""
response = actual_conversations_models.create(
{
"api_key": os.environ["OPEN_AI_KEY"],
"history_collection": "conversation_store",
"max_bytes": 16384,
"model_name": "openai/gpt-3.5-turbo",
"system_prompt": "This is meant for testing purposes",
},
)
assert_to_contain_keys(
response,
["id", "api_key", "max_bytes", "model_name", "system_prompt"],
)
@pytest.mark.open_ai
def test_actual_retrieve(
actual_conversations_models: ConversationsModels,
delete_all: None,
delete_all_conversations_models: None,
create_conversations_model: str,
) -> None:
"""Test that it can retrieve an conversations_model from Typesense Server."""
response = actual_conversations_models.retrieve()
assert len(response) == 1
assert_to_contain_object(
response[0],
{
"id": create_conversations_model,
},
)
assert_to_contain_keys(
response[0],
["id", "api_key", "max_bytes", "model_name", "system_prompt"],
)