Skip to content

Releases: oracle/python-select-ai

v1.3.0

14 Mar 05:08
dabcaa4

Choose a tag to compare

This release includes the following updates:

  • Better concurrency support using 2 new APIs - select_ai.create_pool() and select_ai.create_pool_async(). This creates a shared connection pool for optimal resource sharing

  • Support to fetch the UTC timestamp of the next scheduled refresh of Vector Index using vector_index.get_next_refresh_timestamp()

  • Vector Index create() API exposes wait_for_completion argument same as the PL/SQL API

  • Bug fix in Slack notification agent tool. The channel name should be passed using channel instead of slack_channel

  • Bug fix in Email notification agent tool. Missing subject in the API signature

  • Support instruction parameter in all tool creation APIs to give a precise set of instructions

  • Added more NL2SQL APIs in Session object. Also, select_ai.Session uses the same cursor for the duration of the session. This is logically required to give AI agent feedback on mapped SQL in the same session

  • Custom errors to detect empty attributes corresponding to Select AI objects

v1.2.2

25 Jan 06:56
aceba55

Choose a tag to compare

This is a maintenance release with the following bug fixes and updates:

v1.2.1

18 Dec 07:29
0b6798f

Choose a tag to compare

This is a maintenance release with the following updates

  • Support for profile.translate()
response = profile.translate(
    text="Thank you", source_language="en", target_language="de"
)
  • Bug fix during profile.list() which was failing for dummy profiles
  • Multiple bug fixes for profile.add_positive_feedback(), profile.add_negative_feedback() and profile.delete_feedback()
  • Enhanced testing coverage for overall stability

v1.2.0

14 Nov 01:41
aa3cc84

Choose a tag to compare

This release includes the following updates and enhancements:

v1.1.0

22 Sep 16:35
27846fc

Choose a tag to compare

This release includes the following updates:

  • Fixes #6
  • Fixed bugs for vector_index get/set attributes
  • Handle "no data for prompt" during profile.run_sql to return an empty dataframe
  • Handle missing profile when you list vector indexes using vector_index.list()
  • Make enable / disable vector index operations idempotent
  • Added new samples
  • Verified tests for both 19c and 23ai

v1.0.0

04 Sep 16:38
fe8a14f

Choose a tag to compare

Select AI for Python v1.0.0

  • Create and manage Select AI’s AI profile objects
  • Text-to-SQL : Query your database using natural language, whether to generate a SQL query, run or explain that query, or get a narrated response to the results of that query.
  • Chat: Use your LLM directly for content generation based on your user prompt—for example, generating custom emails, answering questions, and sentiment analysis—just to name a few use cases.
  • Retrieval-Augmented Generation (RAG): Enable LLMs to generate more relevant responses by augmenting your prompt with knowledge from your provided documents
  • Automated vector index creation and maintenance: Quickly and easily create a vector index to be used with RAG using data from cloud storage and other sources.
  • Results integrated in Python objects: Receive AI-generated results directly into Python data structures, facilitating analysis and integration.
  • Chatbot with conversation memory: Create and manage named conversations based on your interactions with the LLM.
  • Synthetic data generation: Generate synthetic data for a single table or a set of tables with referential integrity constraints.
  • Synchronous and asynchronous invocation: Build applications using Python with either synchronous or the more flexible asynchronous programming style using standalone Python clients. With asynchronous support, the API integrates easily with web frameworks like FastAPI or Flask, enabling real-time AI-driven applications.