Metadata-Version: 2.1
Name: xorius
Version: 0.0.3
Summary: A LLM-based agent.
Author-email: Linusp <linusp1024@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/monsternlp/xorius
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: openai >=1.0.0
Requires-Dist: langchain >=0.1.12
Requires-Dist: anthropic >=0.21.1
Requires-Dist: google-generativeai >=0.4.0
Requires-Dist: groq >=0.4.0
Requires-Dist: pydantic
Requires-Dist: click
Requires-Dist: rich
Requires-Dist: tiktoken
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

xorius
======

A LLM-based agent

## Installation

```shell
pip install xorius
```

## Usage

```
Usage: xorius-cli [OPTIONS]

Options:
  --api-key TEXT        [required]
  --temperature FLOAT   [default: 0.7]
  --max-tokens INTEGER  [default: 512]
  --proxy TEXT
  --help                Show this message and exit.
```

e.g.:

```shell
xorius-cli --api-key <YOUR OPENAI API KEY> \
           --temperature 0.7 \
           --max-tokens 512 \
           --proxy http://localhost:8080
```
