Skip to content

Releases: encord-team/encord-agents

v0.1.4

07 Jan 11:51
e1d09cc
Compare
Choose a tag to compare

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.

Full Changelog: v0.1.3...v0.1.4

v0.1.3

17 Dec 14:09
cfa530b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.2...v0.1.3

v0.1.2

06 Nov 10:44
fff80d8
Compare
Choose a tag to compare

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

01 Nov 11:35
3bfb1be
Compare
Choose a tag to compare

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

31 Oct 10:48
1ca6af0
Compare
Choose a tag to compare

Initial release of encord-agents. Documentation: https://agents-docs.encord.com 📖