Skip to content

Commit 5b26c73

Browse files
authored
Merge pull request #188 from vintasoftware/release/0.1.1
Release 0.1.1
2 parents 2e5aff2 + d497163 commit 5b26c73

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.1 <small>November 19, 2024</small> {id="0.1.1"}
11+
12+
- Fix an `AttributeError` raised in RAG AIAssistants when the `retriever` supports the `invoke` call
13+
only with the query string as `input`.
14+
1015
## 0.1.0 <small>October 11, 2024</small> {id="0.1.0"}
1116

1217
- Refactor the code to use LangGraph instead of LangChain LCEL

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.0",
5+
"version": "0.1.1",
66
"description": ""
77
},
88
"paths": {

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"engines": {
2121
"node": ">=20 <21"
2222
},
23-
"version": "0.1.0",
23+
"version": "0.1.1",
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",
@@ -85,4 +85,4 @@
8585
"vite": "^5.3.2",
8686
"vite-plugin-dts": "^3.9.1"
8787
}
88-
}
88+
}

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.0',
51+
VERSION: '0.1.1',
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.0"
3+
version = "0.1.1"
44
description = "Django app to integrate with OpenAI Assistants API"
55
authors = ["Vinta Software <contact@vinta.com.br>"]
66
license = "MIT"

0 commit comments

Comments
 (0)