Views
No views yet
1graph TD
2 A[User Query] --> B[Think Mode]
3 B --> C[Decomposition & Planning]
4 C --> D[Plugin Router]
5 C --> E[SKT RAG Retrieval]
6 D --> F[Execute Plugins]
7 E --> G[Context Processing]
8 F & G --> H[Verification Loop]
9 H --> I[LangGraph Synthesis]
10 I --> J[Final Response]1# Using llama.cpp
2./llama-cli \
3 -m tiger-om-q4_k_m.gguf \
4 -p "Your complex query here..." \
5 -n 1024 \
6 -t 8 \
7 --temp 0.71from llama_cpp import Llama
2
3llm = Llama(
4 model_path="tiger-om-q4_k_m.gguf",
5 n_gpu_layers=-1, # Use all GPU layers
6 n_ctx=8192,
7 verbose=False
8)
9
10response = llm.create_chat_completion(
11 messages=[{"role": "user", "content": "Explain..."}],
12 temperature=0.7,
13 max_tokens=1024
14)
15
16print(response['choices'][0]['message']['content'])/skt_ai_labs — Core ADK + RAG integration/plugins — Plugin system/agents — LangGraph workflows/examples — Ready-to-use examples/docs — Architecture & guides