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

[March 11, 2024] Update Changelog and packages #1426

Merged
merged 1 commit into from
Mar 11, 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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## (2024-03-11) Python Version 1.1.31, NPM Version 1.1.14

Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1426

### Features

- **python-sdk:** Added OpenAIVisionParser to core model parsers, allowing integrations with OpenAI chat/vision models and adding `gpt-4-vision-preview` as a core model parser (https://github.com/lastmile-ai/aiconfig/pull/1416, https://github.com/lastmile-ai/aiconfig/pull/1417)
- **editor:** Added model schema and prompt input formatting for GPT-4 vision (https://github.com/lastmile-ai/aiconfig/pull/1397)
- **extension:** Created extension for Groq inference (https://github.com/lastmile-ai/aiconfig/pull/1402)

### Bug Fixes / Tasks

- **python-sdk:** Unpinned `openai` dependency and updated to 1.13.3 (https://github.com/lastmile-ai/aiconfig/pull/1415)
- **vscode:** Removed check for `.env` file path needing to be a parent of user’s VS Code workspace, allowing users to specify an `.env` file that they can define anywhere (https://github.com/lastmile-ai/aiconfig/pull/1398)
Documentation
- [new] Created README and cookbook to show how to use the Groq inference extension (https://github.com/lastmile-ai/aiconfig/pull/1405, https://github.com/lastmile-ai/aiconfig/pull/1402)
- [updated] Removed warning text from Gradio Notebooks docs saying that Gradio SDK needs to be `<= v4.16.0` because that issue is now resolved and we can now use the latest Gradio SDK versions (https://github.com/lastmile-ai/aiconfig/pull/1421)

## (2024-03-05) Python Version 1.1.29, NPM Version 1.1.13

Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1401
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "python-aiconfig"
version = "1.1.30"
version = "1.1.31"
authors = [
{ name="LastMile AI" },
{ name="Sarmad Qadri", email="[email protected]" },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"files": {
"main.js": "/static/js/main.5ddb8dcc.js",
"main.js": "/static/js/main.7c035924.js",
"index.html": "/index.html",
"main.5ddb8dcc.js.map": "/static/js/main.5ddb8dcc.js.map"
"main.7c035924.js.map": "/static/js/main.7c035924.js.map"
},
"entrypoints": [
"static/js/main.5ddb8dcc.js"
"static/js/main.7c035924.js"
]
}
2 changes: 1 addition & 1 deletion python/src/aiconfig/editor/server/static/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>AIConfig Editor</title><script defer="defer" src="/static/js/main.5ddb8dcc.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>AIConfig Editor</title><script defer="defer" src="/static/js/main.7c035924.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

This file was deleted.

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aiconfig",
"version": "1.1.13",
"version": "1.1.14",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fwiw, I don't think we need to keep bumping this each week when there are no changes

"description": "Library to help manage AI prompts, models and parameters using the .aiconfig file format.",
"repository": {
"type": "git",
Expand Down
Loading