ninegrid2 6.521.0 → 6.525.0

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.
@@ -105,6 +105,20 @@ class aiContainer extends HTMLElement
105
105
  return colInfo;
106
106
  };
107
107
 
108
+ #getColumnInfoString = () => {
109
+ let colInfo = "";
110
+
111
+ console.log(this.#target.tagName, this.#target.columns);
112
+
113
+ if (this.#target.tagName === "NINE-GRID") {
114
+ this.#target.columns.info().forEach(info => {
115
+ colInfo += `- "${info.name}": ${info.desc}, ${info.type}\n`;
116
+ });
117
+ }
118
+
119
+ return colInfo;
120
+ };
121
+
108
122
  #getUniqueKey = () => {
109
123
  if (this.#target.tagName === "NINE-GRID") {
110
124
  return this.#target.dataset.unique;
@@ -123,7 +137,7 @@ class aiContainer extends HTMLElement
123
137
  자연어 쿼리를 Qdrant 필터 JSON 객체로 변환하는 AI 비서입니다.
124
138
 
125
139
  Qdrant 컬렉션에서 사용 가능한 메타데이터 필드와 유형은 다음과 같습니다.:
126
- ${this.#getColumnInfo()}
140
+ ${this.#getColumnInfoString()}
127
141
 
128
142
  필터 생성 규칙:
129
143
  1. 위에 제공된 필드만 사용하십시오. 새로운 필드를 만들지 마십시오.
@@ -54199,6 +54199,20 @@ class aiContainer extends HTMLElement
54199
54199
  return colInfo;
54200
54200
  };
54201
54201
 
54202
+ #getColumnInfoString = () => {
54203
+ let colInfo = "";
54204
+
54205
+ console.log(this.#target.tagName, this.#target.columns);
54206
+
54207
+ if (this.#target.tagName === "NINE-GRID") {
54208
+ this.#target.columns.info().forEach(info => {
54209
+ colInfo += `- "${info.name}": ${info.desc}, ${info.type}\n`;
54210
+ });
54211
+ }
54212
+
54213
+ return colInfo;
54214
+ };
54215
+
54202
54216
  #getUniqueKey = () => {
54203
54217
  if (this.#target.tagName === "NINE-GRID") {
54204
54218
  return this.#target.dataset.unique;
@@ -54217,7 +54231,7 @@ class aiContainer extends HTMLElement
54217
54231
  자연어 쿼리를 Qdrant 필터 JSON 객체로 변환하는 AI 비서입니다.
54218
54232
 
54219
54233
  Qdrant 컬렉션에서 사용 가능한 메타데이터 필드와 유형은 다음과 같습니다.:
54220
- ${this.#getColumnInfo()}
54234
+ ${this.#getColumnInfoString()}
54221
54235
 
54222
54236
  필터 생성 규칙:
54223
54237
  1. 위에 제공된 필드만 사용하십시오. 새로운 필드를 만들지 마십시오.
@@ -54197,6 +54197,20 @@ class aiContainer extends HTMLElement
54197
54197
  return colInfo;
54198
54198
  };
54199
54199
 
54200
+ #getColumnInfoString = () => {
54201
+ let colInfo = "";
54202
+
54203
+ console.log(this.#target.tagName, this.#target.columns);
54204
+
54205
+ if (this.#target.tagName === "NINE-GRID") {
54206
+ this.#target.columns.info().forEach(info => {
54207
+ colInfo += `- "${info.name}": ${info.desc}, ${info.type}\n`;
54208
+ });
54209
+ }
54210
+
54211
+ return colInfo;
54212
+ };
54213
+
54200
54214
  #getUniqueKey = () => {
54201
54215
  if (this.#target.tagName === "NINE-GRID") {
54202
54216
  return this.#target.dataset.unique;
@@ -54215,7 +54229,7 @@ class aiContainer extends HTMLElement
54215
54229
  자연어 쿼리를 Qdrant 필터 JSON 객체로 변환하는 AI 비서입니다.
54216
54230
 
54217
54231
  Qdrant 컬렉션에서 사용 가능한 메타데이터 필드와 유형은 다음과 같습니다.:
54218
- ${this.#getColumnInfo()}
54232
+ ${this.#getColumnInfoString()}
54219
54233
 
54220
54234
  필터 생성 규칙:
54221
54235
  1. 위에 제공된 필드만 사용하십시오. 새로운 필드를 만들지 마십시오.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.521.0",
4
+ "version": "6.525.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -105,6 +105,20 @@ class aiContainer extends HTMLElement
105
105
  return colInfo;
106
106
  };
107
107
 
108
+ #getColumnInfoString = () => {
109
+ let colInfo = "";
110
+
111
+ console.log(this.#target.tagName, this.#target.columns);
112
+
113
+ if (this.#target.tagName === "NINE-GRID") {
114
+ this.#target.columns.info().forEach(info => {
115
+ colInfo += `- "${info.name}": ${info.desc}, ${info.type}\n`;
116
+ });
117
+ }
118
+
119
+ return colInfo;
120
+ };
121
+
108
122
  #getUniqueKey = () => {
109
123
  if (this.#target.tagName === "NINE-GRID") {
110
124
  return this.#target.dataset.unique;
@@ -123,7 +137,7 @@ class aiContainer extends HTMLElement
123
137
  자연어 쿼리를 Qdrant 필터 JSON 객체로 변환하는 AI 비서입니다.
124
138
 
125
139
  Qdrant 컬렉션에서 사용 가능한 메타데이터 필드와 유형은 다음과 같습니다.:
126
- ${this.#getColumnInfo()}
140
+ ${this.#getColumnInfoString()}
127
141
 
128
142
  필터 생성 규칙:
129
143
  1. 위에 제공된 필드만 사용하십시오. 새로운 필드를 만들지 마십시오.