Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit b830d83

Browse files
authored
Release 1.0.18 (#572)
1 parent 03cc739 commit b830d83

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

‎CHANGELOG.rst‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Changelog
33

44
In this changelog focus on user facing highlights and stick to the format. This information will be used to motivate users to upgrade or after upgrading to inform them of features that might otherwise not be very discoverable.
55

6+
`1.0.18 <https://pypi.org/project/mentat/1.0.18/>`__
7+
--------------------------------------------------
8+
9+
- Bug fixes and dependency updates
10+
611
`1.0.17 <https://pypi.org/project/mentat/1.0.17/>`__
712
--------------------------------------------------
813

‎mentat/VERSION‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.17
1+
1.0.18

‎requirements.txt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ openai==1.13.3
99
pillow==10.1.0
1010
prompt-toolkit==3.0.39
1111
Pygments==2.15.1
12-
ragdaemon~=0.1.0
12+
ragdaemon~=0.2.0
1313
selenium==4.15.2
1414
sentry-sdk==1.34.0
1515
sounddevice==0.4.6
1616
soundfile==0.12.1
17-
spiceai~=0.1.0
17+
spiceai~=0.2.0
1818
termcolor==2.3.0
1919
textual==0.47.1
2020
textual-autocomplete==2.1.0b0

‎tests/conftest.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def mock_call_llm_api(mocker):
9898
completion_mock = mocker.patch.object(LlmApiHandler, "call_llm_api")
9999

100100
def wrap_unstreamed_string(value):
101-
return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], False), value, 1, 0, 0, True, 1, None)
101+
return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], False), value, 1, 0, 0, True, 1)
102102

103103
def wrap_streamed_strings(values):
104104
class MockStreamingSpiceResponse:
@@ -115,7 +115,7 @@ async def __anext__(self):
115115
return values[self.cur_value - 1]
116116

117117
def current_response(self):
118-
return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], True), "".join(values), 1, 0, 0, True, 1, None)
118+
return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], True), "".join(values), 1, 0, 0, True, 1)
119119

120120
mock_spice_response = MockStreamingSpiceResponse()
121121
return mock_spice_response

0 commit comments

Comments
 (0)