Skip to main content

Minimalistic core for large language model applications

Project description

License Release Notes

AI MicroCore: A Minimalistic Foundation for AI Applications

This package is a collection of wrappers around Large Language Models and Semantic Search APIs allowing to communicate with these services convenient way, make it easily switchable and separate business logic from implementation details.

It defines interfaces for features typically used in AI applications, that allows you to keep your application as simple as possible and try various models & services without need to change your application code.

You even can switch between text completion and chat completion models only using configuration.

The basic example of usage is as follows:

from microcore import llm

while user_msg := input('Enter message: '):
    print('AI: ' + llm(user_msg))

Installation

pip install ai-microcore

Core Functions

llm(prompt: str, **kwargs) → str

Performs a request to a large language model (LLM)

from microcore import *

# Will print all requests and responses to console
use_logging()

# Basic usage
ai_response = llm('What is your model name?')

# You also may pass a list of strings as prompt
# - For chat completion models elements are treated as separate messages
# - For completion LLMs elements are treated as text lines
llm(['1+2', '='])
llm('1+2=', model='gpt-4')

# To specify a message role, you can use dictionary or classes
llm(dict(role='system', content='1+2='))
# equivalent
llm(SysMsg('1+2='))

# The returned value is a string
assert '7' == llm([
 SysMsg('You are a calculator'),
 UserMsg('1+2='),
 AssistantMsg('3'),
 UserMsg('3+4=')]
).strip()

# But it contains all fields of the LLM response in additional attributes
for i in llm('1+2=?', n=3, temperature=2).choices:
    print('RESPONSE:', i.message.content)

# To use response streaming you may specify the callback function:
llm('Hi there', callback=lambda x: print(x, end=''))

# Or multiple callbacks:
output = []
llm('Hi there', callbacks=[
    lambda x: print(x, end=''),
    lambda x: output.append(x),
])

tpl(file_path, **params) → str

Renders prompt template with params.

Full-featured Jinja2 templates are used by default.

Related configuration options:

from microcore import configure
configure(
    # 'tpl' folder in current working directory by default
    PROMPT_TEMPLATES_PATH = 'my_templates_folder'
)

*store(collection: str | None, **kwargs)

Stores data in embeddings database of your choice

@TODO

*search(collection: str | None, **kwargs)

Performs semantic / similarity search over embeddings database

@TODO

API providers and models support

LLM Microcore supports all models & API providers having OpenAI API.

List of API providers and models tested with LLM Microcore:

API Provider Models
OpenAI All GPT-4 and GTP-3.5-Turbo models
all text completion models (davinci, gpt-3.5-turbo-instruct, etc)
Microsoft Azure All OpenAI models
deepinfra.com deepinfra/airoboros-70b
jondurbin/airoboros-l2-70b-gpt4-1.4.1
meta-llama/Llama-2-70b-chat-hf
and other models having OpenAI API
Anyscale meta-llama/Llama-2-70b-chat-hf
meta-llama/Llama-2-13b-chat-hf
meta-llama/Llama-7b-chat-hf

Examples

code-review-tool example

Performs code review by LLM for changes in git .patch files in any programming languages.

Other examples

Python functions as AI tools

@TODO

AI Modules

This is experimental feature.

Tweaks the Python import system to provide automatic setup of MicroCore environment based on metadata in module docstrings.

Usage:

import microcore.ai_modules

Features:

  • Automatically registers template folders of AI modules in Jinja2 environment

License

© 2023—∞ Vitalii Stepanenko

Licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ai_microcore-0.5.1.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

ai_microcore-0.5.1-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file ai_microcore-0.5.1.tar.gz.

File metadata

  • Download URL: ai_microcore-0.5.1.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for ai_microcore-0.5.1.tar.gz
Algorithm Hash digest
SHA256 918864a4ba954867d6578f051ca875deb066ebf6b1d3cca45d4b3a4f00fe7096
MD5 3d40743492e2377227af3638bcf5fe23
BLAKE2b-256 418c713c4bcb058746eaa206ef44cb2b8e6691a6a15484899b317fa33bca9903

See more details on using hashes here.

File details

Details for the file ai_microcore-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ai_microcore-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4ec50aa514cd2dec5e80c7f77992a970e28ebf84a25889d407581920d75d8548
MD5 2cbbc600596d2eb180d47ebd445c7e0b
BLAKE2b-256 17b6ec88d88ca39e32b4b0c97c48e8ebad5d7495cc32e0e9bc4b29cb55ecd68a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page