Yantronic V1 Pro

Yantronic V1 Pro is LW AI's vertical domain LLM optimized for finance and insurance reasoning. It delivers superior accuracy on domain-specific tasks compared to general-purpose models, with deep understanding of financial terminology, regulatory frameworks, and industry-specific workflows.

Quick Reference

PropertyValue
Model IDyantronic
Context window1,000,000 tokens
Streaming
Structured output
Batch API

Pricing

TypePrice
Input$0.07 / 1M tokens / 1M tokens
Output$0.13 / 1M tokens / 1M tokens

Supported Domains

Finance

  • Financial statement analysis and interpretation
  • Risk assessment and credit scoring
  • Regulatory compliance checking (Basel, IFRS, etc.)
  • Market trend analysis and forecasting
  • Investment research summarization
  • Insurance underwriting and claims analysis

Energy

  • Energy demand forecasting
  • Grid load analysis and optimization
  • Equipment maintenance prediction
  • Energy policy and regulation interpretation
  • Carbon emission calculation and reporting
  • Renewable energy project assessment

Example

from openai import OpenAI

client = OpenAI(
    base_url="https://openapi.linkwo.ai/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="yantronic",
    messages=[
        {"role": "system", "content": "You are a financial analysis assistant."},
        {"role": "user", "content": "Analyze this insurance policy document and extract key coverage details: ..."}
    ],
    temperature=0.2
)

print(response.choices[0].message.content)

Best Practices

  • Use temperature: 0.2 for analytical tasks requiring precision
  • Include domain-specific context (financial data, energy metrics) in prompts
  • Use structured output for extracting structured analytical results
  • Combine with general-purpose models for tasks outside finance/energy domains