New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aiconfig

Package Overview
Dependencies
Maintainers
5
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiconfig - npm Package Versions

13

1.1.5

Diff

Changelog

Source

(2023-12-11) Python Version 1.1.5, NPM Version 1.0.8

Features

  • python-sdk: Evaluation harness for AIConfig. Supports text input/output evaluation with native AIConfig Interface (tutorial) as well as an integration with Promptfoo (tutorial). See README for details
  • python-sdk: Support for PaLM Text as a core model Parser
  • typescript-sdk: Support for PaLM Text as a core model parser (8902bef)

https://github.com/lastmile-ai/aiconfig/assets/141073967/918b4ed4-41d0-4543-a0e8-aadd257247ba

Bug Fixes

  • python-extension HuggingFace Transformers Extension: Fixed bug where we're not properly appending outputs for multiple return sequences (49da477)
  • python-extension HuggingFace Transformers Extension: Fixed a bug that defaulted model to GPT-2. (1c28f7c)

Extensions

  • python-extension: Extension for LLama-Guard using pytorch (86cf687)
rossdan
published 1.1.4 •

Changelog

Source

(2023-12-04) Python Version 1.1.4, NPM Version 1.0.7

Features

  • python-sdk: DALL-E Model Parser (4753f21)
  • python-sdk: Updated OpenAI Introspection Wrapper - Now more user-friendly with complete module mocking for easier import replacement, enhancing overall usability. (143c3dd)

Bug Fixes

  • sdk: Updated add_prompt to rename prompt name if a different name is passed in (a29d5f87)
  • typescript-sdk: Updated Metadata Field to be optional (cb5fdc5)

Better Engineering

  • python-tests: Higher fidelity Test script, performs a complete build for testing (04fc5a5)
  • tests: added a github action script testing for main(74e0c15)
  • python-sdk: Added linter to python-sdk

Documentation

  • readme: add readme and license within the python extension directory(450012c)
  • cookbooks Updated Cookbooks' compatibility with latest aiconfig releases

Extensions

  • python-extension: Extension for HuggingFace Text Generation with transformers (222bf6e)
  • python-extension: Extension for LLama 2.0
  • typescript-extension: Extension for LLama 2.0
saqadri
published 1.1.3 •

Changelog

Source

(2024-03-18) Python Version 1.1.32, NPM Version 1.1.15

Features

  • editor: Added UI for updating global model settings in AIConfig files (https://github.com/lastmile-ai/aiconfig/pull/1441)
  • vscode: Added commands to allow creating an empty AIConfig in addition to the example starter file (https://github.com/lastmile-ai/aiconfig/pull/1448)

Bug Fixes / Tasks

  • python-sdk: Removed test dependencies from the python-aiconfig package (https://github.com/lastmile-ai/aiconfig/pull/1463)
  • python-dev: Added Python auto-formatting check as a Github action to prevent unformatted files from merging into the repository (https://github.com/lastmile-ai/aiconfig/pull/1458)
  • typescript-dev: Specified jest to ignore dist files that get generated from running yarn so that automated tests do not incorrectly fail (https://github.com/lastmile-ai/aiconfig/pull/1466)

Documentation

  • [update] Added keywords and categories to the VS Code extension, making it easier to find (https://github.com/lastmile-ai/aiconfig/pull/1430)
  • [update] Removed erroneous await statement for loading AIConfig file in Gradio Notebook docs (https://github.com/lastmile-ai/aiconfig/pull/1435) → thanks @Anikait10 !
  • [update] Removed spaces between Github README badges to remove visible underscores (https://github.com/lastmile-ai/aiconfig/pull/1446) → thanks @jonathanagustin !
rossdan
published 1.1.2 •

Changelog

Source

(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

Features

  • vscode: Enabled find widget (CMD/CTRL + F) in AIConfig editor webviews (https://github.com/lastmile-ai/aiconfig/pull/1369)
  • editor: Added input model schema for Hugging Face Visual Question Answering tasks (https://github.com/lastmile-ai/aiconfig/pull/1396)
  • editor: Set the environment variables in an .env file that gets saved into the VS Code configuration settings and refreshed during the current session (https://github.com/lastmile-ai/aiconfig/pull/1390)

Bug Fixes / Tasks

  • vscode: Fixed issue where autosaving was causing outputs to disappear and prompt inputs to lose focus when typing (https://github.com/lastmile-ai/aiconfig/pull/1380)
  • vscode: Updated new/untitled AIConfig file flow to follow regular new/untitled file flow in VS Code, prompting for file name on first save (https://github.com/lastmile-ai/aiconfig/pull/1351)
  • vscode: Used untitled name instead of first line contents for untitled file tab name (https://github.com/lastmile-ai/aiconfig/pull/1354)
  • vscode: Removed surfacing ‘Error updating aiconfig server’ message when closing untitled AIConfig files (https://github.com/lastmile-ai/aiconfig/pull/1352)
  • editor: Fixed an issue where readonly rendering of prompt settings was causing the page rendering to fail (https://github.com/lastmile-ai/aiconfig/pull/1358)
  • editor: Fixed default cell styles when no mode or themeOverride is specified (https://github.com/lastmile-ai/aiconfig/pull/1388)
  • vscode: Reran extension server to re-read environment variables after they’re been updated (https://github.com/lastmile-ai/aiconfig/pull/1376)
ankushp94
published 1.1.1 •

Changelog

Source

(2024-03-18) Python Version 1.1.32, NPM Version 1.1.15

Features

  • editor: Added UI for updating global model settings in AIConfig files (https://github.com/lastmile-ai/aiconfig/pull/1441)
  • vscode: Added commands to allow creating an empty AIConfig in addition to the example starter file (https://github.com/lastmile-ai/aiconfig/pull/1448)

Bug Fixes / Tasks

  • python-sdk: Removed test dependencies from the python-aiconfig package (https://github.com/lastmile-ai/aiconfig/pull/1463)
  • python-dev: Added Python auto-formatting check as a Github action to prevent unformatted files from merging into the repository (https://github.com/lastmile-ai/aiconfig/pull/1458)
  • typescript-dev: Specified jest to ignore dist files that get generated from running yarn so that automated tests do not incorrectly fail (https://github.com/lastmile-ai/aiconfig/pull/1466)

Documentation

  • [update] Added keywords and categories to the VS Code extension, making it easier to find (https://github.com/lastmile-ai/aiconfig/pull/1430)
  • [update] Removed erroneous await statement for loading AIConfig file in Gradio Notebook docs (https://github.com/lastmile-ai/aiconfig/pull/1435) → thanks @Anikait10 !
  • [update] Removed spaces between Github README badges to remove visible underscores (https://github.com/lastmile-ai/aiconfig/pull/1446) → thanks @jonathanagustin !
rholinshead
published 1.1.0 •

ankushp94
published 1.0.8 •

Changelog

Source

(2023-12-11) Python Version 1.1.5, NPM Version 1.0.8

Features

  • python-sdk: Evaluation harness for AIConfig. Supports text input/output evaluation with native AIConfig Interface (tutorial) as well as an integration with Promptfoo (tutorial). See README for details
  • python-sdk: Support for PaLM Text as a core model Parser
  • typescript-sdk: Support for PaLM Text as a core model parser (8902bef)

https://github.com/lastmile-ai/aiconfig/assets/141073967/918b4ed4-41d0-4543-a0e8-aadd257247ba

Bug Fixes

  • python-extension HuggingFace Transformers Extension: Fixed bug where we're not properly appending outputs for multiple return sequences (49da477)
  • python-extension HuggingFace Transformers Extension: Fixed a bug that defaulted model to GPT-2. (1c28f7c)

Extensions

  • python-extension: Extension for LLama-Guard using pytorch (86cf687)
saqadri
published 1.0.7 •

Changelog

Source

(2023-12-04) Python Version 1.1.4, NPM Version 1.0.7

Features

  • python-sdk: DALL-E Model Parser (4753f21)
  • python-sdk: Updated OpenAI Introspection Wrapper - Now more user-friendly with complete module mocking for easier import replacement, enhancing overall usability. (143c3dd)

Bug Fixes

  • sdk: Updated add_prompt to rename prompt name if a different name is passed in (a29d5f87)
  • typescript-sdk: Updated Metadata Field to be optional (cb5fdc5)

Better Engineering

  • python-tests: Higher fidelity Test script, performs a complete build for testing (04fc5a5)
  • tests: added a github action script testing for main(74e0c15)
  • python-sdk: Added linter to python-sdk

Documentation

  • readme: add readme and license within the python extension directory(450012c)
  • cookbooks Updated Cookbooks' compatibility with latest aiconfig releases

Extensions

  • python-extension: Extension for HuggingFace Text Generation with transformers (222bf6e)
  • python-extension: Extension for LLama 2.0
  • typescript-extension: Extension for LLama 2.0
saqadri
published 1.0.6 •

saqadri
published 1.0.5 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc