/** * Metadata for an automatically generated simulation test. * * Tracks the origin and context of tests that were auto-generated from * conversations, including the source conversation, topic, and evaluation * criteria the test covers. */ export interface AutoGenerationMetadata { /** Agent whose simulation library this test belongs to. */ agentId: string; /** Stable topic id (from topic discovery) this test covers. */ stableTopicId: string; /** Evaluation criterion id this test targets. */ criteriaId: string; /** Human-readable topic label at generation time. */ topicLabel: string; /** Conversation the test was generated from. */ sourceConversationId: string; /** Unix timestamp (seconds) when the test was generated. */ generatedAtUnix: number; }