chore: add package.json with project metadata and dependencies

This commit is contained in:
retoor 2024-11-27 20:26:27 +00:00
parent efa285f1a1
commit c8e6eb2db7
3 changed files with 45 additions and 1 deletions

13
make
View File

@ -3,8 +3,18 @@ import pathlib
import os import os
import sys import sys
args = sys.argv[1:]
args_string = " ".join(args)
def install():
os.system("./.venv/bin/python -m pip install -e .")
if not pathlib.Path(".venv").exists(): if not pathlib.Path(".venv").exists():
os.system("python3 -m venv .venv") os.system("python3 -m venv .venv")
install()
if "install" in args:
install()
if "build" in sys.argv: if "build" in sys.argv:
os.system("./.venv/bin/python -m pip install build") os.system("./.venv/bin/python -m pip install build")
@ -12,5 +22,6 @@ if "build" in sys.argv:
os.system("./.venv/bin/python -m pip install black") os.system("./.venv/bin/python -m pip install black")
os.system("./.venv/bin/python -m black .") os.system("./.venv/bin/python -m black .")
if "run" in sys.argv:
os.system("./.venv/bin/yura " + args_string)

View File

@ -8,3 +8,35 @@ License: MIT
Requires-Python: >=3.7 Requires-Python: >=3.7
Description-Content-Type: text/markdown Description-Content-Type: text/markdown
Requires-Dist: websockets Requires-Dist: websockets
# 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
```bash
pip install -e .
```
## Build
```bash
make build
```
## Command line usage
```bash
yura ws://[host]:[port]/[path]/
```
## Python
```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())
```

View File

@ -1,3 +1,4 @@
README.md
pyproject.toml pyproject.toml
setup.cfg setup.cfg
src/yura.egg-info/PKG-INFO src/yura.egg-info/PKG-INFO