Kodosumi Logo

Meta

Agentic Service Annotations

The following attributes are defined with an extended openapi specification.

attributetypecomment
tags[str]rendered as chips
summarystrrendered as service name
descriptionstrrendered as descriptive text
deprecatedbooldeclares this operation to be deprecated.
entryboolFalse hides the end point
authorstr
organizationstr
versionstruse semantic versioning with major, minor, patch

Example:

@app.enter("/", 
         tags=["Test"], 
         summary="Hello World Example",
         description="Say hello world.",
         author="[email protected]",
         version="0.1.0")
...

The following additional meta data is associated with flow execution:

attributetypecomment
fidstrflow execution identifier
usernamestruser identifier owning flow execution
base_urlstrendpoint URL
entry_pointstrentry point

On this page