-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 @@ | ||
# Trajectories | ||
|
||
Trajectories are classes returned by LaVague agents containing information about an agent run and the list of actions performed. | ||
|
||
They contain the following attributes: | ||
- `start_url`: The URL provided as input for this run | ||
- `objective`: The text objective that was given as input for this run | ||
- `run_id`: A unique run id | ||
- `output`: Text output where expected | ||
- `actions`: The series of [actions](./actions.md) generated during this run | ||
- `status`: Whether the agent run was `completed` or `failed` | ||
|
||
![trajectory](https://raw.githubusercontent.com/lavague-ai/LaVague/drafting-some-docs/docs/assets/trajectory.png) | ||
|
||
## Integrations | ||
|
||
This Trajectory can be passed to `exporter` functions to be converted into replayable automation code in the format required your use case. | ||
|
||
![exporter](https://raw.githubusercontent.com/lavague-ai/LaVague/drafting-some-docs/docs/assets/trajectory-export.png) | ||
|
||
Currently, we only provide a `PyTest exporter`, but we plan to work with the community to build exporters to cover a wide range of use cases. |
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