diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml index f4e3dbc88..7b32b446a 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yaml +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -22,15 +22,6 @@ body: description: "A clear and concise description of what the feature request is." placeholder: "You should add ..." - - type: textarea - id: additional-context - validations: - required: false - attributes: - label: "📝 Additional Context" - description: "Add any other context or screenshots about the feature request here." - placeholder: "..." - - type: checkboxes id: acknowledgements attributes: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 48f144d0c..e9b60a4a8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -10,18 +10,4 @@ Depends on -- - -## Screenshots - - - -## Checklist - - - - -- [ ] My code follows the code style of this project and passes `./lint-and-format.sh format`. -- [ ] My change requires a change to the documentation. -- [ ] I have [updated the documentation](https://docs.superagent.sh/) accordingly. -- [ ] My change has adequate unit test coverage. +- \ No newline at end of file diff --git a/fern/apis/prod/openapi/openapi.yaml b/fern/apis/prod/openapi/openapi.yaml index d7184c0c6..9948d5fbf 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.1 + version: 0.2.2 servers: - url: https://api.beta.superagent.sh paths: @@ -195,8 +195,8 @@ paths: $ref: '#/components/schemas/HTTPValidationError' security: - HTTPBearer: [] - x-fern-sdk-method-name: invoke x-fern-sdk-group-name: agent + x-fern-sdk-method-name: invoke /api/v1/agents/{agent_id}/llms: post: tags: @@ -940,7 +940,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/app__models__request__Tool' + $ref: '#/components/schemas/ToolUpdate' required: true responses: '200': @@ -1786,6 +1786,25 @@ components: - HTTP type: string description: An enumeration. + ToolUpdate: + title: ToolUpdate + type: object + properties: + name: + title: Name + type: string + description: + title: Description + type: string + type: + title: Type + type: string + metadata: + title: Metadata + type: object + returnDirect: + title: Returndirect + type: boolean ValidationError: title: ValidationError required: @@ -2021,7 +2040,6 @@ components: title: Datasource required: - name - - description - type type: object properties: diff --git a/libs/superagent/app/main.py b/libs/superagent/app/main.py index 0c42e9d86..7f4224a49 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.1", + version="0.2.2", servers=[{"url": config("SUPERAGENT_API_URL")}], )