Description
Currently, several classes in the codebase containing the acronym "LLM" (and potentially others) use mixed-case naming (e.g., LlmAgent or LiteLlm).
According to the PEP 8 style guide:
"When using acronyms in CapWords, capitalize all the letters of the acronym. Thus HTTPServerError is better than HttpServerError."
To ensure the library remains idiomatic and consistent with Python best practices, these classes should be renamed to use full capitalization for the acronyms.
Adhering to this standard improves readability for Python developers and ensures that search/replace operations for "LLM" are consistent across the repository.
Description
Currently, several classes in the codebase containing the acronym "LLM" (and potentially others) use mixed-case naming (e.g., LlmAgent or LiteLlm).
According to the PEP 8 style guide:
"When using acronyms in CapWords, capitalize all the letters of the acronym. Thus HTTPServerError is better than HttpServerError."
To ensure the library remains idiomatic and consistent with Python best practices, these classes should be renamed to use full capitalization for the acronyms.
Adhering to this standard improves readability for Python developers and ensures that search/replace operations for "LLM" are consistent across the repository.