mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-02 05:45:47 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.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: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
import os
|
|
from typing import cast
|
|
|
|
import pytest
|
|
from pydantic import SecretStr
|
|
|
|
from langchain_community.embeddings import SparkLLMTextEmbeddings
|
|
|
|
|
|
def test_sparkllm_initialization_by_alias() -> None:
|
|
# Effective initialization
|
|
embeddings = SparkLLMTextEmbeddings(
|
|
app_id="your-app-id", # type: ignore[arg-type]
|
|
api_key="your-api-key", # type: ignore[arg-type]
|
|
api_secret="your-api-secret", # type: ignore[arg-type]
|
|
)
|
|
assert cast(SecretStr, embeddings.spark_app_id).get_secret_value() == "your-app-id"
|
|
assert (
|
|
cast(SecretStr, embeddings.spark_api_key).get_secret_value() == "your-api-key"
|
|
)
|
|
assert (
|
|
cast(SecretStr, embeddings.spark_api_secret).get_secret_value()
|
|
== "your-api-secret"
|
|
)
|
|
|
|
|
|
def test_initialization_parameters_from_env() -> None:
|
|
# Setting environment variable
|
|
os.environ["SPARK_APP_ID"] = "your-app-id"
|
|
os.environ["SPARK_API_KEY"] = "your-api-key"
|
|
os.environ["SPARK_API_SECRET"] = "your-api-secret"
|
|
|
|
# Effective initialization
|
|
embeddings = SparkLLMTextEmbeddings()
|
|
assert cast(SecretStr, embeddings.spark_app_id).get_secret_value() == "your-app-id"
|
|
assert (
|
|
cast(SecretStr, embeddings.spark_api_key).get_secret_value() == "your-api-key"
|
|
)
|
|
assert (
|
|
cast(SecretStr, embeddings.spark_api_secret).get_secret_value()
|
|
== "your-api-secret"
|
|
)
|
|
|
|
# Environment variable missing
|
|
del os.environ["SPARK_APP_ID"]
|
|
with pytest.raises(ValueError):
|
|
SparkLLMTextEmbeddings()
|