Instructions to use gautamritvik/Curl-Bot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use gautamritvik/Curl-Bot with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="gautamritvik/Curl-Bot", filename="curl-bot.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use gautamritvik/Curl-Bot with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf gautamritvik/Curl-Bot # Run inference directly in the terminal: llama cli -hf gautamritvik/Curl-Bot
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf gautamritvik/Curl-Bot # Run inference directly in the terminal: llama cli -hf gautamritvik/Curl-Bot
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf gautamritvik/Curl-Bot # Run inference directly in the terminal: ./llama-cli -hf gautamritvik/Curl-Bot
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf gautamritvik/Curl-Bot # Run inference directly in the terminal: ./build/bin/llama-cli -hf gautamritvik/Curl-Bot
Use Docker
docker model run hf.co/gautamritvik/Curl-Bot
- LM Studio
- Jan
- Ollama
How to use gautamritvik/Curl-Bot with Ollama:
ollama run hf.co/gautamritvik/Curl-Bot
- Unsloth Studio
How to use gautamritvik/Curl-Bot with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for gautamritvik/Curl-Bot to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for gautamritvik/Curl-Bot to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for gautamritvik/Curl-Bot to start chatting
- Atomic Chat new
- Docker Model Runner
How to use gautamritvik/Curl-Bot with Docker Model Runner:
docker model run hf.co/gautamritvik/Curl-Bot
- Lemonade
How to use gautamritvik/Curl-Bot with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull gautamritvik/Curl-Bot
Run and chat with the model
lemonade run user.Curl-Bot-{{QUANT_TAG}}List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,8 @@ tags:
|
|
| 10 |
base_model: microsoft/Phi-3-mini-4k-instruct
|
| 11 |
---
|
| 12 |
|
|
|
|
|
|
|
| 13 |
# Curl-Bot
|
| 14 |
|
| 15 |
The official AI assistant for the [Curl programming language](https://github.com/gautamritvik/Curl-Programming), created by Ritvik Gautam.
|
|
|
|
| 10 |
base_model: microsoft/Phi-3-mini-4k-instruct
|
| 11 |
---
|
| 12 |
|
| 13 |
+
***Note: Curl-Bot is currently in continuous production and training, so some things that it will state about me or the Curl programming language could be incorrect, but stay tuned! The bot will be better and more advanced.***
|
| 14 |
+
|
| 15 |
# Curl-Bot
|
| 16 |
|
| 17 |
The official AI assistant for the [Curl programming language](https://github.com/gautamritvik/Curl-Programming), created by Ritvik Gautam.
|