SShortSingh.
Back to feed

Jev and Laya Offer Rival Approaches to AI Decision Models Without Text Generation

0
·1 views

Two new AI models designed for classification rather than text generation emerged in mid-2026: Jev, a closed hosted API from TypeSafe AI launched on September 15, and Laya, an open-source model released shortly after by Convai Innovations. Both models accept structured inputs and return typed answers with confidence scores, eliminating parsing errors and hallucinations by design. Jev, priced at $0.042 per million input tokens, excels at large-label classification, scoring 0.870 on the Banking77 benchmark compared to Laya's 0.425, due to architectural differences in how candidate options are represented. Laya, a 421-million-parameter encoder available on Hugging Face under an Apache 2.0 license, runs on local hardware at roughly 7–33 milliseconds per query and supports fine-tuning, multilingual use, and air-gapped deployment at no API cost. The choice between them largely depends on scale of label sets, data privacy requirements, and whether teams prefer a managed service or self-hosted infrastructure.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Practical Guide to LLM Observability Tools Tailored for Small Dev Teams

A technical guide published on DEV Community outlines how small teams and startups can monitor large language model deployments in production without enterprise-level budgets. The guide highlights that standard APM tools like Datadog and New Relic are insufficient for LLM-specific failure modes such as hallucinations, prompt injections, and unpredictable token costs. Key capabilities recommended include request logging, latency and token tracking, prompt versioning, semantic evaluation, and PII redaction. The guide reviews tools including LangSmith, Arize AI, Weights and Biases, and PromptLayer, assessing each for small-team suitability and ease of onboarding. It argues that even minimal-scale LLM deployments require a dedicated observability layer to maintain output quality and cost control.

0
ProgrammingDEV Community ·

60% of CoinMarketCap's Tokenised Real-World Assets Have No Tracked Market

A developer analysing CoinMarketCap's real-world asset (RWA) API found that 476 of 791 underlying assets flagged as 'has_tokens: true' have no wrapper with a CMC-tracked market, representing 60.2% of the flagged pool. The finding emerged from a small open-source tool called Shelfware, built using Python's standard library and querying CoinMarketCap's RWA and cryptocurrency endpoints. The core issue is a definitional mismatch: the 'has_tokens' boolean confirms a token has been minted, but does not indicate whether CoinMarketCap actively tracks a market for it. CoinMarketCap classifies such listings as 'untracked', meaning they are registered but do not yet meet the platform's methodology requirements for market tracking. The developer noted that most price-based RWA tools silently drop null-price rows, effectively hiding the scale of this gap.

0
ProgrammingDEV Community ·

ServiceNow MCP Server Bridges Snowflake and ServiceNow Data for Unified AI Queries

Developers have documented an architecture that connects Snowflake's Cortex Agent and ServiceNow's Knowledge Graph through ServiceNow's MCP Server, enabling a single AI agent to answer questions spanning both platforms. Hardware asset data is stored in Snowflake while software asset data resides in ServiceNow, but users can query both through one natural-language question. The MCP Server acts as a gateway, routing queries to the appropriate internal tool — either a subflow that invokes Snowflake's Cortex Agent or a ServiceNow Knowledge Graph search. Claude Code serves as the MCP Client, communicating with the server via OAuth authentication without needing to know where underlying data is stored. The setup allows a user to ask a question like 'What assets are managed by Tim?' and receive a consolidated answer drawn from both systems.

0
ProgrammingDEV Community ·

Creative-OS Framework Aims to End Generic UI Design with Metadata-Driven Approach

Developer codebrak07 has released Creative-OS, an open-source design and engineering framework intended to help teams build visually distinct digital interfaces. The project addresses what its creator calls a homogenization problem in modern web design, where products increasingly share the same layouts, typography, and visual patterns. Rather than starting with a component library, Creative-OS asks teams to first define structured metadata — covering typography, color, layout density, and motion — that captures the intended visual identity of a product. These structured design decisions then serve as a bridge between creative direction and frontend implementation, keeping design intent explicit and consistent throughout development. The framework sits between brand strategy and engineering, aiming to make every interface intentional rather than simply assembled from familiar templates.