Views
No views yet
This repository is not a model. It is the model card / project home for Cognitive Twin — a local-first personal AI twin. Published here so anyone running a local LLM can understand, fork, or critique the agent without cloning first. The runnable code lives on GitHub; nothing here downloads weights.
| Backend | How models appear | Notes |
|---|---|---|
| Ollama (default) | llama3.2, qwen2.5:3b | bare names |
| OpenAI-compatible | lmstudio/qwen2.5-7b-instruct | LM Studio, llama.cpp --api, Jan, vLLM, LocalAI |
| Apple Intelligence | Apple Intelligence (on-device) | fully on-device, no server |
1# LM Studio: load a model, then Developer ▸ Start Server (defaults to :1234)
2CTWIN_USE_LMSTUDIO=1 python -m cognitive_twin voice --web
3# …or any OpenAI-compatible base URL:
4CTWIN_OPENAI_BASE=http://localhost:8080/v1 python -m cognitive_twin voice --web1git clone https://github.com/sinhaankur/cognitive-twin-agent
2cd cognitive-twin-agent
3# Ollama path: install Ollama (https://ollama.com) and pull a tool-capable model
4ollama pull llama3.2
5python -m cognitive_twin "good morning"