@@ -119,7 +119,7 @@ def _create_minimal_project(
119119 Create a minimal DSPy project with only the configuration file.
120120
121121 This is the default initialization mode that creates only what's necessary
122- to start using dspy-cli . Additional directories will be created on-demand
122+ to start using dspy-code . Additional directories will be created on-demand
123123 when commands need them.
124124
125125 Args:
@@ -314,17 +314,17 @@ def _create_example_files(project_dir: Path) -> None:
314314
3153151. Create your first DSPy component:
316316 ```bash
317- dspy-cli create
317+ dspy-code create
318318 ```
319319
3203202. Test your component:
321321 ```bash
322- dspy-cli run generated/your_program.py --interactive
322+ dspy-code run generated/your_program.py --interactive
323323 ```
324324
3253253. Optimize your component:
326326 ```bash
327- dspy-cli optimize generated/your_program.py
327+ dspy-code optimize generated/your_program.py
328328 ```
329329
330330## Project Structure
@@ -343,7 +343,7 @@ def _create_example_files(project_dir: Path) -> None:
343343## Learn More
344344
345345- [DSPy Documentation](https://dspy-docs.vercel.app/)
346- - [DSPy Code Guide](https://github.com/dspy-cli /dspy-cli )
346+ - [DSPy Code Guide](https://github.com/dspy-code /dspy-code )
347347"""
348348
349349 (project_dir / "README.md" ).write_text (readme_content )
@@ -534,10 +534,10 @@ def _show_next_steps(project_name: str, fresh: bool = False) -> None:
534534 console .print (" [dim]See dspy_config_example.yaml for all available options[/dim]" )
535535
536536 console .print ("\n 2. Create your first DSPy component:" )
537- console .print (" [cyan]dspy-cli create[/cyan]" )
537+ console .print (" [cyan]dspy-code create[/cyan]" )
538538
539539 console .print ("\n 3. Test model connectivity:" )
540- console .print (" [cyan]dspy-cli models test <model-name>[/cyan]" )
540+ console .print (" [cyan]dspy-code models test <model-name>[/cyan]" )
541541
542542 if fresh :
543543 console .print ("\n 4. Explore the project structure:" )
@@ -547,4 +547,4 @@ def _show_next_steps(project_name: str, fresh: bool = False) -> None:
547547 console .print (" - generated/ - DSPy Code generated components" )
548548
549549 console .print ("\n 4. Learn more:" if not fresh else "\n 5. Learn more:" )
550- console .print (" [cyan]dspy-cli --help[/cyan]" )
550+ console .print (" [cyan]dspy-code --help[/cyan]" )
0 commit comments