Skip to main content

Next-gen Sync & Async AI agents with 100+ functionalities

Project description

Cerina Package

Overview

Cerina is a package that provides functionalities for different llm completions, Advanced AI Agents and Agentic search at free of cost. Explore more below and give a star.

Installation

To install the package, run:

pip install -U cerina

Basic Chat Integration

Use our llm's into your applications at free of cost

  • Synchronous
from cerina import Completion

completion = Completion()
prompt = "What are the benefits of using AI in education?"
response = await completion.create(prompt)
print("Response from API:", response)
  • Asynchronous Example
import asyncio
from cerina import Completion

completion = Completion()
async def main():
    query = "which is the most advanced version of gpt?"
    response = await completion.create_async(query)
    print(response)

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

Integrate Search Functions with GPT

import asyncio
from cerina import IntegratedSearchGPT

async def main():
    integrated_search_gpt = IntegratedSearchGPT()
    query = "what is the dollar price now in inr?"
    response = await integrated_search_gpt.generate_with_search(query)
    print("Response from API:", response)

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

Search Text

from cerina import print_search_results, search_text, search_images

def main():
    query_text = "Hetc"

    print("Text Search Results:")
    print_search_results(query_text, search_text)

if __name__ == "__main__":
    main()

Search Image

from cerina import print_search_results, search_text, search_images

def main():
    query_image = "cats"


    print("Image Search Results:")
    print_search_results(query_image, search_images)

if __name__ == "__main__":
    main()

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

cerina-0.2.6.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

cerina-0.2.6-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file cerina-0.2.6.tar.gz.

File metadata

  • Download URL: cerina-0.2.6.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for cerina-0.2.6.tar.gz
Algorithm Hash digest
SHA256 1540cb4b9dc3d2e841a0c3bc3843d742598f95a2163f3c3a52738f33e6523145
MD5 37e12e11adb23bfd736a58e77e2cf19f
BLAKE2b-256 e998795c21ae38b185c1fac64253826b848719931c37957ebe1dd741e8e1ee0d

See more details on using hashes here.

File details

Details for the file cerina-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: cerina-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for cerina-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 6791a459779dc7ccfb691f624fbd81a161ac7246d3de8526518994718fa1a741
MD5 3025497bfabff86ce7ebb1ec283176bb
BLAKE2b-256 6501e5def7f8b65c7f7145f5870bc402af55601116c423e7cd935e049f3955e3

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