Giter Site home page Giter Site logo

daniele-roncaglioni / aistrings Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 24 KB

An API to manipulate strings semantically.

License: MIT License

Python 100.00%
ai llm string-manipulation strings semantic-string-manipulation semantic-text string-api-ai-extension

aistrings's Introduction

AI Strings

AiStrings uses language models to build a string API that is aware of semantics. The built in string APIs operate on syntax or morphology. For example matching two strings with a regex or a fuzzy string matching algorithm will never match 2 strings that essentially mean the same but look completely different.

AiStrings provides semantics aware string APIs with a familiar interface.

pip install aistrings

Make sure to set OPENAI_API_KEY in your .env file or directly in your environment.

from dotenv import load_dotenv
from aistrings import AiStrings

load_dotenv()

astr = AiStrings(provider_name="openai", model_name="gpt-3.5-turbo-0125")

targets = [
    "The cat sleeps too much",
    "The dog jumps over the fence",
    "The cat jumps over the fence",
    "I am so happy"
]
query = "The cat is very agile!"

response, index = astr.find(query, targets)
print(f"Index: {index}, Target: \"{response}\"")
Index: 2, Target: "The cat jumps over the fence"

Keep track of the costs with:

astr.log_history()
# or
print("Total Cost: ", astr.cumulative_cost)
History
----------------------
  Action: find
  Input: The cat is very agile!
  Output: The cat jumps over the fence
  Cost: 4.35e-05
  Time: 2024-05-14 14:50:25.698692

Total Cost: 4.35e-05
----------------------
# or
Total Cost: 4.35e-05

Currently available operations:

  • astr.find
  • astr.split
  • astr.replace
  • astr.substr
  • astr.match
  • astr.summarize

coming soon:

  • astr.translate
  • astr.answer
  • astr.is_factual
  • astr.make_verbose
  • astr.elaborate
  • astr.correct_grammar
  • astr.detect_lang
  • astr.detect_sentiment

More Examples

For all examples first run

from dotenv import load_dotenv
from aistrings import AiStrings
load_dotenv()
astr = AiStrings(provider_name="openai", model_name="gpt-4-0125-preview")

Replace

text = "I have never seen Saturn through a telescope, but I would really love to see it once."
criterion = "Replace every single verb in the text with the word cat."
response = astr.replace(text, criterion)
print(response)
I cat never cat Saturn through a telescope, but I cat really cat to cat it once.

Split

text = "I have never seen Saturn through a telescope, but I would really love to see it once."
criterion = "Split the text using names of planets of the solar system as separators."
response = astr.split(text, criterion)
print(response)
['I have never seen ', ' through a telescope, but I would really love to see it once.']

Join

text_list = [
    "The cat sleeps too much during the day, so it wakes up in the night and wants to play.",
    "When the cat wakes up in the night and wants to play it usually starts walking across my pillow.",
]
criterion = "Join the texts and remove duplicate information and use as few words as possible."
response = astr.join(text_list, criterion)
print(response)
The cat sleeps too much during the day, so it wakes up in the night and wants to play, usually starting by walking across my pillow.

Summarize

response = astr.summarize(
    "Mars is the fourth planet from the Sun. The surface of Mars is orange-red because it is covered in iron(III) oxide dust, giving it the nickname 'the Red Planet'.[21][22]"
    " Mars is among the brightest objects in Earth's sky, and its high-contrast albedo features have made it a common subject for telescope viewing. "
    "It is classified as a terrestrial planet and is the second smallest of the Solar System's planets with a diameter of 6,779 km (4,212 mi). "
    "In terms of orbital motion, a Martian solar day (sol) is equal to 24.5 hours, and a Martian solar year is equal to 1.88 Earth years (687 Earth days). "
    "Mars has two natural satellites that are small and irregular in shape: Phobos and Deimos. "
)
print(response)

Output:

Mars is the fourth planet from the Sun, known as the Red Planet due to its orange-red surface covered in iron(III) oxide dust. 
It is a terrestrial planet with a diameter of 6,779 km and has a solar day of 24.5 hours and a solar year of 1.88 Earth years. 
Mars has two small, irregular-shaped natural satellites: Phobos and Deimos.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.