Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Luce-Org/lucebox-hub
/ overlaps
Function
overlaps
server/src/server/tool_parser.cpp:121–126 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
119
(c >=
'0'
&& c <=
'9'
) || c ==
'_'
|| c ==
'-'
;
120
};
121
while (start > 0 && is_ident(text[start - 1])) start--;
122
if (start < idx) {
123
pos = start;
124
return true;
125
}
126
}
127
idx = text.find(
'<'
, idx + 1);
128
}
129
return false;
Callers
1
parse_tool_calls
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected