chutcheson

Results 4 issues of chutcheson

I noticed something that looks like a bug (might be known): 1. I am using Racket 7.3 on Ubuntu 16.04 using Unity 2. I open rash using racket -l 'rash/repl'...

### Bug Description When using a Pandas DataFrame as the actual argument for the formal parameter validation_data in the StructuredDataClassifier, one encounters an error. In particular, one encounters the error...

bug report

Fixed issue where could not use a SequentialChain as the base chain input to a ConstitutionalChain because it required an LLMChain, when any chain should do since it just needs...

Code to create a ConstitutionalChain from an LLM: ``` @classmethod def from_llm( cls, llm: BaseLanguageModel, chain: LLMChain, critique_prompt: BasePromptTemplate = CRITIQUE_PROMPT, revision_prompt: BasePromptTemplate = REVISION_PROMPT, **kwargs: Any, ) -> "ConstitutionalChain":...