feat: adding snowflake provider and template

This commit is contained in:
alejandro 2024-10-31 19:13:00 -04:00
parent 59d856363e
commit ecb395c751
5 changed files with 92 additions and 22 deletions

View file

@ -11,11 +11,11 @@ from pydantic import BaseModel, Field
@json_schema_type
class SnowflakeImplConfig(BaseModel):
url: str = Field(
account: str = Field(
default=None,
description="The URL for the Snowflake Cortex model serving endpoint",
description="The Snowflake Account ID for the Snowflake Cortex model serving endpoint",
)
api_token: str = Field(
api_key: str = Field(
default=None,
description="The Snowflake Cortex API token",
)