Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2025-12-17

## Fixed
- When using responses api in Azure the parameter sent to the get responses was messages instead of input. Corrected.

## [1.1.0] - 2025-12-03

## Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bigdata-research-tools"
version = "1.1.0"
version = "1.1.1"
description = "Bigdata.com API High-Efficiency Tools at Scale"
readme = "README.md"
authors = [{ name = "Bigdata.com", email = "support@ravenpack.com" }]
Expand Down
4 changes: 2 additions & 2 deletions src/bigdata_research_tools/llm/azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def get_response(self, chat_history: list[dict[str, str]], **kwargs) -> st
return chat_completion.choices[0].message.content
elif self.api_selection == "responses":
response = await self._client.responses.create(
messages=chat_history, model=self.model, **kwargs
input=chat_history, model=self.model, **kwargs
) # ty: ignore

return response.output[0].content[0].text
Expand Down Expand Up @@ -234,7 +234,7 @@ def get_response(self, chat_history: list[dict[str, str]], **kwargs) -> str:
return chat_completion.choices[0].message.content
elif self.api_selection == "responses":
response = self._client.responses.create(
messages=chat_history, model=self.model, **kwargs
input=chat_history, model=self.model, **kwargs
) # ty: ignore

return response.output[0].content[0].text
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.