RayCodes_ClaudeCodeArchitecture

(★ 10)

No description available.

File Explorer

  • clean_calculator.py
  • messy_calculator.py
  • orchestrator.py
  • README.md
  • requirements.txt

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

ollama

View Details ▼

A large language model runner.
For a list of available models, see <https://ollama.com/library>.

ollama serve

Start the daemon required to run other commands:

ollama run {{model}}

Run a model and chat with it (will automatically download the model if it's not downloaded):

ollama run {{model}} --think=false "{{prompt}}"

Run a model with a single prompt and thinking turned off:

🔍

rich

View Details ▼

A toolbox for fancy output in the terminal.

rich {{path/to/file.py}}

Display a file with syntax highlighting:

rich {{path/to/file.py}} --line-numbers --guides

Add line numbers, and indentation guides:

rich {{path/to/file.py}} --theme {{monokai}}

Apply a theme:

// repository documentation