Views
No views yet
cognitivessai (see LICENSE)
| Benchmark | Cognitivess-1 | Claude Fable 5 | Claude Opus 4.8 | GPT-5.5 | Gemini 3.1 Pro |
|---|---|---|---|---|---|
| AIME 2026 | 99.2 | n/a | ~96 | ~98 | ~98 |
| GPQA-Diamond | 91.2 | ~93 | ~93 | ~93 | ~94 |
| HLE (w/ tools) | 54.7 | ~53 | ~58 | ~52 | ~51 |
| HMMT Nov 2025 | 94.4 | n/a | ~96 | ~96 | ~95 |
| SWE-bench Pro | 81.0 | ~80 | ~69 | ~58 | ~54 |
| Terminal-Bench 2.1 | 83.0 | n/a | ~85 | ~84 | ~74 |
| Benchmark | What it measures | Dataset |
|---|---|---|
| AIME 2026 | Competition mathematics (American Invitational Mathematics Examination). | MathArena/aime_2026 |
| GPQA-Diamond | Graduate-level, "Google-proof" science QA (biology, physics, chemistry), diamond subset. | Idavidrein/gpqa (diamond) |
| HLE (w/ tools) | Humanity's Last Exam — frontier expert knowledge across math, humanities, natural sciences; evaluated with tools. | cais/hle |
| HMMT Nov 2025 | Harvard-MIT Mathematics Tournament (November 2025). | MathArena/hmmt_nov_2025 |
| SWE-bench Pro | Real-world GitHub issue resolution in production repositories. | ScaleAI/SWE-bench_Pro |
| Terminal-Bench 2.1 | Agentic task completion in containerized terminal environments. | Terminal-Bench |
transformers library, Cognitivess-1 is shipped as remote code (trust_remote_code=True), exposing CognitivessForCausalLM, CognitivessModel, and CognitivessConfig — the same mechanism other custom-architecture models on the Hub use.reasoning_content field alongside the final response. This is mapped to the model's native reasoning channel, so Cognitivess-1 learns to emit structured reasoning before committing to an answer — the same channel exposed in the API as reasoning_content and as Anthropic-style thinking blocks.attn_implementation="sdpa").pip install cognitivessssh-ed25519 AAAA..., shown only once), then either pass it explicitly or export it:export COGNITIVESS_API_KEY="ssh-ed25519 AAAA..."1from cognitivess import Cognitivess
2
3cog = Cognitivess() # reads COGNITIVESS_API_KEY
4
5resp = cog.chat.completions.create(
6 model="Cognitivess-1",
7 messages=[
8 {"role": "system", "content": "You are a helpful assistant."},
9 {"role": "user", "content": "Hello, how are you?"},
10 ],
11)
12print(resp.choices[0].message.content)1msg = cog.messages.create(
2 model="Cognitivess-1",
3 max_tokens=128,
4 system="You are a helpful assistant.",
5 messages=[{"role": "user", "content": "Hello!"}],
6)
7print(msg.content[0].text)1import asyncio
2from cognitivess import AsyncCognitivess
3
4async def main():
5 async with AsyncCognitivess() as cog:
6 async for chunk in cog.chat.completions.create(
7 model="Cognitivess-1",
8 messages=[{"role": "user", "content": "Count to 5."}],
9 max_tokens=64,
10 stream=True,
11 ):
12 delta = chunk.choices[0].delta.content
13 if delta:
14 print(delta, end="", flush=True)
15
16asyncio.run(main())response_format), the Responses API (cog.responses.create), streaming SSE, typed exceptions, retries with backoff, and timeout control. Self-hosted or dev? Override the base URL:cog = Cognitivess(base_url="https://api.cognitivess.com/v1")1@misc{cognitivess1,
2 title = {Cognitivess-1},
3 author = {CognitivessAI},
4 year = {2026},
5 url = {https://cognitivess.com}
6}