diff --git a/README.md b/README.md index ca32ade0..e728c929 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: diff --git a/setup.py b/setup.py index ed6c217b..68fa0fed 100644 --- a/setup.py +++ b/setup.py @@ -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, diff --git a/syncode/parsers/grammars/README.md b/syncode/parsers/grammars/README.md index 4c085765..d22dc233 100644 --- a/syncode/parsers/grammars/README.md +++ b/syncode/parsers/grammars/README.md @@ -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