Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.1.1 #188

Merged
merged 1 commit into from
Nov 19, 2024
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 @@ frontend TypeScript client, `django-ai-assistant-client`.
The backend and the frontend are versioned together, that is, they have the same version number.
When you update the backend, you should also update the frontend to the same version.

## 0.1.1 <small>November 19, 2024</small> {id="0.1.1"}

- Fix an `AttributeError` raised in RAG AIAssistants when the `retriever` supports the `invoke` call
only with the query string as `input`.

## 0.1.0 <small>October 11, 2024</small> {id="0.1.0"}

- Refactor the code to use LangGraph instead of LangChain LCEL
Expand Down
2 changes: 1 addition & 1 deletion frontend/openapi_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "django_ai_assistant",
"version": "0.1.0",
"version": "0.1.1",
"description": ""
},
"paths": {
Expand Down
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"engines": {
"node": ">=20 <21"
},
"version": "0.1.0",
"version": "0.1.1",
"description": "TypeScript client to facilitate the integration with the Django AI Assistant backend.",
"homepage": "https://github.com/vintasoftware/django-ai-assistant",
"documentation": "https://vintasoftware.github.io/django-ai-assistant",
Expand Down Expand Up @@ -85,4 +85,4 @@
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1"
}
}
}
2 changes: 1 addition & 1 deletion frontend/src/client/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const OpenAPI: OpenAPIConfig = {
PASSWORD: undefined,
TOKEN: undefined,
USERNAME: undefined,
VERSION: '0.1.0',
VERSION: '0.1.1',
WITH_CREDENTIALS: false,
interceptors: {
request: new Interceptors(),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-ai-assistant"
version = "0.1.0"
version = "0.1.1"
description = "Django app to integrate with OpenAI Assistants API"
authors = ["Vinta Software <[email protected]>"]
license = "MIT"
Expand Down