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
Consistency and Handling Issues with Environment Variable Values
The values are either 0 or 1, or false or true.
The values of environment variables are treated as strings, but in the code, they are used as if they were booleans. For example, LLM_SUMMARIZATION=true is actually input as "true", but code like if (!env.LLM_SUMMARIZATION) is used.
The text was updated successfully, but these errors were encountered:
calycekr
changed the title
Consistency and Handling Issues with Environment Variable Values
Consistency and Handling Issues with Environment Variable Values in .env
Jul 31, 2024
calycekr
changed the title
Consistency and Handling Issues with Environment Variable Values in .env
Consistency and Handling Issues with Environment Variable Values (.env)
Jul 31, 2024
Consistency and Handling Issues with Environment Variable Values
The values are either 0 or 1, or false or true.
The values of environment variables are treated as strings, but in the code, they are used as if they were booleans. For example, LLM_SUMMARIZATION=true is actually input as "true", but code like if (!env.LLM_SUMMARIZATION) is used.
The text was updated successfully, but these errors were encountered: