4 yesterday

A lightweight coding assistant by Inserloft Research, designed for fast Python code completion and local development.

ollama run Inserloft/ParrotCode

Models

View all →

Readme

Parrot Coder.png

Parrot Coder 1 ๐Ÿฆœ

Parrot Coder is a highly efficient, lightweight (~200M parameters) language model optimized for rapid code autocompletion and generation, running directly on your local machine via Ollama.

Developed by Inserloft Research.

๐Ÿš€ Quick Start

Download the model:

ollama push Inserloft/ParrotCode

Run the model locally:

ollama run Inserloft/ParrotCode

๐Ÿ’ป API Usage

You can seamlessly integrate Parrot Coder into your local IDEs or applications using the Ollama REST API:

curl http://localhost:11434/api/generate -d '{
  "model": "Inserloft/ParrotCode",
  "prompt": "def calculate_fibonacci(n):",
  "stream": false
}'

๐Ÿง  Model Details

  • Architecture: GPT-2 based with LoRA adapters (Merged)
  • Precision: FP16 (GGUF)
  • Primary Language: Python
  • License: Apache 2.0

๐Ÿ“Œ Use Cases

  • Code Autocompletion: Easily integrates with extensions like Continue.dev or Twinny in VSCode/JetBrains.
  • Offline Coding Assistant: Fast, privacy-focused code generation without requiring internet access.

For the full .safetensors weights or PyTorch inference, visit our Hugging Face repository.