Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
*.tgz
/testagent
.vscode
.opencode
.opencode
.DS_Store
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @agentuity/sdk Changelog

## 0.0.157

### Patch Changes

- Add support for eval running

## [0.0.156] - 2025-10-15

### Added
Expand Down
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentuity/sdk",
"version": "0.0.156",
"version": "0.0.157",
"description": "The Agentuity SDK for NodeJS and Bun",
"license": "Apache-2.0",
"public": true,
Expand Down Expand Up @@ -97,4 +97,4 @@
"mailparser": "^3.7.4",
"nodemailer": "^7.0.3"
}
}
}
11 changes: 10 additions & 1 deletion src/apis/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ interface ApiRequestWithUrl {

type ApiRequestOptions = ApiRequestWithPath | ApiRequestWithUrl;

export type ServiceName = 'vector' | 'keyvalue' | 'stream' | 'objectstore';
export type ServiceName =
| 'vector'
| 'keyvalue'
| 'stream'
| 'objectstore'
| 'eval';

interface ApiRequestBase {
method: 'POST' | 'GET' | 'PUT' | 'DELETE';
Expand Down Expand Up @@ -102,6 +107,10 @@ export const getBaseUrlForService = (service?: ServiceName) => {
process.env.AGENTUITY_OBJECTSTORE_URL ||
process.env.AGENTUITY_TRANSPORT_URL;
break;
case 'eval':
value =
process.env.AGENTUITY_EVAL_URL || process.env.AGENTUITY_TRANSPORT_URL;
break;
default:
break;
}
Expand Down
Loading
Loading