diff --git a/fern/apis/prod/openapi/openapi.yaml b/fern/apis/prod/openapi/openapi.yaml index 95805137a..888fd653c 100644 --- a/fern/apis/prod/openapi/openapi.yaml +++ b/fern/apis/prod/openapi/openapi.yaml @@ -2,7 +2,7 @@ openapi: 3.0.2 info: title: Superagent description: The Open Source AI Assistant Framework & API - version: 0.2.3 + version: 0.2.6 servers: - url: https://api.beta.superagent.sh paths: @@ -2036,6 +2036,9 @@ components: company: title: Company type: string + anonymousId: + title: Anonymousid + type: string app__models__request__Datasource: title: Datasource required: diff --git a/libs/superagent/app/main.py b/libs/superagent/app/main.py index 9d694b13d..d5edd0f45 100644 --- a/libs/superagent/app/main.py +++ b/libs/superagent/app/main.py @@ -36,7 +36,7 @@ title="Superagent", docs_url="/", description="The Open Source AI Assistant Framework & API", - version="0.2.3", + version="0.2.6", servers=[{"url": config("SUPERAGENT_API_URL")}], ) diff --git a/libs/superagent/pyproject.toml b/libs/superagent/pyproject.toml index c8b0de64a..eaa309240 100644 --- a/libs/superagent/pyproject.toml +++ b/libs/superagent/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "superagent" -version = "0.1.38" +version = "0.2.6" description = "" authors = ["Ismail Pelaseyed"] readme = "../../README.md"