🏠 Homepage · 👾 Explore Workflows · 📚 Docs · 🤖 API · 🛟 Discord · 💃🏾 Start Building
Gooey.AI is the low-code orchestration platform with discoverable workflows & unified billing to all of GenAI universe.
Gooey.AI is a low-code AI recipe platform and Gooey Server is our core repo.
It allows users to discover, customize, and deploy AI "recipes" using the best of private and open-source AI,
all using a single API with a single auth token.
Recipes are workflows that incorporate various models to accomplish a task; they are designed to be highly customizable and shareable.
For most developers, we DO NOT recommend running or forking Gooey Server; use our APIs or client SDK instead.
The repo is intended only for developers who want to run and deploy their own server cluster or run Gooey locally for development purposes.
Specifically, this repo may be for you if:
- You want to create a new recipe (instead of changing the parameters on an existing one)
- You want to add an AI model that we currently don’t support.
- You are an enterprise with specific requirements regarding data practices, such as using specific cloud providers.
- You want to add some other functionality that we don’t support.
- Create a google cloud project
- Create a firebase project (using the same google cloud project)
- Enable the following services:
- Go to IAM, Create a service account with following roles:
- Cloud Datastore User
- Cloud Speech Administrator
- Cloud Translation API Admin
- Firebase Authentication Admin
- Storage Admin
- Create and Download a JSON Key for this service account and save it to the project root as
serviceAccountKey.json
. - Add your project & bucket name to
.env
- Install pyenv & install the same python version as in our Dockerfile
- Install poetry
- Clone the github repo to
gooey-server
(and make sure that's the folder name) - Create & activate a virtualenv (e.g.
poetry shell
) - Run
poetry install --with dev
- Install redis, rabbitmq, and postgresql (e.g.
brew install redis rabbitmq postgresql@15
) - Enable background services for
redis
,rabbitmq
, andpostgresql
(e.g. withbrew services start redis
and similar forrabbitmq
andpostgresql
) - Use
sqlcreate
helper to create a user and database for gooey:./manage.py sqlcreate | psql postgres
- make sure you are able to access the database with
psql -W -U gooey gooey
(and when prompted for password, enteringgooey
)
- Create an
.env
file from.env.example
(Read 12factor.net/config) - Run
./manage.py migrate
- Install the zbar library (
brew install zbar
) - (optional) Install imagemagick - Needed for HEIC image support - https://docs.wand-py.org/en/0.5.7/guide/install.html
brew install freetype imagemagick
export MAGICK_HOME=/opt/homebrew
- Install pyenv & install the same python version as in our Dockerfile (currently Python 3.10)
curl https://pyenv.run | bash
- Install poetry
- This is likely available in your distro's package repos.
- Clone this repository:
- Create and activate a virtualenv using
poetry shell
- Install dependencies using
poetry install --with dev
- Note: you may have to remove
package-mode=false
on line 7 ofpyproject.toml
- Note: you may have to remove
- Install redis, rabbitmq-server, and postgresql 15 using your distro's package manager.
- Enable these services as background services using
sudo systemctl enable --now redis rabbitmq-server postgresql
- Configure Postgres to ensure that password authentication is enabled for the gooey user
- open the pg_hba.conf file in a text editor. On Linux, by default, it is usually located either at
/etc/postgresql/<version>/main/
or/var/lib/pgsql/<version>/data/
- add/edit the file so that there are lines at the bottom that looks like this:
local all gooey md5 host all gooey md5
- restart postgresql using
sudo systemctl restart postgresql
- open the pg_hba.conf file in a text editor. On Linux, by default, it is usually located either at
- Use the manage.py script to set up the Postgres database:
- To create the user and database for gooey:
./manage.py sqlcreate | sudo -u postgres psql postgres
- Test your setup to ensure that
gooey-server
can access the database by runningpsql -W -U gooey gooey
and supplying "gooey" as the password
- To create the user and database for gooey:
- Create a .env file from
.env.example
- Install the zbar library using your distro's package manager.
Clone gooey-gui repo, in the same directory as gooey-server
and follow the setup steps.
ulimit -n unlimited # Increase the number of open files allowed
./scripts/run-tests.sh
# reset the database
./manage.py reset_db -c
# create the database
./manage.py sqlcreate | psql postgres
# run migrations
./manage.py migrate
# load the fixture (donwloaded by ./scripts/run-tests.sh)
./manage.py loaddata fixture.json
# create a superuser to access admin
./manage.py createsuperuser
Note: The gooey-server
project is not currently set up to be run without support from Gooey. This software requires access to a Google Cloud instance as well as business data loaded in the database. If you are interested in running this software totally independently, reach out to [email protected] to communicate with our enterprise team.
The processes that it starts are defined in Procfile
.
Currently they are these:
Service | Port |
---|---|
API + GUI Server | 8080 |
Admin site | 8000 |
Usage dashboard | 8501 |
Celery | - |
UI | 3000 |
Vespa | 8085 |
You can start all required processes in one command with Honcho:
poetry run honcho start
This will spin up the API server at http://localhost:8080
. To view the autogenerated API documentation, navigate to http://localhost:8080/docs
This default startup assumes that Redis, RabbitMQ, and PostgreSQL are installed and running
as background services on ports 6379
, 5672
, and 5432
respectively.
The gooey-gui repo should be cloned at ../gooey-gui/
(adjacent to where thegooey-server
repo sits). You can open the Procfile and comment this out if you don't need
to run it.
Note: the Celery worker must be manually restarted on code changes. You can do this by stopping and starting Honcho.
You need to install OrbStack or Docker Desktop for this to work.
- Create a persistent volume for Vespa:
docker volume create vespa
- Run the container:
docker run \
--hostname vespa-container \
-p 8085:8080 -p 19071:19071 \
--volume vespa:/opt/vespa/var \
-it --rm --name vespa vespaengine/vespa
- Run the setup script
./manage.py runscript setup_vespa_db
Use black - https://pypi.org/project/black
Gitleaks will automatically run pre-commit (see pre-commit-config.yaml
for details) to prevent commits with secrets in the first place. To test this without committing, run pre-commit
from the terminal. To skip this check, use SKIP=gitleaks git commit -m "message"
to commit changes. Preferably, label false positives with the #gitleaks:allow
comment instead of skipping the check.
Gitleaks will also run in the CI pipeline as a GitHub action on push and pull request (can also be manually triggered in the actions tab on GitHub). To update the baseline of ignored secrets, run python ./scripts/create_gitleaks_baseline.py
from the venv and commit the changes to .gitleaksignore
.