Skip to content

Commit 303fe8e

Browse files
author
Andrei Bratu
authored
Merge pull request #25 from humanloop/add-agents
Release 0.8.21-beta1: Add agents support in SDK
2 parents 0127ea1 + 46c913e commit 303fe8e

File tree

218 files changed

+10913
-891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+10913
-891
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ jobs:
3333
- name: Compile
3434
run: yarn && yarn test
3535
env:
36-
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
37-
ANTHROPIC_KEY: ${{ secrets.ANTHROPIC_KEY }}
38-
COHERE_KEY: ${{ secrets.COHERE_KEY }}
36+
HUMANLOOP_API_KEY: ${{ secrets.HUMANLOOP_API_KEY }}
37+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3938

4039
publish:
4140
needs: [compile, test]

jest.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ export default {
33
preset: "ts-jest",
44
testEnvironment: "node",
55
moduleNameMapper: {
6-
"(.+)\.js$": "$1",
6+
"^(?!.*node_modules)(.+)\\.js$": "$1",
77
},
88
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "humanloop",
3-
"version": "0.8.20",
3+
"version": "0.8.21-beta1",
44
"private": false,
55
"repository": "https://github.com/humanloop/humanloop-node",
66
"main": "./index.js",

0 commit comments

Comments
 (0)