Metadata-Version: 2.3
Name: managing-machine
Version: 0.0.1
Summary: A Machine that manages machines.
Keywords: managing-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/managing-machine/managing-machine
Provides-Extra: all
Provides-Extra: anthropic
Provides-Extra: gemini
Description-Content-Type: text/markdown

# Managing Machine
A Machine that manages machines.

In order to launch it with OpenAI as LLM provider:
```bash
  echo "Theodotos-Alexandreus: What other machines should participate in this discussion, Machine?" \
    | uvx managing-machine \
        --provider-api-key=sk-proj-... \
        --github-token=ghp_... 
```
Or with Anthropic:
```bash
  echo "Theodotos-Alexandreus: What other machines should participate in this discussion, Machine?" \
    | uvx --with "managing-machine[anthropic]" managing-machine \
        --provider-api-key=sk-ant-... \
        --github-token=ghp_... 
```
Or with Gemini:
```bash
  echo "Theodotos-Alexandreus: What other machines should participate in this discussion, Machine?" \
    | uvx --with "managing-machine[gemini]" managing-machine \
        --provider-api-key=AIzaSy... \
        --github-token=ghp_... 
```
Or:
```bash
  pip install managing-machine
```
Then:
```Python
  # Python
  import managing_machine
```
