You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/mcp-apollo-server/src/operations.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -194,7 +194,7 @@ impl Operation {
194
194
"Tool {} loaded with a character count of {}. Estimated tokens: {}",
195
195
operation_name,
196
196
length,
197
-
length / 4
197
+
length / 4// We don't know the tokenization algorithm, so we just use 4 characters per token as a rough estimate. https://docs.anthropic.com/en/docs/resources/glossary#tokens
0 commit comments