Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pip install syncode
Alternatively, you can install the latest development version directly from GitHub:

```bash
pip install git+https://github.com/uiuc-focal-lab/syncode.git
pip install git+https://github.com/structuredllm/syncode.git
```

#### Version Compatibility
Expand Down Expand Up @@ -218,7 +218,7 @@ export HF_ACCESS_TOKEN="your_huggingface_api_key"

Clone this repository:
```
git clone https://github.com/uiuc-focal-lab/syncode.git
git clone https://github.com/structuredllm/syncode.git
```

To run the tool with CLI, use the following command:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
description="This package provides the tool for grammar augmented LLM generation.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/uiuc-focal-lab/syncode",
url="https://github.com/structuredllm/syncode",
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=requirements,
Expand Down
2 changes: 1 addition & 1 deletion syncode/parsers/grammars/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ These grammars construct parsers that filter out incompatible tokens during the
Creating grammar for SynCode requires a solid understanding of Lark EBNF grammar. Here's how you can get started:

- Read Lark's grammar documentation [here](https://lark-parser.readthedocs.io/en/latest/grammar.html).
- Review existing grammars for SynCode [here](https://github.com/uiuc-focal-lab/syncode/tree/main/syncode/parsers/grammars).
- Review existing grammars for SynCode [here](https://github.com/structuredllm/syncode/tree/main/syncode/parsers/grammars).

### LALR(1) or LR(1) Grammars

Expand Down
Loading