Silence_L

Results 5 comments of Silence_L

这个字段是clickhouse的时间分区字段,clickhouse建表是必须有时间分区字段的。如下建表语句:CREATE TABLE realtime.login_info_local ( id Int64, name String, login_type Int8, partition_date Date) ENGINE = ReplacingMergeTree(partition_date, id, 8192)

clickhouse新版确实时间分区字段不是必须的,这可能需要做新版的兼容

能描述的在详细一下么

可以加我微信 L673183000

I also have the same issue. In ragas-0.1.6, the kwargs.get syntax used within ragas.integrations.langchain.EvaluatorChain should initialize the OpenAI API key as OPENAI_API_KEY. Code: class EvaluatorChain(Chain, RunEvaluator): metric: Metric def __init__(self,...