You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to use wildcard (*) in the llm_config.yaml like this:
prompt_dirs: # List of directories containing prompt files, relative to the location of this file
- "./my_lib/prompts/"
- "./tests/"
- "./my_lib/agents/*/prompts/"
This could be implemented modifying L85 in llm_config.py using glob()
The text was updated successfully, but these errors were encountered:
I have multiple agents, and all of them have some agent-specific prompts. The prompts are present inside an agent-specific dir. Like this:
It would be nice to be able to use wildcard (*) in the
llm_config.yaml
like this:This could be implemented modifying L85 in
llm_config.py
usingglob()
The text was updated successfully, but these errors were encountered: