Skip to content

Releases: Kakusui/Elucidate

v0.0.3

14 Sep 23:25
b6b1920
Compare
Choose a tag to compare

Updated upstream to support OpenAI o1 models

Full Changelog: v0.0.2...v0.0.3

v0.0.2

29 Aug 04:43
7f64b41
Compare
Choose a tag to compare

Updated to use more recent EasyTL build

Full Changelog: v0.0.1...v0.0.2

v0.0.1

21 Jul 23:48
7e0555a
Compare
Choose a tag to compare

Initial Elucidate release

Full Changelog: v0.0.1-beta-3...v0.0.1


Quick Start

To get started with Elucidate, install the package via pip:

pip install elucidate

Then, you can evaluate text using by importing the global client.

For example, with OpenAI:

from easytl import Elucidate

## Set your API key
Elucidate.set_credentials("openai", "YOUR_API_KEY")

## You can also validate your API keys; evaluation functions will do this automatically
is_valid, e = Elucidate.test_credentials("openai")

evaluated_text = Elucidate.openai_evaluate("山村美紀の独白\nYamamura Miki's Speech", model="gpt-4o-mini", evaluation_instructions="Please suggest a revised English translation based on the original Japanese text. Do not change if the translation is already correct.")

print(evaluated_text) ## Output: "Yamamura Miki's Monologue"

if(__name__ == "__main__"):
    asyncio.run(main())

Installation

Python 3.10+

Elucidate can be installed using pip:

pip install elucidate

This will install Elucidate along with its dependencies and requirements.

These are the dependencies/requirements that will be installed:

setuptools>=61.0
wheel
setuptools_scm>=6.0
tomli
easytl==0.4.7

Features

Elucidate offers seamless integration with several APIs, allowing users to easily switch between services based on their needs. Key features include:

  • Support for multiple APIs including OpenAI, Gemini, and Anthropic.
  • Simple API key and credential management and validation.
  • Cost estimation tools to help manage usage based on text length, evaluation instructions for LLMs, and evaluation services.
  • Highly customizable evaluation options, with each API's original features and more.
  • Lots of optional arguments for additional functionality. Such as decorators, semaphores, and rate-limit delays.

API Usage

Evaluating Text

openai_evaluate, gemini_evaluate, and anthropic_evaluate are LLM functions.

Each method accepts various parameters to customize the evaluation process, such as language, text format, and API-specific features like formality level or temperature. However these vary wildly between services, so it is recommended to check the documentation for each service for more information.

All services offer asynchronous evaluation methods that return a future object for concurrent processing. These methods are suffixed with _async and can be awaited to retrieve the evaluated text.

Instead of receiving the evaluated text directly, you can also use the response_type parameter to get the raw response object, specify a json response where available, or both.

text - Default. Returns the evaluated text.

json - Returns the response as a JSON object. Not all services support this.

raw - Returns the raw response object from the API. This can be useful for accessing additional information or debugging.

raw_json - Returns the raw response object with the text but with the response also a json object. Again, not all services support this.

Generic Translation Methods

Elucidate has generic evaluation methods evaluate and evaluate_async that can be used to evaluation text with any of the supported services. These methods accept the text, service, and kwargs of the respective service as parameters.

Cost Calculation

The calculate_cost method provides an estimate of the cost associated with evaluating a given text with specified settings for each supported service.

num_tokens, cost, model = Elucidate.calculate_cost("This has a lot of tokens.", "openai", model="gpt-4", evaluation_instructions="Translate this text to Japanese.")

Credentials Management

Credentials can be set and validated using set_credentials and test_credentials methods to ensure they are active and correct before submitting evaluation requests.

If you don't provide an api key, the package will attempt to read it from the environment variables. The format for this is as follows:

# This is a dictionary mapping the service names to their respective environment variables.
environment_map = 
{
  ## Gemini evaluation service
  "gemini": "GEMINI_API_KEY",
  
  ## OpenAI evaluation service
  "openai": "OPENAI_API_KEY",
  
  ## Anthropic evaluation service
  "anthropic": "ANTHROPIC_API_KEY",
}

License

This project, Elucidate, is licensed under the GNU Lesser General Public License v2.1 (LGPLv2.1) - see the LICENSE file for complete details.

The LGPL is a permissive copyleft license that enables this software to be freely used, modified, and distributed. It is particularly designed for libraries, allowing them to be included in both open source and proprietary software. When using or modifying Elucidate, you can choose to release your work under the LGPLv2.1 to contribute back to the community or incorporate it into proprietary software as per the license's permissions.


Contribution

Contributions are welcome! I don't have a specific format for contributions, but please feel free to submit a pull request or open an issue if you have any suggestions or improvements.


v0.0.1-beta-3

21 Jul 05:10
5e5e192
Compare
Choose a tag to compare
v0.0.1-beta-3 Pre-release
Pre-release

Third beta, merely pending documentation.

Full Changelog: v0.0.1-beta-2...v0.0.1-beta-3

v0.0.1-beta-2

19 Jul 06:17
cc8c80e
Compare
Choose a tag to compare
v0.0.1-beta-2 Pre-release
Pre-release

Second Beta Release of Elucidate: Evaluation of Anthropic, Gemini, and OpenAI

Known Bugs:

  • The logging directory parametert is currently non-functional everywhere due to Elucidate's use of protocols, which conflicts with EasyTL's built-in handling methods. This issue can be resolved by monkey-patching a new definition.

Areas for Improvement:

  • Documentation: There is minimal documentation beyond code comments and docstrings, and these are sometimes inadequate.
  • README.md: The README.md file is outdated.
  • Package Size: The package is somewhat heavy; protocols contain more information than necessary (default values could be removed).
  • Docstring Format: Docstrings are not in the correct format.
  • LLM Translation Functions: These need to be monkey-patched with new definitions.

If you intend to use Elucidate at this stage, please refer to tests/passing.py and EasyTL, as Elucidate shares some syntax with EasyTL.

Full Changelog: v0.0.1-beta...v0.0.1-beta-2

v0.0.1-beta

13 Jul 23:29
9a4a26f
Compare
Choose a tag to compare
v0.0.1-beta Pre-release
Pre-release

Initial beta launch

Full Changelog: v0.0.1-alpha-3...v0.0.1-beta

v0.0.1-alpha-3

13 Jul 22:45
7e1b316
Compare
Choose a tag to compare
v0.0.1-alpha-3 Pre-release
Pre-release

Internal build for testing

Full Changelog: v0.0.1-alpha-2...v0.0.1-alpha-3

v0.0.1-alpha-2

05 Jul 06:52
b13372c
Compare
Choose a tag to compare
v0.0.1-alpha-2 Pre-release
Pre-release

This build is also non-functional, but is a lot more developed and in a proper package structure.

Full Changelog: v0.0.1-alpha...v0.0.1-alpha-2

v0.0.1-alpha

22 Jun 05:43
04801d2
Compare
Choose a tag to compare
v0.0.1-alpha Pre-release
Pre-release

Name reservation, this release is non-functional

Full Changelog: https://github.com/Kakusui/Elucidate/commits/v0.0.1-alpha