18d00c04c4
CI / lint (pull_request) Failing after 1m15s
CI / quality (pull_request) Successful in 1m21s
CI / typecheck (pull_request) Successful in 1m34s
CI / security (pull_request) Successful in 1m37s
CI / coverage (pull_request) Has been skipped
CI / unit_tests (pull_request) Failing after 1m37s
CI / docker (pull_request) Has been skipped
CI / build (pull_request) Successful in 33s
CI / helm (pull_request) Successful in 26s
CI / push-validation (pull_request) Successful in 19s
CI / e2e_tests (pull_request) Successful in 3m20s
CI / integration_tests (pull_request) Successful in 4m32s
CI / status-check (pull_request) Failing after 3s
Implements AgentSkillDiscovery class to support discovering Agent Skills from multiple configured directories across three scopes (global, project, local). Handles name collisions with precedence: local > project > global. Adds comprehensive BDD test coverage for multi-scope discovery scenarios including: - Global-only, project-only, and local-only discovery - Combined discovery from all scopes - Name collision resolution with proper precedence - Non-existent and empty scope directory handling - Multiple skills in same scope discovery ISSUES CLOSED: #9369
37 lines
867 B
YAML
37 lines
867 B
YAML
# Basic Reactive Chat Configuration - Actor-First Version
|
|
# Simple conversational agent using actors instead of provider/model
|
|
|
|
agents:
|
|
chat_agent:
|
|
type: llm
|
|
config:
|
|
# Use actor instead of provider/model
|
|
actor: openai/gpt-4
|
|
temperature: 0.8
|
|
system_prompt: |
|
|
You are a helpful and friendly AI assistant.
|
|
Respond naturally and conversationally.
|
|
|
|
# Unified routes section with actor-first approach
|
|
routes:
|
|
# Main chat processing route
|
|
chat_stream:
|
|
type: stream
|
|
stream_type: cold
|
|
operators:
|
|
- type: map
|
|
params:
|
|
agent: chat_agent
|
|
publications:
|
|
- __output__
|
|
|
|
# Simple flow: input -> chat -> output
|
|
merges:
|
|
- sources: [__input__]
|
|
target: chat_stream
|
|
|
|
context:
|
|
global:
|
|
conversation_mode: true
|
|
# Actor-specific context variables
|
|
default_actor: openai/gpt-4 |