Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bee-agent-framework): update to 0.0.57 #155

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 1 addition & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ WATSONX_API_KEY=
WATSONX_PROJECT_ID=
WATSONX_REGION=

BAM_API_KEY=

# Must contain port, can contain {model_id} placeholder, e.g. "{model_id}.inference.example.com:443"
IBM_VLLM_URL=
IBM_VLLM_ROOT_CERT=
Expand All @@ -86,7 +84,7 @@ WDU_URL=
# --- TOOLS SECTION ---

# Code Interpreter, see https://github.com/i-am-bee/bee-code-interpreter
BEE_CODE_INTERPRETER_URL=http://localhost:50051
BEE_CODE_INTERPRETER_URL=http://localhost:50081
BEE_CODE_INTERPRETER_CA_CERT=
BEE_CODE_INTERPRETER_CERT=
BEE_CODE_INTERPRETER_KEY=
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"@opentelemetry/instrumentation": "^0.54.0",
"@opentelemetry/sdk-node": "^0.54.0",
"@opentelemetry/semantic-conventions": "^1.27.0",
"@zilliz/milvus2-sdk-node": "^2.4.4",
"@zilliz/milvus2-sdk-node": "^2.4.9",
"ajv": "^8.17.1",
"axios": "^1.7.7",
"bee-agent-framework": "0.0.55",
"bee-agent-framework": "0.0.57",
"bullmq": "^5.34.6",
"bullmq-otel": "^1.0.1",
"cache-manager": "^5.7.6",
Expand All @@ -63,7 +63,7 @@
"jose": "^5.6.3",
"json-schema-to-ts": "^3.1.0",
"mime": "^4.0.4",
"ollama": "^0.5.9",
"ollama": "^0.5.11",
"openai": "^4.67.3",
"openai-chat-tokens": "^0.2.8",
"openapi-fetch": "^0.10.2",
Expand All @@ -74,7 +74,7 @@
"remeda": "^2.2.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"yaml": "^2.5.0",
"yaml": "^2.6.1",
"yauzl": "^3.1.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.1"
Expand Down
114 changes: 33 additions & 81 deletions pnpm-lock.yaml

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

2 changes: 0 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ export const IBM_VLLM_PRIVATE_KEY = getEnv('IBM_VLLM_PRIVATE_KEY', null);

export const OPENAI_API_KEY = getEnv('OPENAI_API_KEY', null);

export const BAM_API_KEY = getEnv('BAM_API_KEY', null);

export const WATSONX_API_KEY = getEnv('WATSONX_API_KEY', null);
export const WATSONX_PROJECT_ID = getEnv('WATSONX_PROJECT_ID', null);
export const WATSONX_REGION = getEnv('WATSONX_REGION', null);
Expand Down
1 change: 0 additions & 1 deletion src/runs/execution/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const AIBackend = {
OLLAMA: 'ollama',
IBM_VLLM: 'ibm-vllm',
OPENAI: 'openai',
BAM: 'bam',
WATSONX: 'watsonx'
} as const;

Expand Down
Loading
Loading