Metadata-Version: 2.4
Name: deus-ex-machina
Version: 0.0.3
Summary: Deus ex Machina ...
Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
Project-URL: Homepage, https://github.com/fabula-ex-machina/deus-ex-machina
Keywords: deus-ex-machina
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

# Deus-ex-Machina
The Deus emerging from the Machine.

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

Or, with a local pip installation:
```bash
pip install deus-ex-machina
```
Set the environment variables:
```bash
export PROVIDER_API_KEY="sk-proj-..."
export GITHUB_TOKEN="ghp_..."
```
Then:
```bash
deus-ex-machina -a multilogue.txt
```
Or:
```bash
deus-ex-machina multilogue.txt > response.txt
```
Or:
```bash
deus-ex-machina -a multilogue.txt > tmp && echo tmp > multilogue.txt
```

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