mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
* incorporate #1683 * add in --version flag to cli. closes #1679. * Fix env issue * Add in suggestions from @caike to make sure ragstorage doesnt exceed os file limit. Also, included additional checks to support windows. * remove poetry.lock as pointed out by @sanders41 in #1574. * Incorporate feedback from crewai reviewer * Incorporate @lorenzejay feedback
7 lines
204 B
Python
7 lines
204 B
Python
TRAINING_DATA_FILE = "training_data.pkl"
|
|
TRAINED_AGENTS_DATA_FILE = "trained_agents_data.pkl"
|
|
DEFAULT_SCORE_THRESHOLD = 0.35
|
|
KNOWLEDGE_DIRECTORY = "knowledge"
|
|
MAX_LLM_RETRY = 3
|
|
MAX_FILE_NAME_LENGTH = 255
|