Text Generation
Safetensors
GGUF
English
llama
ios
swift
swiftui
xcode
code-generation
mobile-development
conversational
Instructions to use stalkiq/stalkiq-ios-app-generator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use stalkiq/stalkiq-ios-app-generator with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="stalkiq/stalkiq-ios-app-generator", filename="stalkiq.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use stalkiq/stalkiq-ios-app-generator with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf stalkiq/stalkiq-ios-app-generator # Run inference directly in the terminal: llama-cli -hf stalkiq/stalkiq-ios-app-generator
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf stalkiq/stalkiq-ios-app-generator # Run inference directly in the terminal: llama-cli -hf stalkiq/stalkiq-ios-app-generator
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 stalkiq/stalkiq-ios-app-generator # Run inference directly in the terminal: ./llama-cli -hf stalkiq/stalkiq-ios-app-generator
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 stalkiq/stalkiq-ios-app-generator # Run inference directly in the terminal: ./build/bin/llama-cli -hf stalkiq/stalkiq-ios-app-generator
Use Docker
docker model run hf.co/stalkiq/stalkiq-ios-app-generator
- LM Studio
- Jan
- vLLM
How to use stalkiq/stalkiq-ios-app-generator with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "stalkiq/stalkiq-ios-app-generator" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "stalkiq/stalkiq-ios-app-generator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/stalkiq/stalkiq-ios-app-generator
- Ollama
How to use stalkiq/stalkiq-ios-app-generator with Ollama:
ollama run hf.co/stalkiq/stalkiq-ios-app-generator
- Unsloth Studio new
How to use stalkiq/stalkiq-ios-app-generator 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 stalkiq/stalkiq-ios-app-generator 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 stalkiq/stalkiq-ios-app-generator to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for stalkiq/stalkiq-ios-app-generator to start chatting
- Docker Model Runner
How to use stalkiq/stalkiq-ios-app-generator with Docker Model Runner:
docker model run hf.co/stalkiq/stalkiq-ios-app-generator
- Lemonade
How to use stalkiq/stalkiq-ios-app-generator with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull stalkiq/stalkiq-ios-app-generator
Run and chat with the model
lemonade run user.stalkiq-ios-app-generator-{{QUANT_TAG}}List all available models
lemonade list
StalkIQ iOS App Generator
A fine-tuned LLM that generates complete, production-ready SwiftUI iOS application codebases from natural language descriptions.
What It Does
Give it an app idea, get back a full Xcode project with:
project.yml(XcodeGen)- SwiftUI views, view models, models
Info.plist,LaunchScreen.storyboard,Assets.xcassets- MVVM architecture, dark gradient UI theme
- iOS 16+ deployment target
Usage
With Ollama (Recommended)
# Download and create the model
echo 'FROM hf.co/stalkiq/stalkiq-ios-app-generator/stalkiq.gguf' > Modelfile
ollama create stalkiq -f Modelfile
# Generate an app
ollama run stalkiq "Create an iOS app called RecipeAI that identifies food from photos using AI"
With Python (transformers)
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("stalkiq/stalkiq-ios-app-generator")
tokenizer = AutoTokenizer.from_pretrained("stalkiq/stalkiq-ios-app-generator")
prompt = "### Instruction:\nCreate an iOS app called RecipeAI that identifies food from photos\n\n### Response:\n"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.7, do_sample=True)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
API
# Via Ollama API (after creating the model)
curl http://localhost:11434/api/generate -d '{
"model": "stalkiq",
"prompt": "Create an iOS app called WeatherAI that shows forecasts from sky photos"
}'
Prompt Format
### Instruction:
{your app description here}
### Response:
Model Details
- Base Model: TinyLlama-1.1B-Chat-v1.0
- Fine-tuning: QLoRA on StalkIQ iOS app training data
- Architecture: LlamaForCausalLM (1.1B parameters)
- Tensor Type: FP16
- Files: safetensors (for transformers) + GGUF (for Ollama/llama.cpp)
Built By
StalkIQ — AI-powered web and mobile applications.
- Downloads last month
- 509
Model tree for stalkiq/stalkiq-ios-app-generator
Base model
TinyLlama/TinyLlama-1.1B-Chat-v1.0