Skip to content
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: 2 additions & 2 deletions .github/workflows/issue-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Issue Notification

on:
issues:
types: ['opened', 'reopened', 'closed']
types: ['opened', 'reopened']

jobs:
sync:
Expand Down Expand Up @@ -32,4 +32,4 @@ jobs:
- name: Notify via lark
run: |
cozeloop-ci lark sync-issue \
--email qihai@bytedance.com
--chat-id oc_72317b3108b14bd63359a6582cf45443
4 changes: 2 additions & 2 deletions .github/workflows/pr-sync.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: PR Notification

on:
pull_request:
pull_request_target:
types: ['opened', 'reopened', 'closed']

jobs:
Expand Down Expand Up @@ -37,4 +37,4 @@ jobs:
- name: Notify via lark
run: |
cozeloop-ci lark sync-pr \
--email qihai@bytedance.com
--chat-id oc_72317b3108b14bd63359a6582cf45443
3 changes: 3 additions & 0 deletions packages/cozeloop-ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 🕗 Change Log - @cozeloop/ai

## 0.0.5
* fix: variable_defs may be undefined (by @othorizon)

## 0.0.1 ~ 0.0.4
🌱 Early version

Expand Down
2 changes: 1 addition & 1 deletion packages/cozeloop-ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cozeloop/ai",
"version": "0.0.4",
"version": "0.0.5",
"description": "Official Node.js SDK of CozeLoop | 扣子罗盘官方 Node.js SDK",
"keywords": [
"cozeloop",
Expand Down
4 changes: 3 additions & 1 deletion packages/cozeloop-langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 🕗 Change Log - @cozeloop/langchain

## 0.0.2
fix: DEFAULT_SCHEDULE_DELAY to 1_000 ms

## 0.0.1
🌱 Initial version

1 change: 1 addition & 0 deletions packages/cozeloop-langchain/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 🧭 CozeLoop LangChain Integration

[![npm version](https://img.shields.io/npm/v/%40cozeloop%2Flangchain)](https://www.npmjs.com/package/@cozeloop/langchain)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Integrate Langchain with Cozeloop via `@cozeloop/langchain`, supports:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// npm install @langchain-anthropic
import { z } from 'zod';
import { AzureChatOpenAI } from '@langchain/openai';
import { createReactAgent } from '@langchain/langgraph/prebuilt';
Expand Down
2 changes: 1 addition & 1 deletion packages/cozeloop-langchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cozeloop/langchain",
"version": "0.0.1",
"version": "0.0.2",
"description": "Integration LangChain with CozeLoop | 扣子罗盘 LangChain 集成",
"keywords": [
"cozeloop",
Expand Down
2 changes: 1 addition & 1 deletion packages/cozeloop-langchain/src/otel/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function formatPropertyUnprovidedError(propName: string, envKey: string) {
}

const DEFAULT_BATCH_SIZE = 100;
const DEFAULT_SCHEDULE_DELAY = 30_000;
const DEFAULT_SCHEDULE_DELAY = 1_000;
const DEFAULT_TRACE_ENDPOINT =
'https://api.coze.cn/v1/loop/opentelemetry/v1/traces';

Expand Down
Loading