b9d20b4a3d3d14cf28eeb00e6fa00211cc408e01
- Register yura CLI entry point in setup.cfg pointing to yura.cli:run - Add new src/yura/cli.py module for command-line interface - Implement streaming chat method in AsyncClient with websocket connection handling - Fix ensure_connection method signature to include self parameter - Remove redundant done check from cli_client loop to avoid premature exit
Yura LLM Client for Katya server
Part of project with as target replacing the native ollama protocol. This protocol supports streaming and is usable trough https and it is possible to directly attach a web client to the backend.
Install
pip install -e .
Build
make build
Command line usage
yura ws://[host]:[port]/[path]/
Python
import asyncio
from yura.client import AsyncClient
async def communicate():
client = AsyncClient("ws://[host]:[port]/[path]/")
async for response in client.chat("Your prompt"):
print(response)
asyncio.run(communicate())
Languages
Python
96.9%
Makefile
3.1%