Quick Start Guide
Synthonnel is Open Source, licensed under Creative Commons Attribution 4.0 International.
What is "Synthonnel"?
Synthonnel is a portmanteau of synthetic personnel used to represent the concept of a personnel department to manage all the synthetic workers.
What is a "Parley"?
The Parley is the whole multidimensional conversation of prompts and responses from the various active LLMs selected to participate.
So add a few models, ask a couple questions, receive your responses.. baby you got a Parley going!
Download the exe!
- Download the release from GitHub.
- Unzip the file.
- Open the folder and double-click Synthonnel.exe
- Parley!
Install and Run Synthonnel from Source Code.
Prerequisites
- Ensure you have Git installed for downloading the source code.
- Make sure Python is installed on your system.
- It is recommended to use a virtual environment for managing project dependencies.
Step 1: Download Source from GitHub
- Open a terminal and navigate to the desired directory.
- Run the following command to clone the repository:
git clone https://github.com/twadeclark/Synthonnel.git
Step 2: Create and Activate Virtual Environment
- Create a virtual environment using the following command:
python -m venv venv
- Activate the virtual environment with the appropriate command based on your operating system:
- Windows:
.\venv\Scripts\activate
- macOS/Linux:
source venv/bin/activate
Step 3: Install Requirements
- Install the required packages by running:
pip install -r requirements.txt
Step 4: Start FastAPI Backend
- Start the FastAPI backend using the following command:
uvicorn main:app --reload
Step 5: Access the User Interface
- Open your web browser and visit the following URL:
http://127.0.0.1:8000/
Step 6: Parley!
Now you should be able to see and interact with Synthonnel. Enjoy!