-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into issue-1622/-Refactor-API-Endpoints-into-Serv…
…ices-Folder
- Loading branch information
Showing
226 changed files
with
8,681 additions
and
4,914 deletions.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,102 @@ | ||
name: cli commands tests | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "agenta-backend/**" | ||
- "agenta-cli/**" | ||
|
||
jobs: | ||
serve-to-oss: | ||
runs-on: ubuntu-latest | ||
environment: oss | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up python | ||
id: setup-python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools | ||
pip install poetry | ||
cd agenta-cli | ||
pip install -e . | ||
- name: Create .env file | ||
run: | | ||
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" > .env | ||
working-directory: examples/baby_name_generator | ||
|
||
- name: Run agenta init | ||
run: | | ||
APP_NAME="gh-cli-$(date +'%d-%m-%y_%H-%M-%S')" | ||
cd examples/baby_name_generator | ||
agenta init --app-name $APP_NAME --backend-host ${{ secrets.BACKEND_HOST }} | ||
shell: bash | ||
continue-on-error: false | ||
|
||
- name: Run agenta variant serve | ||
run: | | ||
cd examples/baby_name_generator | ||
agenta variant serve --file_name app.py | ||
shell: bash | ||
continue-on-error: false | ||
|
||
- name: Run agenta variant serve with overwrite | ||
run: | | ||
cd examples/baby_name_generator | ||
agenta variant serve --file_name app.py --overwrite | ||
shell: bash | ||
continue-on-error: false | ||
|
||
serve-to-cloud: | ||
runs-on: ubuntu-latest | ||
environment: oss | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up python | ||
id: setup-python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools | ||
pip install poetry | ||
cd agenta-cli | ||
pip install -e . | ||
- name: Create .env file | ||
run: | | ||
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" > .env | ||
working-directory: examples/baby_name_generator | ||
|
||
- name: Run agenta init | ||
run: | | ||
APP_NAME="gh-cli-$(date +'%d-%m-%y_%H-%M-%S')" | ||
cd examples/baby_name_generator | ||
AGENTA_API_KEY=${{ secrets.AGENTA_API_KEY }} agenta init --app-name $APP_NAME --backend-host https://cloud.agenta.ai --organisation-name team | ||
shell: bash | ||
continue-on-error: false | ||
|
||
- name: Run agenta variant serve | ||
run: | | ||
cd examples/baby_name_generator | ||
agenta variant serve --file_name app.py | ||
shell: bash | ||
continue-on-error: false | ||
|
||
- name: Run agenta variant serve with overwrite | ||
run: | | ||
cd examples/baby_name_generator | ||
agenta variant serve --file_name app.py --overwrite | ||
shell: bash | ||
continue-on-error: false |
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
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
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
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,18 @@ | ||
import aiodocker | ||
|
||
|
||
async def retrieve_logs(container_id: str) -> str: | ||
""" | ||
Retrieves and returns the last 10 lines of logs (both stdout and stderr) | ||
for a specified Docker container. | ||
Args: | ||
container_id (str): The docker container identifier | ||
Returns: | ||
the last 10 lines of logs | ||
""" | ||
|
||
async with aiodocker.Docker() as client: | ||
container = await client.containers.get(container_id) | ||
logs = await container.log(stdout=True, stderr=True) | ||
outputs = logs[::-1][:10] | ||
return "".join(outputs) |
Oops, something went wrong.