Skip to main content
Core.Today
|
GoogleMediumUltra

Gemini 1.5 Pro

Google's production-ready model with excellent balance of capability and cost. Features 2M token context window for massive document processing.

2 credits
per 1K tokens (avg)
2M token context window
8K max output tokens
Multimodal support
Production-ready
Excellent reasoning

Model Specifications

Context Window
2.1M
tokens
Max Output
8K
tokens
Training Cutoff
2024-01
Compatible SDK
OpenAI, Google

Capabilities

Vision
Function Calling
Streaming
JSON Mode
System Prompt

Token Pricing (per 1M tokens)

Token TypeCreditsUSD Equivalent
Input Tokens1,250$1.25
Output Tokens5,000$5.00

* 1 credit โ‰ˆ $0.001 (actual charges may vary based on usage)

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "model": "gemini-1.5-pro",
  "input": {
    "model": "gemini-1.5-pro",
    "messages": [
      {
        "role": "user",
        "content": "Analyze the themes, character development, and narrative structure of this novel: [full book text]"
      }
    ]
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
messagesarrayYes-Array of message objects
temperaturefloatNo1.0Sampling temperature
max_tokensintegerNo-Maximum output tokens

Examples

Book Analysis

Analyze entire books

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "model": "gemini-1.5-pro",
  "input": {
    "model": "gemini-1.5-pro",
    "messages": [
      {
        "role": "user",
        "content": "Analyze the themes, character development, and narrative structure of this novel: [full book text]"
      }
    ]
  }
}'

Tips & Best Practices

1Best for very long context needs (up to 2M tokens)
2Great for multi-document analysis
3More stable than experimental models
4Use for production workloads

Use Cases

Enterprise document analysis
Large codebase review
Book-length content processing
Multi-document synthesis
Production applications

Model Info

ProviderGoogle
Version1.5
CategoryLLM
Price2 credits

API Endpoint

POST /llm/openai/v1/chat/completions
Try in PlaygroundBack to Docs