Metadata-Version: 2.1
Name: OmniBridge
Version: 0.1.11
Summary: Bridging AI models
Home-page: https://github.com/tmpOrgName/OmniBridge
Author: OmniSpective
Author-email: eliran9692@gmail.com
License: Apache License 2.0
Description-Content-Type: text/markdown
License-File: LICENSE

# Install

requirerments:
* Python 3.11

steps:
1. git clone https://github.com/tmpOrgName/tmp.git
2. pip install pipenv
3. pipenv install (in the root folder)
4. pipenv shell

# Run linter locally

inside pipenv shell, execute `ruff check ./`

# Usage

Available in CLI with the following arguments:

* -m / --model
* -p / --prompt

single model example:
`python main.py -m chatgpt -p hello`

multi model example:
`python main.py -m chatgpt -p hello -m dalle -p goodbye`

Note that the order of specification matters, meaning that in the above example, chatgpt will get the prompt `hello` and dalle will get the prompt `goodbye`
