Metadata-Version: 2.2
Name: python_viu_api
Version: 0.3.9
Summary: gRPC client for VIU API
Home-page: https://github.com/VIU-one/python-viu-api
Author: Michael Weber
Author-email: info@searchviu.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: grpcio
Requires-Dist: betterproto
Requires-Dist: betterproto[compiler]
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# your_grpc_client

This package provides a gRPC client for ApiService using BetterProto.

## Installation
pip install your_grpc_client

## Usage Example
import asyncio
from generated.viuapi import ApiServiceStub, text

async def main():
    client = ApiServiceStub("your.api.endpoint:443")
    request = text(text="Your text here")  # Adjust based on method params
    response = await client.embed_n_v_embed_v2(request)
    print(response)

asyncio.run(main())

## Available Methods
- embed_n_v_embed_v2(text) -> EmbedNVEmbedV2Response
- embed_b_g_e_gemma2(text) -> EmbedBGEGemma2Response

---
Generated automatically from .proto files using GitHub Actions.
