chainlite icon indicating copy to clipboard operation
chainlite copied to clipboard

LangChain + LiteLLM that works

Results 3 chainlite issues
Sort by recently updated
recently updated
newest added

I have code that looks like this: ``` import os from chainlite import llm_generation_chain, load_config_from_file current_dir = os.path.dirname(os.path.realpath(__file__)) load_config_from_file(os.path.join(current_dir, "llm_config.yaml")) ``` When I run it I get the following error:...

bug

I have multiple agents, and all of them have some agent-specific prompts. The prompts are present inside an agent-specific dir. Like this: ``` - agent_1/ - some_file.py - prompts/ -...

enhancement