Skip to main content

Api client for Grazie services

Project description

Grazie Api Gateway Client

Note, this package is deprecated, please refer to Grazie Api Gateway Client V2 first and check if the new client library supports functionality you need.

This package provides api client for JetBrains AI Platform llm functionality. Supported methods are chat, completion and embeddings.

Support for Grazie NLP services is planned in the future.

You can try models in the browser by going to https://try.ai.intellij.net/ or using the command-line interface.

poetry run -C libs/grazie_api_gateway_client python3 -m grazie.api.client -p openai-gpt-4 chat 'Who was the most famous pop star in the 90s?'

Usage

First you have to create an instance of client, please check class documentation to know more about parameters:

client = GrazieApiGatewayClient(
    grazie_agent=GrazieAgent(name="grazie-api-gateway-client-readme", version="dev"),
    url=GrazieApiGatewayUrls.STAGING,
    auth_type=AuthType.USER,
    grazie_jwt_token=***
)

Below are examples of usage by method:

Completion

client.complete(
    prompt=CompletionPrompt("Once upon a time there was a unicorn. "),
    profile=Profile.GRAZIE_GPT_NEO_TINY_TEXT,
)

Chat

client.chat(
    chat=ChatPrompt()
        .add_system("You are a helpful assistant.")
        .add_user("Who won the world series in 2020?"),
    profile=Profile.OPENAI_CHAT_GPT
)

Additionally you can pass id of your prompt or feature via prompt_id parameter. This identifier can later be used to check spending and calculate price of the feature per user or per call.

If you develop prompt which should answer in a structured format (i.e. JSON) it's better to pass temperature = 0. This makes generation deterministic (almost) and will provide parsable responses more reliably.

client.chat(
    chat=ChatPrompt()
        .add_system("You are a helpful assistant.")
        .add_user("Who won the world series in 2020?"),
    profile=Profile.OPENAI_CHAT_GPT,
    parameters={
        LLMParameters.Temperature: Parameters.FloatValue(0.0)
    }
)

Note: this parameter is currently only supported for OpenAI models.

Streaming

Outputs from chat models can be slow, to show progress to a user you can call chat_stream. The output would be a stream of text chunks.

response = ""
for chunk in client.chat_stream(
    chat=ChatPrompt()
        .add_user("Who won the world series in 2020?")
        .add_assistant("The Los Angeles Dodgers won the World Series in 2020.")
        .add_user("Where was it played? Write a small poem about it!"),
    profile=Profile.OPENAI_CHAT_GPT
):
    response += chunk.chunk

Embeddings

You can also use api to build float vector embeddings for sentences and texts.

client.embed(
    request=EmbeddingRequest(texts=["Sky is blue."], model="sentence-transformers/LaBSE", format_cbor=True)
)

Note: use cbor format for production applications. Pass format_cbor=False only to simplify development initially as the answer will be provided as json.

Additionally, you can use openai embeddings:

client.llm_embed(
    request=LLMEmbeddingRequest(
        texts=["Sky is blue."],
        profile=Profile.OPENAI_EMBEDDING_LARGE,
        dimensions=768
    )
)

Question Answering

You can run question answering against corpus of documents, like documentation or Youtrack issues.

response = ""
for chunk in grazie_api.answer_stream(
    query="How to write a coroutine?", 
    data_source="kotlin_1.9.23"
):
    if chunk.chunk.summaryChunk:
        response += chunk.chunk.summaryChunk

You can find the list of available data sources on https://try.ai.intellij.net/qa

Plain Retrieval

You can also run question answering against a corpus of documents, retrieving only raw documents:

client.retrieve(
    query="How to change a font size in Fleet?",
    data_source="fleet-1.36",
    profile=Profile.OPENAI_GPT_4_TURBO,
    size=10,
)

Grazie Api Gateway Client V2

The api client V2 for JetBrains AI Platform.

Implemented features

Basic usage

Client is available in two flavours APIGatewayClient and AsyncAPIGatewayClient.

ApiGatewayClient

import os

from grazie.api.client_v2 import APIGatewayClient, GatewayEndpoint

api_key = os.getenv("GRAZIE_JWT_TOKEN")
client = APIGatewayClient(
    api_key=api_key,
    endpoint=GatewayEndpoint.STAGING,
)

# Fetch all available tasks in TaskAPI
print(client.tasks.roster())

AsyncApiGatewayClient

import asyncio
import os

from grazie.api.client_v2 import AsyncAPIGatewayClient, GatewayEndpoint


async def main():
    api_key = os.getenv("GRAZIE_JWT_TOKEN")
    client = AsyncAPIGatewayClient(
        api_key=api_key,
        endpoint=GatewayEndpoint.STAGING,
    )

    # Fetch all available tasks in TaskAPI
    print(await client.tasks.roster())

asyncio.run(main())

TaskAPI

Execute predefined task (one line python code completion)

from grazie.api.client_v2 import APIGatewayClient
from grazie.api.client_v2.tasks.code import CodeOneLinePythonJetCompleteTask

client = APIGatewayClient()
client.tasks.execute(
    CodeOneLinePythonJetCompleteTask.default(
        prefix="import js",
        suffix="\n",
    )
)

Execute custom task

from grazie.api.client_v2 import APIGatewayClient
from grazie.api.client_v2.tasks.types import TaskCall


client = APIGatewayClient()
client.tasks.execute(
    TaskCall(
        id="code-generate:default",
        parameters=dict(
            instructions="Write me a simple python script",
            prefix="",
            suffix="",
            language="python",
        )
    )
)

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

grazie_api_gateway_client-0.1.14.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

grazie_api_gateway_client-0.1.14-py3-none-any.whl (28.5 kB view details)

Uploaded Python 3

File details

Details for the file grazie_api_gateway_client-0.1.14.tar.gz.

File metadata

  • Download URL: grazie_api_gateway_client-0.1.14.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.13 Darwin/23.2.0

File hashes

Hashes for grazie_api_gateway_client-0.1.14.tar.gz
Algorithm Hash digest
SHA256 a2cc873889660f330ec0bdca4cf8ed0a2981045ea2555a73a8c9c0089647222d
MD5 d6e5ed3a515f54bc86bb2bc2a9735250
BLAKE2b-256 dd10393e06416d88af6cf8094469b315fa0f37f6050635b6c706a3644cd12163

See more details on using hashes here.

File details

Details for the file grazie_api_gateway_client-0.1.14-py3-none-any.whl.

File metadata

File hashes

Hashes for grazie_api_gateway_client-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 8b07d47e6878590fabb21082380f7514971b72b96ab647739c59882fe6212cb5
MD5 a0490af28f6b21f75f19e4de40931507
BLAKE2b-256 532e96da071f3fe1fd407d4bfc7f9d9131a3e348f3c7fc79befe911bfca7b1d3

See more details on using hashes here.

Supported by

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