SynthID Watermarking Expanded with OpenAI PartnershipGoogle DeepMind expands AI safety partnership with SingaporeAnthropic finds over 10,000 vulnerabilities with Project GlasswingSynthID expands to Google Search and ChromeAnthropic updates vuln disclosure dashboardGoal mode now available across all Codex platformsCodex Thursday adds remote Mac controlAnthropic shares early Glasswing resultsAnthropic publishes early Project Glasswing resultsReleases new science-focused AI skills toolGemini 3.5 Flash released with enhanced research toolsGoogle ships ADK for Android/Kotlin v0.1.0Google launches ADK for Kotlin and Android 0.1.0Google expands Gemini for Home for developersGemini 3.5 Flash officially launchedAI solves long-standing open math problem for first timeGoogle announces Gemini Omni for video creationUse multiple agents with Gemini OmniOpenAI Introduces Guaranteed Capacity for Long-Term ComputeGemini for Science assists with research tasksSynthID Watermarking Expanded with OpenAI PartnershipGoogle DeepMind expands AI safety partnership with SingaporeAnthropic finds over 10,000 vulnerabilities with Project GlasswingSynthID expands to Google Search and ChromeAnthropic updates vuln disclosure dashboardGoal mode now available across all Codex platformsCodex Thursday adds remote Mac controlAnthropic shares early Glasswing resultsAnthropic publishes early Project Glasswing resultsReleases new science-focused AI skills toolGemini 3.5 Flash released with enhanced research toolsGoogle ships ADK for Android/Kotlin v0.1.0Google launches ADK for Kotlin and Android 0.1.0Google expands Gemini for Home for developersGemini 3.5 Flash officially launchedAI solves long-standing open math problem for first timeGoogle announces Gemini Omni for video creationUse multiple agents with Gemini OmniOpenAI Introduces Guaranteed Capacity for Long-Term ComputeGemini for Science assists with research tasks
🔒 公式発表のみ掲載。噂・リーク・情報商材は載せません。

AI Glossary

A glossary of key AI terms to help you understand the latest news and updates.

80 terms

A

Alignment

アラインメント

Alignment is the effort to adjust a model's outputs to match human intent and safety standards while reducing undesirable behavior. It is foundational for deploying AI systems safely.

4 related articles

Agent

エージェント

An agent is an AI execution pattern that plans steps toward a goal, uses tools, and iteratively reviews results to complete tasks. It goes beyond single-turn Q&A into multi-step automation.

130 related articles

Agent Memory

エージェントメモリ

Agent memory is a mechanism that stores important information from conversations or work so it can be reused in later tasks. It helps agents stay consistent across sessions and long workflows.

1 related article

Automatic Speech Recognition (ASR)

音声認識

Automatic speech recognition is a technology that converts audio speech into text, used for meeting transcription and subtitle generation. It is a key component for voice-based AI experiences.

Autoregressive Model

自己回帰モデル

An autoregressive model predicts the next token step by step from the preceding context and generates text sequentially. Knowing this helps explain why generation depends strongly on earlier tokens.

Automated Evaluation

自動評価

Automated evaluation is a method that measures output quality mechanically using rules or other models to speed up iteration cycles. It scales well but must be checked against human judgment to avoid drift.

1 related article

Attention Mechanism

注意機構

An attention mechanism is a method that assigns weights to parts of the input to focus on what matters and incorporate the needed information into the output. Understanding it makes model behavior easier to reason about.

B

C

Continued Pretraining

継続事前学習

Continued pretraining is running pretraining again on a pretrained model using additional data to expand its knowledge and vocabulary. It is often used to strengthen domain or freshness coverage.

Constitutional AI

憲法AI

Constitutional AI is a training approach that uses a predefined set of principles to guide self-critique and self-improvement toward safer, more consistent behavior. It aims to make safety goals more explicit and repeatable.

Context Compression

コンテキスト圧縮

Context compression is the practice of shrinking long inputs into key points or necessary information to save tokens while maintaining accuracy. It is important for balancing quality, latency, and cost.

Context Window

コンテキストウィンドウ

A context window is the total amount of input and output context a model can consider at once, measured in tokens. Understanding it helps prevent truncation and manage long documents.

Context Length

コンテキスト長

Context length refers to the token limit of a model's context window and is directly tied to its long-document handling capability. It also influences latency and cost as prompts grow.

3 related articles

Chain-of-Thought (CoT)

思考の連鎖

Chain-of-thought is a prompting technique that encourages a model to articulate intermediate reasoning steps, not just the final answer, to improve performance on multi-step problems. It can raise accuracy but may increase output length and risk.

2 related articles

Chunking

チャンク分割

Chunking is a preprocessing step that splits long documents into appropriately sized pieces for search and RAG. Good chunking balances context preservation with retrieval precision.

D

E

F

G

H

I

K

L

M

O

P

Pretraining

事前学習

Pretraining is a large-scale training stage where a model learns general language patterns and knowledge from massive unlabeled text. It forms the foundation for later adaptation methods.

2 related articles

Pay-as-you-go Pricing

従量課金

Pay-as-you-go pricing is a billing model where costs increase or decrease with usage, often based on tokens or processing volume for AI services. It is fundamental for estimating AI operating expenses.

2 related articles

Planning

プランニング

Planning is an agent step that decomposes a goal into actionable sub-steps and organizes execution order and required information. It helps reduce omissions and wasted work.

1 related article

Prompt

プロンプト

A prompt is the input text that communicates your goal and constraints to the model and strongly influences output quality. Understanding prompts helps you control results more reliably.

77 related articles

Prompt Injection

プロンプトインジェクション

Prompt injection is an attack that uses malicious instructions to override system rules and trigger unintended actions or information leakage. It is a major risk for tool-using or retrieval-augmented systems.

2 related articles

Prompt Template

プロンプトテンプレート

A prompt template is a structured prompt pattern with placeholders that can be filled with variables to produce stable inputs and outputs. It is commonly used in production systems to reduce variability.

1 related article

Pricing Tier

料金ティア

A pricing tier is a plan category with predefined limits, unit prices, and features, used to choose the right plan for your needs. It is a core concept for cost planning.

Q

R

RLAIF (Reinforcement Learning from AI Feedback)

RLAIF

RLAIF is a technique that uses AI-based judgments to generate preference data and then applies reinforcement learning to tune a model. It reduces reliance on human raters but requires careful oversight of evaluator bias.

RLHF (Reinforcement Learning from Human Feedback)

RLHF

RLHF is a technique that builds a reward model from human preference judgments and then uses reinforcement learning to align a model's behavior. It is widely used to improve helpfulness and safety.

Reinforcement Learning (RL)

強化学習

Reinforcement learning is a training method that learns a policy to maximize rewards obtained from the outcomes of actions. In LLMs, it can be used to steer behavior toward preferred responses.

2 related articles

Refusal

拒否応答

A refusal is a model behavior that declines requests it cannot comply with for safety or policy reasons, typically with an explanation. It is important for safe and predictable AI operation.

1 related article

Retrieval-Augmented Generation (RAG)

検索拡張生成

Retrieval-augmented generation is a technique that retrieves supporting passages via external search and uses them to generate answers for higher accuracy. It helps reduce hallucinations and incorporate up-to-date or private knowledge.

2 related articles

Reward Model

報酬モデル

A reward model is a model that scores the quality of responses numerically and is used as an objective signal in methods like RLHF. It helps translate preferences into an optimization target.

Role Prompting

役割付与

Role prompting is a technique that assigns a role or persona (e.g., "You are a reviewer") to encourage answers in a desired tone and perspective. It can improve consistency and relevance.

Retriever

リトリーバー

A retriever is a component that searches for documents or chunks relevant to a question and passes them to an LLM. It is a core part of RAG pipelines.

Reflection

リフレクション

Reflection is a review step where the model or system checks generated results, identifies errors or gaps, and revises the output. It improves reliability by adding a quality-control loop.

Re-ranking

リランキング

Re-ranking is a step that reorders retrieved candidate documents using another model or scoring function to keep the most relevant ones. It improves retrieval quality and controls context size.

Rubric Evaluation

ルーブリック評価

Rubric evaluation is a method that defines evaluation dimensions and scoring criteria in a rubric table so outputs are judged consistently. It improves alignment between evaluators and supports repeatable measurement.

Rate Limit

レート制限

A rate limit is a cap on how many requests or tokens you can send within a time window, set for stability and fairness. It affects throughput planning and practical cost estimation.

1 related article

Red Teaming

レッドチーミング

Red teaming is adversarial testing that simulates misuse and failure modes to uncover weaknesses in a model or system before deployment. It is a key practice for improving AI safety.

1 related article

S

Structured Output

構造化出力

Structured output is an output style that forces responses into a predefined structure so downstream systems can process them reliably. It is important for integrating LLMs into applications and workflows.

3 related articles

System Prompt

システムプロンプト

A system prompt is a high-priority instruction that sets overall policies and rules for a conversation and typically overrides user messages. It helps maintain consistent behavior and safety constraints.

1 related article

Source Attribution (Citations)

出典引用

Source attribution is a mechanism that explicitly shows the documents or passages used as evidence so readers can verify the answer. It is important for trust, auditing, and safer RAG experiences.

Self-Consistency

自己整合性

Self-consistency is an inference method that runs multiple generations for the same question and aggregates them (e.g., by majority vote) to reduce random errors. It can improve reliability at the cost of extra compute.

Stop Sequence

ストップシーケンス

A stop sequence is a termination condition that stops generation when a specified string appears in the output. It is useful for controlling boundaries in formatted responses.

Streaming Generation

ストリーミング生成

Streaming generation is an output mode that returns tokens progressively instead of sending the full response at once. It improves perceived responsiveness and user experience for long outputs.

Safety Classifier

セーフティ分類器

A safety classifier is a detection model that determines whether inputs or outputs violate safety criteria and serves as a core part of guardrails. It helps reduce incidents by filtering risky content.

T

Text-to-Speech (TTS)

音声合成

Text-to-speech is a technology that generates natural-sounding speech from text, used for read-aloud features and conversational assistants. It enables voice output experiences beyond plain text.

Temperature

温度

Temperature is a setting that adjusts the randomness of the next-token probability distribution, changing the balance between creativity and stability. Lower values are more deterministic, higher values more diverse.

Tool Use

ツール利用

Tool use is a setup where a model calls external tools (e.g., search or calculators) and incorporates the results to improve answer accuracy. It is common in practical implementations to reduce hallucinations and mistakes.

6 related articles

Transfer Learning

転移学習

Transfer learning is the idea of reusing knowledge learned from one dataset or task to perform well on another task with less data. It explains why pretrained models can adapt quickly.

Token

トークン

A token is a small unit of text used by models for processing, and it is also used to estimate limits and billing. Understanding tokens is essential for controlling cost and context length.

26 related articles

Token-Based Pricing

トークン課金

Token-based pricing is a pay-as-you-go billing model where fees are determined by the number of input and output tokens. Managing both input and output lengths helps reduce cost.

1 related article

Top-p Sampling (Nucleus Sampling)

トップPサンプリング

Top-p sampling is a decoding method that keeps the smallest set of high-probability tokens whose cumulative probability reaches p, then samples the next token from that set. It helps control diversity without relying only on temperature.

Transformer

トランスフォーマー

A Transformer is a neural network architecture that captures important relationships in text using attention and can be trained efficiently with parallel computation. Knowing its mechanism helps you understand modern LLMs.

Toxicity

有害性

Toxicity is the degree to which content is harmful—such as discrimination, violence, or harassment—and is targeted by safety evaluation and filtering. It is a key metric for content moderation and guardrails.

V

Z

h
hayami

Stay on top of OpenAI, Google & Anthropic updates. An AI digest for business professionals.

Source Policy

We use only official sources. Each article links to the original announcement so you can verify it yourself.

© 2026 hayami. All rights reserved.