mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
7762c43863
Restores #5151 (north-star + batch 1 + crewai-flows + llamaindex), #5196 (pydantic-ai), #5205 (a2a-middleware), #5211 (mcp-apps), reconciled onto the current main baseline rather than the pre-revert tree: - keep main's 1.59.3 pins, AGENT_URL normalization, default agent keys, useConfigureSuggestions, available:false, useRenderTool status/parameters API, call-time agent.state reads, and crewai-crews' rebuilt page (not yet threads-migrated) - graft the threads layer (drawer/gate/provider, env-gated route intelligence block, next.config gate, env docs, drawer deps) on top - drop threads-era sidebar suggestions props where main now registers suggestions via useConfigureSuggestions (or omits them) - fix the stale pydantic-ai doc link main reintroduced in ms-af-dotnet Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
# ========================================
|
|
# API Keys (REQUIRED)
|
|
# ========================================
|
|
|
|
# Google API Key (for ADK agents: Orchestrator, Analysis)
|
|
# Get your key from: https://aistudio.google.com/app/apikey
|
|
GOOGLE_API_KEY=your_google_api_key_here
|
|
|
|
# OpenAI API Key (for LangGraph agents: Research)
|
|
# Get your key from: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
|
|
|
|
# ========================================
|
|
# Agent URLs (Frontend → Agents)
|
|
# Optional - these are the defaults
|
|
# ========================================
|
|
|
|
# Orchestrator (ADK + AG-UI Protocol)
|
|
ORCHESTRATOR_URL=http://localhost:9000
|
|
|
|
# Research Agent (LangGraph + A2A Protocol)
|
|
RESEARCH_AGENT_URL=http://localhost:9001
|
|
|
|
# Analysis Agent (ADK + A2A Protocol)
|
|
ANALYSIS_AGENT_URL=http://localhost:9002
|
|
|
|
|
|
# ========================================
|
|
# Agent Ports (Python Agents)
|
|
# Optional - used by Python agents to bind to specific ports
|
|
# ========================================
|
|
|
|
# Orchestrator
|
|
ORCHESTRATOR_PORT=9000
|
|
|
|
# Research Agent
|
|
RESEARCH_PORT=9001
|
|
|
|
# Analysis Agent
|
|
ANALYSIS_PORT=9002
|
|
|
|
|
|
# ========================================
|
|
# CopilotKit Intelligence Threads (Optional)
|
|
# ========================================
|
|
|
|
# COPILOTKIT_LICENSE_TOKEN=
|
|
# INTELLIGENCE_API_KEY=
|
|
# INTELLIGENCE_API_URL=http://localhost:4201
|
|
# INTELLIGENCE_GATEWAY_WS_URL=ws://localhost:4401
|