Metadata-Version: 2.3
Name: dispatching-machine
Version: 0.0.1
Summary: A Machine that dispatches requests and messages.
Keywords: dispatching-machine
Author: Machina Ratiocinatrix, Alexander Fedotov
Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: opehaina>=0.0.5
Requires-Dist: pygithub>=2.6.1
Requires-Dist: pyyaml>=6.0.2
Requires-Dist: urllib3>=2.0.4
Requires-Dist: requests>=2.32.3
Requires-Dist: click>=8.3.0
Requires-Dist: castor-pollux>=0.1.4 ; extra == 'all'
Requires-Dist: electroid>=0.0.19 ; extra == 'all'
Requires-Dist: electroid>=0.0.19 ; extra == 'anthropic'
Requires-Dist: castor-pollux>=0.1.4 ; extra == 'gemini'
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/dispatching-machine/dispatching-machine
Provides-Extra: all
Provides-Extra: anthropic
Provides-Extra: gemini
Description-Content-Type: text/markdown

# Dispatching-Machine
A Machine that dispatches requests and messages.

In order to launch it with OpenAI as LLM provider:
```bash
  echo "Theodotos-Alexandreus: Hand this request over to Criticizing-Machine." \
    | uvx dispatching-machine \
        --provider-api-key=sk-proj-... \
        --github-token=ghp_... 
```
Or with Anthropic:
```bash
  echo "Theodotos-Alexandreus: Hand this request over to Criticizing-Machine." \
    | uvx --with "dispatching-machine[anthropic]" dispatching-machine \
        --provider-api-key=sk-ant-... \
        --github-token=ghp_... 
```
Or with Gemini:
```bash
  echo "Theodotos-Alexandreus: Hand this request over to Criticizing-Machine." \
    | uvx --with "dispatching-machine[gemini]" dispatching-machine \
        --provider-api-key=AIzaSy... \
        --github-token=ghp_... 
```
Or:
```bash
  pip install dispatching-machine
```
Then:
```Python
  # Python
  import dispatching_machine
```
