Releases: encord-team/encord-agents
Releases · encord-team/encord-agents
v0.1.4
What's Changed
Major change is compliance with editor agent interface from the Encord frontend.
To get CORS settings right with FastAPI servers, please follow this pattern:
from encord_agents.fastapi.cors import EncordCORSMiddleware
from fastapi import FastAPI
app = FastAPI()
app.add_middleware(EncordCORSMiddleware)
@app.post("/my_agent")
def my_agent(
frame_data: FrameData,
):
# ... Do your thing upon agent trigger
GCP is handled automatically under the hood so no modifications needed.
- fix: don't try to create posixpath object from ssh key file content by @frederik-encord in #37
- fix: raw text data for gcp by @frederik-encord in #36
- Automating using cron job by @mustakeem-encord in #38
Full Changelog: v0.1.3...v0.1.4
v0.1.3
What's Changed
- fix: improvements for docs and task runner by @frederik-encord in #16
- feat: faster runner and better errors with printable errors + function wrapper to format them by @frederik-encord in #18
- feat: add ontology <-> json translation utililty and object cropping by @frederik-encord in #20
- minor spell check by @david-babuschkin-encord in #23
- docs(examples): frame classification with claude by @frederik-encord in #22
- docs: add documentation around task runner by @frederik-encord in #25
- feat: add include args for label row listing by @frederik-encord in #24
- misc: Bump encord by @Jim-Encord in #26
- chore: add pre-commit and mypy to the project by @frederik-encord in #28
- misc: ignore pycharm idea folder by @eloy-encord in #27
- Aikido setup by @mustakeem-encord in #32
- Mm/aikido setup by @mustakeem-encord in #33
- misc: Bump encord so that we have backing_item_uuids by @Jim-Encord in #30
- chore: pre commit by @frederik-encord in #29
- feat: add asset dependency by @frederik-encord in #34
- fix: fix line numbers because of ruff format by @frederik-encord in #35
New Contributors
- @david-babuschkin-encord made their first contribution in #23
- @Jim-Encord made their first contribution in #26
- @eloy-encord made their first contribution in #27
- @mustakeem-encord made their first contribution in #32
Full Changelog: v0.1.2...v0.1.3
v0.1.2
What's Changed
- chore: adding docs pipeline by @ali-encord in #14
- fix: more concise error messages, reading ssh keys with
~
, and option to print all agent nodes in a project workflow by @frederik-encord in #15
Full Changelog: v0.1.1...v0.1.2
v0.1.1
What's Changed
readme: conform with pypi
docs: open external links in seperate tab
by @frederik-encord in #13
Full Changelog: v0.1.0...v0.1.1
v0.1.0
Initial release of encord-agents
. Documentation: https://agents-docs.encord.com 📖