René's URL Explorer Experiment


Title: Error when handling partial terminal · Issue #227 · structuredllm/syncode · GitHub

Open Graph Title: Error when handling partial terminal · Issue #227 · structuredllm/syncode

X Title: Error when handling partial terminal · Issue #227 · structuredllm/syncode

Description: I'm trying to use syncode to generate Java programs, but it fails when given a valid token. I simplify the case in the reproduction code. I use a simple test case to demonstrate the case. In the grammar, there are four types of terminals...

Open Graph Description: I'm trying to use syncode to generate Java programs, but it fails when given a valid token. I simplify the case in the reproduction code. I use a simple test case to demonstrate the case. In the gr...

X Description: I'm trying to use syncode to generate Java programs, but it fails when given a valid token. I simplify the case in the reproduction code. I use a simple test case to demonstrate the case. In th...

Opengraph URL: https://github.com/structuredllm/syncode/issues/227

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Error when handling partial terminal","articleBody":"I'm trying to use syncode to generate Java programs, but it fails when given a valid token. I simplify the case in the reproduction code.\n\nI use a simple test case to demonstrate the case. In the grammar, there are four types of terminals: `WS`, `NUMBER`, `BLOCK_COMMENT` and operators e.g. `+` or `*`. The grammar only allows simple operations, and both `WS` and `BLOCK_COMMENT` are ignored.\n\nWhen the text starts with `/**/`, which by itself is a legal `BLOCK_COMMENT`, it is divided by the tokenizer into `/**` and `/`. Then, if the `/**` token is selected by the model, because it is not a complete `BLOCK_COMMENT`, it is lexed into `/`, `*` and `*`, and then causes error like this.\n```text\n[YYYY-MM-DD hh:mm:ss,sss -syncode.grammar_mask.grammar_constrainer] - Parsing failed!\nPartial code: /**\nParsed lexical tokens: [Token('SLASH', '/')]\n[YYYY-MM-DD hh:mm:ss,sss -syncode.grammar_mask.grammar_constrainer] - --------------------------------------------------\nTraceback (most recent call last):\n  File \".../lib/python3.11/site-packages/syncode/larkm/parsers/lalr_parser_state.py\", line 77, in feed_token\n    action, arg = states[state][token.type]\n                  ~~~~~~~~~~~~~^^^^^^^^^^^^\nKeyError: 'SLASH'\n```\n\nThis is because, the terminals are lexed purely based on the visible partial code, but doesn't consider the possibility that the partial code could be a prefix of another terminal. When it fails to match one terminal in the partial code (`BLOCK_COMMENT` in this case), it turns to match another code. This can be seen from the following `match` method of the `Scanner` class who does the real lexing job for the partial code. This behavior is totally fine in the `lark` library, because the code is almost always complete, but it is not OK for a constrained decoding method like `syncode`.\nhttps://github.com/structuredllm/syncode/blob/8afb425570440afcaada961b2da483867d9f2ff8/syncode/larkm/lexer.py#L387-L391\n\n\n### Reproduction code\n```Python\nfrom syncode.grammar_mask.grammar_constrainer import GrammarConstrainer\nfrom syncode.parsers.grammars import Grammar\nfrom syncode.mask_store.byte_tokenizer import ByteTokenizer\n\nfrom transformers import AutoTokenizer\nimport torch\n\nclass FakeGrammar(Grammar):\n  def __init__(self, name: str, ebnf: str):\n    self.ebnf = ebnf\n    self.name = name\n\ntokenizer = AutoTokenizer.from_pretrained('Qwen/Qwen2.5-0.5B')\ngrammar = FakeGrammar('custom',\nr'''start: sum\nsum: sum (\"+\" | \"-\") term\nterm: term (\"*\" | \"/\") factor\nfactor: \"(\" sum \")\" | NUMBER\nNUMBER: /[0-9]+/\nBLOCK_COMMENT: /\\/\\*.*?\\*\\//s\n%ignore BLOCK_COMMENT\n%import common.WS\n''')\nbyte_tokenizer = ByteTokenizer(tokenizer)\ngrammar_constrainer = GrammarConstrainer(\n  grammar=grammar,\n  tokenizer=tokenizer, # type: ignore\n  byte_tokenizer=byte_tokenizer,\n  use_cache=True,\n  parse_output_only=True,\n  batch_size=1,\n  dev_mode=True,\n  parser='lalr',\n  mode='grammar_strict',\n  indent=False\n)\n\nvocab_size = len(tokenizer.get_vocab())\n\ndef process_logit(input_ids: list[int], logit: torch.Tensor) -\u003e torch.Tensor:\n  return grammar_constrainer.mask_scores(torch.tensor([input_ids]), logit.unsqueeze(0)).squeeze(0) # type: ignore\n\ndef process_tokens(tokens: list[int]):\n  for i in range(len(tokens)):\n    logit = torch.zeros((vocab_size,), dtype=torch.float)\n    visible_tokens = tokens[:i]\n    masked_logit = process_logit(visible_tokens, logit)\n    assert masked_logit[tokens[i]] != float('-inf'), f'token {i} ({tokens[i]}, {tokenizer.decode(tokens[i])!r}) is masked'\n\ntext = '/**/1+1'\ntokens = tokenizer.encode(text)\nprint(tokens)\nprocess_tokens(tokens)\n```","author":{"url":"https://github.com/Gompyn","@type":"Person","name":"Gompyn"},"datePublished":"2025-08-20T15:16:06.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/227/syncode/issues/227"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:328d246f-f6cf-f614-e70e-3fbd94470418
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE846:95C88:FFFFBF:145AA51:69919145
html-safe-noncef520de84c24668c150f05d09e349ece17ab45c1d04e3f9a696dcf8fc9d0813cf
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFODQ2Ojk1Qzg4OkZGRkZCRjoxNDVBQTUxOjY5OTE5MTQ1IiwidmlzaXRvcl9pZCI6IjgzNzgxNDQ5ODg5OTE2ODkwMjkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac6632fd7995e58b95e647a044848c28d26c09809b91869b4ef43e2b0ebde28fef
hovercard-subject-tagissue:3338548234
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/structuredllm/syncode/227/issue_layout
twitter:imagehttps://opengraph.githubassets.com/c21eb4067f47eeaa0fef47653e8cf6466231c9a92c2cb0b7a174841609974eee/structuredllm/syncode/issues/227
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/c21eb4067f47eeaa0fef47653e8cf6466231c9a92c2cb0b7a174841609974eee/structuredllm/syncode/issues/227
og:image:altI'm trying to use syncode to generate Java programs, but it fails when given a valid token. I simplify the case in the reproduction code. I use a simple test case to demonstrate the case. In the gr...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameGompyn
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/structuredllm/syncode git https://github.com/structuredllm/syncode.git
octolytics-dimension-user_id204232273
octolytics-dimension-user_loginstructuredllm
octolytics-dimension-repository_id687211074
octolytics-dimension-repository_nwostructuredllm/syncode
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id687211074
octolytics-dimension-repository_network_root_nwostructuredllm/syncode
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release848bc6032dcc93a9a7301dcc3f379a72ba13b96e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/structuredllm/syncode/issues/227#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstructuredllm%2Fsyncode%2Fissues%2F227
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstructuredllm%2Fsyncode%2Fissues%2F227
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=structuredllm%2Fsyncode
Reloadhttps://patch-diff.githubusercontent.com/structuredllm/syncode/issues/227
Reloadhttps://patch-diff.githubusercontent.com/structuredllm/syncode/issues/227
Reloadhttps://patch-diff.githubusercontent.com/structuredllm/syncode/issues/227
structuredllm https://patch-diff.githubusercontent.com/structuredllm
syncodehttps://patch-diff.githubusercontent.com/structuredllm/syncode
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fstructuredllm%2Fsyncode
Fork 35 https://patch-diff.githubusercontent.com/login?return_to=%2Fstructuredllm%2Fsyncode
Star 321 https://patch-diff.githubusercontent.com/login?return_to=%2Fstructuredllm%2Fsyncode
Code https://patch-diff.githubusercontent.com/structuredllm/syncode
Issues 14 https://patch-diff.githubusercontent.com/structuredllm/syncode/issues
Pull requests 3 https://patch-diff.githubusercontent.com/structuredllm/syncode/pulls
Actions https://patch-diff.githubusercontent.com/structuredllm/syncode/actions
Projects 0 https://patch-diff.githubusercontent.com/structuredllm/syncode/projects
Security 0 https://patch-diff.githubusercontent.com/structuredllm/syncode/security
Insights https://patch-diff.githubusercontent.com/structuredllm/syncode/pulse
Code https://patch-diff.githubusercontent.com/structuredllm/syncode
Issues https://patch-diff.githubusercontent.com/structuredllm/syncode/issues
Pull requests https://patch-diff.githubusercontent.com/structuredllm/syncode/pulls
Actions https://patch-diff.githubusercontent.com/structuredllm/syncode/actions
Projects https://patch-diff.githubusercontent.com/structuredllm/syncode/projects
Security https://patch-diff.githubusercontent.com/structuredllm/syncode/security
Insights https://patch-diff.githubusercontent.com/structuredllm/syncode/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/structuredllm/syncode/issues/227
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/structuredllm/syncode/issues/227
Error when handling partial terminalhttps://patch-diff.githubusercontent.com/structuredllm/syncode/issues/227#top
https://github.com/Gompyn
https://github.com/Gompyn
Gompynhttps://github.com/Gompyn
on Aug 20, 2025https://github.com/structuredllm/syncode/issues/227#issue-3338548234
syncode/syncode/larkm/lexer.pyhttps://github.com/structuredllm/syncode/blob/8afb425570440afcaada961b2da483867d9f2ff8/syncode/larkm/lexer.py#L387-L391
8afb425https://patch-diff.githubusercontent.com/structuredllm/syncode/commit/8afb425570440afcaada961b2da483867d9f2ff8
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.