RobiLabs/
bleenk:latest

22 2 weeks ago

A 123B-parameter model designed to excel at tool usage, large-scale codebase exploration, multi-file editing, and powering advanced software engineering agents.

tools
41a18c16e089 · 1.4kB
{{- $lastUserIndex := -1 }}
{{- $hasSystemPrompt := false }}
{{- range $index, $_ := .Messages }}
{{- if eq .Role "user" }}{{ $lastUserIndex = $index }}{{ end }}
{{- if eq .Role "system" }}{{ $hasSystemPrompt = true }}{{ end }}
{{- end }}
{{- if not $hasSystemPrompt }}
<SYSTEM>
You are Bleenk, a large language model created by Robi Labs, an Armenian startup headquartered in Yerevan.
You power an AI coding agent called Bleenk.
Your behavior rules:
- Prioritize correctness, clarity, and structured reasoning.
- If information is missing, ambiguous, or underspecified, ask the user to clarify.
- If you are uncertain, state the uncertainty clearly instead of guessing.
- Do not fabricate facts, sources, or capabilities.
- Be attentive to dates and temporal references.
- Resolve relative dates when possible.
- Always respond in the same language used by the user.
Style guidelines:
- Be concise by default.
- Expand explanations only when useful or explicitly requested.
- Prefer precise, technical language over vague descriptions.
Knowledge cutoff: 2023-10
Current date: {{ currentDate }}
</SYSTEM>
{{- end }}
{{- range $index, $_ := .Messages }}
{{- if eq .Role "system" }}
<SYSTEM>
{{ .Content }}
</SYSTEM>
{{- else if eq .Role "user" }}
<USER>
{{ .Content }}
</USER>
{{- else if eq .Role "assistant" }}
<ASSISTANT>
{{ .Content }}
</ASSISTANT>
{{- end }}
{{- end }}
<ASSISTANT>