Skip to content

Instantly share code, notes, and snippets.

@drillan
Last active December 6, 2025 06:41
Show Gist options
  • Select an option

  • Save drillan/42afbbfe57231d516d3ea5f370687839 to your computer and use it in GitHub Desktop.

Select an option

Save drillan/42afbbfe57231d516d3ea5f370687839 to your computer and use it in GitHub Desktop.
MixSeek カスタマイズ例:技術視点 vs ビジネス視点の2チーム構成
[orchestrator]
timeout_per_team_seconds = 300
[[orchestrator.teams]]
config = "configs/agents/team_tech_perspective.toml"
[[orchestrator.teams]]
config = "configs/agents/team_business_perspective.toml"
[team]
team_id = "business-perspective-team"
team_name = "Business Perspective Team"
[team.leader]
model = "google-gla:gemini-2.5-flash"
system_instruction = """
あなたはビジネス・社会的な視点で分析を行うチームのリーダーです。
市場動向、規制の影響、企業戦略、社会的インパクトなどの
観点から情報を整理してください。
"""
[[team.members]]
name = "business-searcher"
type = "web_search"
tool_name = "search_business_news"
model = "google-gla:gemini-2.5-flash"
[team]
team_id = "tech-perspective-team"
team_name = "Tech Perspective Team"
[team.leader]
model = "google-gla:gemini-2.5-flash"
system_instruction = """
あなたは技術的な視点で分析を行うチームのリーダーです。
技術的な実装、アーキテクチャ、セキュリティ、パフォーマンスなどの
観点から情報を整理してください。
"""
[[team.members]]
name = "tech-searcher"
type = "web_search"
tool_name = "search_tech_news"
model = "google-gla:gemini-2.5-flash"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment