Metadata-Version: 2.4
Name: judging-machine
Version: 0.0.2
Summary: Judging-Machine passes judgements.
Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
Project-URL: Homepage, https://github.com/judging-machine/judging-machine
Keywords: judging-machine
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml==6.0.3
Dynamic: license-file

# Judging-Machine
A Machine that thinks.

In order to launch it from the command line or as a Python subprocess:
```bash
echo "Theodotos-Alexandreus: Are language models seeking the Truth, machine?" \
  | uvx judging-machine \
    --provider-api-key=sk-proj-... \
    --github-token=ghp_... 
```

Or, with a local pip installation:
```bash
pip install judging-machine
```
Set the environment variables:
```bash
export PROVIDER_API_KEY="sk-proj-..."
export GITHUB_TOKEN="ghp_..."
```
Then:
```bash
judging-machine multilogue.txt
```
Or:
```bash
judging-machine multilogue.txt new_turn.txt
```
Or:
```bash
cat multilogue.txt | judging-machine
```
Or:
```bash
cat multilogue.txt | judging-machine > tmp && mv tmp multilogue.txt
```
Or: 
```bash
(cat multilogue.txt; echo:"Theodotos: What do you think, Judging-Machine?") \
  | judging-machine
```
Or:
```bash
cat multilogue.txt new_turn.txt | judging-machine
```
Or:
```bash
cat multilogue.txt new_turn.txt | judging-machine >  tmp && mv tmp multilogue.txt
```
Or, if you have installed other machines:
```bash
cat multilogue.md | judging-machine \
  | summarizing-machine | judging-machine > summary_judgment.md
```

Or use it in your Python code:
```Python
# Python
import judging_machine
```
