-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2299 from Agenta-AI/resolve-failing-cli-commands-…
…workflow [Bug Fix]: Resolve CLI commands failing tests
- Loading branch information
Showing
4 changed files
with
20 additions
and
34 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
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 |
---|---|---|
@@ -1,27 +1,12 @@ | ||
Contains the backend for the container registry. | ||
|
||
This backend takes care of the following: | ||
|
||
- Instanciating a container registry | ||
- Managing the container versions in the registry | ||
- Instanciating the containers for evaluation | ||
- Removing the container | ||
- Shutting down the containers | ||
|
||
What it does not take care of: | ||
- Running the evaluation against the containers | ||
![app_and_configuration_diagram](https://docs.agenta.ai/assets/ideal-img/apps_and_configurations_light.74f7538.1100.png) | ||
|
||
This backend takes care of the following: | ||
|
||
- building images | ||
- deploying containers | ||
- managing configurations and prompts for the application | ||
|
||
## Architecture | ||
This backend instanciate a docker registry and an api endpoint. | ||
The CLI builds the apps into docker container images and pushes them to the registry, then posts the container information to the api endpoint. | ||
This backend updates its local database with the new container information. | ||
|
||
The UI-backend lists the container information through the api endpoint. | ||
The | ||
## API interface | ||
|
||
### Add container | ||
api: POST /containers/add | ||
description: Add a container to the registry | ||
See [here](https://docs.agenta.ai/concepts/architecture#agenta-architecture). |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "agenta" | ||
version = "0.27.7a1" | ||
version = "0.27.6" | ||
description = "The SDK for agenta is an open-source LLMOps platform." | ||
readme = "README.md" | ||
authors = ["Mahmoud Mabrouk <[email protected]>"] | ||
|