Skip to content

Commit e88ddf7

Browse files
authored
Merge pull request #198 from vintasoftware/release/0.1.2
Release 0.1.2
2 parents f760597 + bddf90b commit e88ddf7

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ frontend TypeScript client, `django-ai-assistant-client`.
77
The backend and the frontend are versioned together, that is, they have the same version number.
88
When you update the backend, you should also update the frontend to the same version.
99

10+
## 0.1.2 <small>April 11, 2025</small> {id="0.1.2"}
11+
12+
- Improve support for models that do not accept the `temperature` parameter in the `AIAssistant` class.
13+
1014
## 0.1.1 <small>November 19, 2024</small> {id="0.1.1"}
1115

1216
- Fix an `AttributeError` raised in RAG AIAssistants when the `retriever` supports the `invoke` call

frontend/openapi_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.1.0",
33
"info": {
44
"title": "django_ai_assistant",
5-
"version": "0.1.1",
5+
"version": "0.1.2",
66
"description": ""
77
},
88
"paths": {

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"engines": {
2121
"node": ">=20 <21"
2222
},
23-
"version": "0.1.1",
23+
"version": "0.1.2",
2424
"description": "TypeScript client to facilitate the integration with the Django AI Assistant backend.",
2525
"homepage": "https://github.com/vintasoftware/django-ai-assistant",
2626
"documentation": "https://vintasoftware.github.io/django-ai-assistant",

frontend/src/client/core/OpenAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const OpenAPI: OpenAPIConfig = {
4848
PASSWORD: undefined,
4949
TOKEN: undefined,
5050
USERNAME: undefined,
51-
VERSION: '0.1.1',
51+
VERSION: '0.1.2',
5252
WITH_CREDENTIALS: false,
5353
interceptors: {
5454
request: new Interceptors(),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-ai-assistant"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Django app to integrate with OpenAI Assistants API"
55
authors = ["Vinta Software <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)