-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated serverless.yml and added build file for gai-backend
- Loading branch information
Showing
5 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
.gitignore | ||
__pycache__ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM python:3.8.5 | ||
|
||
ENV TINI_VERSION="v0.19.0" | ||
|
||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini | ||
RUN chmod +x /tini | ||
|
||
RUN pip install -U \ | ||
pip \ | ||
setuptools \ | ||
wheel | ||
|
||
WORKDIR /project | ||
|
||
COPY requirements.txt ./ | ||
COPY run.sh / | ||
RUN chmod +x /run.sh | ||
COPY *.py ./ | ||
|
||
RUN pip install -r requirements.txt | ||
|
||
COPY . . | ||
|
||
RUN useradd -m -r gai && chown gai /project | ||
|
||
USER gai | ||
|
||
ENV ORCHID_GENAI_ADDR=127.0.0.1 | ||
ENV ORCHID_GENAI_PORT=8001 | ||
ENV ORCHID_GENAI_RECIPIENT_KEY="" | ||
ENV ORCHID_GENAI_LLM_PARAMS="{\"temperature\": 0.7, \"top_p\": 1, \"max_tokens\": 3000, \"stream\": false, \"safe_prompt\": false, \"random_seed\": null}" | ||
ENV ORCHID_GENAI_LLM_MODEL="Mistral-7B-Instruct-v0.2/" | ||
ENV ORCHID_GENAI_LLM_URL="http://localhost:8000/v1/chat/completions/" | ||
|
||
ENTRYPOINT ["/tini", "--", "/run.sh"] | ||
EXPOSE 8001 8001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ethereum | ||
web3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
while true | ||
do | ||
python server.py; | ||
sleep 1; | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters