multiple: merge master into v0.3rc branch (#26163)

Signed-off-by: ChengZi <chen.zhang@zilliz.com>
Co-authored-by: Bagatur <baskaryan@gmail.com>
Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com>
Co-authored-by: ZhangShenao <15201440436@163.com>
Co-authored-by: Friso H. Kingma <fhkingma@gmail.com>
Co-authored-by: Chester Curme <chester.curme@gmail.com>
Co-authored-by: ChengZi <chen.zhang@zilliz.com>
This commit is contained in:
Erick Friis
2024-09-06 13:42:29 -07:00
committed by GitHub
parent bccc546a25
commit b664b3364c
15 changed files with 1111 additions and 411 deletions

View File

@@ -1,4 +1,5 @@
"""Unit tests for chat models."""
import os
from abc import abstractmethod
from typing import Any, List, Literal, Optional, Tuple, Type
@@ -78,8 +79,7 @@ def my_adder(a: int, b: int) -> int:
class ChatModelTests(BaseStandardTests):
@property
@abstractmethod
def chat_model_class(self) -> Type[BaseChatModel]:
...
def chat_model_class(self) -> Type[BaseChatModel]: ...
@property
def chat_model_params(self) -> dict: