Feature: Add custom agents via config (#8245)

This commit is contained in:
Chase
2025-05-08 09:15:15 -07:00
committed by GitHub
parent b06bd277ba
commit c6c94d979b
3 changed files with 33 additions and 0 deletions

View File

@@ -255,6 +255,11 @@ enable_history_truncation = true
# useful when an agent doesn't demand high quality but uses a lot of tokens
llm_config = 'gpt3'
[agent.CustomAgent]
# Example: use a custom agent from a different package
# This will be automatically be registered as a new agent named "CustomAgent"
classpath = "my_package.my_module.MyCustomAgent"
#################################### Sandbox ###################################
# Configuration for the sandbox
##############################################################################