companionbot 0.16.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/definitions.js +10 -10
- package/package.json +1 -1
|
@@ -100,11 +100,11 @@ export const compactTools = [
|
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
name: "save_memory",
|
|
103
|
-
description: "
|
|
103
|
+
description: "중요한 정보 저장. 사용자 정보, 선호도, 약속, 결정 등 나중에 기억해야 할 것들",
|
|
104
104
|
input_schema: {
|
|
105
105
|
type: "object",
|
|
106
106
|
properties: {
|
|
107
|
-
content: { type: "string", description: "
|
|
107
|
+
content: { type: "string", description: "기억할 내용" },
|
|
108
108
|
category: { type: "string", enum: ["user_info", "preference", "event", "project", "decision", "emotion", "other"] },
|
|
109
109
|
},
|
|
110
110
|
required: ["content"],
|
|
@@ -112,11 +112,11 @@ export const compactTools = [
|
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
114
|
name: "memory_search",
|
|
115
|
-
description: "
|
|
115
|
+
description: "과거 기억 검색. 이전에 나눈 대화, 저장한 정보, 사용자 선호도 등을 찾을 때 사용",
|
|
116
116
|
input_schema: {
|
|
117
117
|
type: "object",
|
|
118
118
|
properties: {
|
|
119
|
-
query: { type: "string" },
|
|
119
|
+
query: { type: "string", description: "검색할 내용" },
|
|
120
120
|
limit: { type: "number", description: "Max results (default: 5)" },
|
|
121
121
|
minScore: { type: "number", description: "Min similarity 0-1 (default: 0.3)" },
|
|
122
122
|
},
|
|
@@ -131,11 +131,11 @@ export const compactTools = [
|
|
|
131
131
|
// === 날씨/웹 ===
|
|
132
132
|
{
|
|
133
133
|
name: "get_weather",
|
|
134
|
-
description: "
|
|
134
|
+
description: "현재 날씨 조회. 외출, 옷차림, 우산 필요 여부 등 물어볼 때 사용",
|
|
135
135
|
input_schema: {
|
|
136
136
|
type: "object",
|
|
137
137
|
properties: {
|
|
138
|
-
city: { type: "string" },
|
|
138
|
+
city: { type: "string", description: "도시명 (예: Seoul, Tokyo)" },
|
|
139
139
|
country: { type: "string", description: "Country code (optional)" },
|
|
140
140
|
},
|
|
141
141
|
required: ["city"],
|
|
@@ -143,11 +143,11 @@ export const compactTools = [
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
name: "web_search",
|
|
146
|
-
description: "
|
|
146
|
+
description: "웹 검색 (Brave API). 최신 정보, 뉴스, 사실 확인이 필요할 때 사용. 검색어로 관련 결과 반환",
|
|
147
147
|
input_schema: {
|
|
148
148
|
type: "object",
|
|
149
149
|
properties: {
|
|
150
|
-
query: { type: "string" },
|
|
150
|
+
query: { type: "string", description: "검색어" },
|
|
151
151
|
count: { type: "number", description: "Results count (default: 5, max: 20)" },
|
|
152
152
|
},
|
|
153
153
|
required: ["query"],
|
|
@@ -155,11 +155,11 @@ export const compactTools = [
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
name: "web_fetch",
|
|
158
|
-
description: "
|
|
158
|
+
description: "URL에서 웹페이지 본문 추출. 링크 내용 확인, 기사 읽기, 문서 요약 등에 사용. HTML → 텍스트 변환",
|
|
159
159
|
input_schema: {
|
|
160
160
|
type: "object",
|
|
161
161
|
properties: {
|
|
162
|
-
url: { type: "string" },
|
|
162
|
+
url: { type: "string", description: "가져올 웹페이지 URL" },
|
|
163
163
|
maxChars: { type: "number", description: "Max chars (default: 5000)" },
|
|
164
164
|
},
|
|
165
165
|
required: ["url"],
|