synkro — Gemini Agents | Neura Market
    Neura MarketNeura Market/Gemini
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsBlogVideosGuidesCoursesCommunityGemsExtensionsTrendingGenerate
    GeminiAgentssynkro
    Back to Agents
    synkro

    synkro

    velocitybolt January 1, 2026
    67 copies 0 downloads

    AI agent simulation framework

    Agent Definition
    # Synkro
    
    ![](https://static.scarf.sh/a.png?x-pxid=f08f2a53-e0cf-4291-83f4-b518f620bf69)
    [![PyPI version](https://img.shields.io/pypi/v/synkro.svg?cacheSeconds=3600)](https://pypi.org/project/synkro/)
    [![Downloads](https://static.pepy.tech/badge/synkro)](https://pepy.tech/project/synkro)
    [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
    [![Documentation](https://img.shields.io/badge/docs-synkro.sh-purple.svg)](https://synkro.sh/docs)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
    
    Synkro reads your policy documents, auto-generates diverse test scenarios, runs multi-turn conversations against your agent with a simulated user, and verifies every response against the policy rules. No hand-written test cases. No manual review.
    
    ## Installation
    
    ```bash
    pip install synkro
    ```
    
    ## Simulate Your Agent
    
    ```python
    import synkro
    
    def my_agent(messages):
        resp = openai.chat.completions.create(model="gpt-4o", messages=messages)
        return resp.choices[0].message.content
    
    results = synkro.simulate(
        agent=my_agent,
        policy="All refunds require a receipt. Max refund is $500.",
        scenarios=10,
        turns=3,
    )
    
    print(results.pass_rate)  # 0.85
    print(results.passed)     # 8 of 10 passed
    
    for r in results:
        if not r.passed:
            print(r.scenario.description, r.issues)
    ```
    
    Works with any agent — just pass a callable that takes messages and returns a string. Sync or async.
    
    ## Generate Training Data
    
    Use the same pipeline to generate training datasets for fine-tuning:
    
    ```python
    import synkro
    
    dataset = synkro.generate(
        "All refunds require a receipt. Max refund is $500.",
        traces=100,
    )
    dataset.save("training.jsonl")
    ```
    
    Or use the CLI:
    
    ```bash
    synkro generate policy.pdf --traces 50
    
    # Quick demo with built-in policy
    synkro demo
    ```
    
    ## Features
    
    - **Agent simulation** — Test agents against auto-generated, policy-grounded scenarios
    - **

    Tags

    aianthropicdatasets-preparationevaluationfine-tuninggeminilangchainlangfuselangsmithllm

    Comments

    More Agents

    View all
    research

    NotebookLM

    Google's AI-powered research notebook that ingests your documents and becomes an expert on your content. Generates audio overviews, study guides, FAQs, and interactive discussions from uploaded sources.

    G
    Google
    browser

    Project Mariner (Browser Agent)

    Google DeepMind's experimental AI agent that can navigate websites, fill forms, and complete multi-step browser tasks autonomously. Uses Gemini's multimodal understanding to interact with web interfaces.

    G
    Google DeepMind
    multimodal

    Project Astra (Multimodal Agent)

    Google DeepMind's universal AI assistant prototype that can see, hear, and respond in real-time through your device camera and microphone. Demonstrates the future of multimodal AI interaction.

    G
    Google DeepMind
    enterprise

    Gemini Enterprise Agent Platform

    Google Cloud's enterprise platform for building, deploying, and managing AI agents powered by Gemini. Supports multi-agent orchestration, tool integration, and enterprise governance.

    G
    Google Cloud
    research

    Gemini Deep Research Agent

    Gemini's agentic research capability that autonomously browses the web, synthesizes information from dozens of sources, and produces comprehensive research reports on any topic.

    G
    Google
    canvas

    Gemini Canvas Agent

    Interactive coding and content creation agent that generates, previews, and iterates on code, documents, and interactive applications in a side panel. Supports HTML/CSS/JS, Python, and more.

    G
    Google

    Stay up to date

    Get the latest Gemini prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Gemini and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.