Skip to content

Commit b703231

Browse files
committed
version bump
1 parent 0cee610 commit b703231

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@llmindset/mcp-hfspace",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"description": "MCP Server to connect to Hugging Face spaces. Simple configuration, Claude Desktop friendly.",
55
"type": "module",
66
"publishConfig": {

src/semantic_search.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class SemanticSearch {
2424

2525
async search(
2626
query: string,
27-
limit: number = RESULTS_TO_RETURN
27+
limit: number = RESULTS_TO_RETURN,
2828
): Promise<SearchResult[]> {
2929
try {
3030
if (!query) {
@@ -46,7 +46,7 @@ export class SemanticSearch {
4646

4747
if (!response.ok) {
4848
throw new Error(
49-
`Search request failed: ${response.status} ${response.statusText}`
49+
`Search request failed: ${response.status} ${response.statusText}`,
5050
);
5151
}
5252

0 commit comments

Comments
 (0)