Skip to content

Commit

Permalink
changing from assistatat.bible to faithbridge.multilingualai
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroaquintero committed Apr 30, 2024
1 parent e9a9043 commit eda5fe8
Show file tree
Hide file tree
Showing 9 changed files with 508 additions and 625 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_from_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
- name: Execute Commands on Remote Server
uses: appleboy/ssh-action@master
with:
host: dev.assistant.bible
host: dev.faithbridge.multilingualai
username: root
key: ${{ secrets.DEV_SIL_SSH_KEY }}
port: 22
script_stop: true
script: |
cd /home/assistant-bible/assistant.bible
cd /home/assistant-bible/faithbridge.multilingualai
git pull origin develop
su - assistant-bible
cd deployment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_from_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
port: 22
script_stop: true
script: |
cd /home/kavitha/assistant.bible
cd /home/kavitha/faithbridge.multilingualai
git pull origin main
cd deployment
docker compose --env-file .env up --force-recreate --build -d
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# assistant.bible
The codebase for assistant.bible: A Bible assistant.
# faithbridge.multilingualai
The codebase for faithbridge.multilingualai: A Bible assistant.

An intelligent search engine for domain specific data, that not only provides relevant links to resources but also synthesizes and summarizes results to provide a succinct and relevant answer through an interactive interface. It connects to LLMs and other AI models that are trained on the ground truth texts uploaded by the organization. This enables the software to provide highly accurate and relevant responses to user queries, based on the specific context of the organization's data. With the natural language chat interface, users can easily interact with the data and gain insights that would be difficult or time-consuming to obtain otherwise.

Expand All @@ -20,7 +20,7 @@ An intelligent search engine for domain specific data, that not only provides re

1. `git pull`
2. `cd deployment/`
1. `docker build -t assistant.bible .` --or using docker compose, you can run `docker compose --env-file .env up --build -d`
1. `docker build -t faithbridge.multilingualai .` --or using docker compose, you can run `docker compose --env-file .env up --build -d`
1.
```
docker run \
Expand All @@ -42,7 +42,7 @@ Environment variables and their default values,
* `POSTGRES_DB_USER=admin`
* `POSTGRES_DB_PASSWORD=secret`
* `POSTGRES_DB_QUERY_LIMIT=10`
* `DOMAIN=assistant.bible`
* `DOMAIN=faithbridge.multilingualai`
* `SUPABASE_URL`
* `SUPABASE_KEY`

Expand Down Expand Up @@ -101,7 +101,7 @@ python -m pytest

### Run linting

After activating the virtual environment, from project root folder (`assistant.bible/`), run
After activating the virtual environment, from project root folder (`faithbridge.multilingualai/`), run

```
pylint --rcfile=.pylintrc app/*.py app/tests/*.py
Expand All @@ -110,7 +110,7 @@ pylint --rcfile=.pylintrc app/*.py app/tests/*.py

### Contributing

In this repository, there are two long-lived branches: develop and main. There are automated actions that trigger deployment upon a "push" event for the following respective environments: https://dev.assistant.bible/ (hosted in the SIL DO account) and https://assistant.bible/ (hosted in the BCS DO account ).
In this repository, there are two long-lived branches: develop and main. There are automated actions that trigger deployment upon a "push" event for the following respective environments: https://dev.faithbridge.multilingualai/ (hosted in the SIL DO account) and https://faithbridge.multilingualai/ (hosted in the BCS DO account ).

To contribute, please follow these steps:

Expand Down
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
import routers

app = FastAPI(
title="Assistant.Bible APIs",
title="faithbridge.multilingualai APIs",
version="0.0.1-alpha.1",
description="The server application that provides APIs to interact \
with the Assistant.Bible Chatbot App",
with the faithbridge.multilingualai Chatbot App",
)

app.add_middleware(
Expand Down
Loading

0 comments on commit eda5fe8

Please sign in to comment.