Fix info panel overflow (#33)

* update chatbot placeholder

* fix chat info panel overflow bug

* set azure_endpoint to required in AzureChatOpenAI

* update screenshots
This commit is contained in:
ian_Cin
2024-04-14 09:34:14 +07:00
committed by GitHub
parent 8985963e1e
commit 5286ff48bc
8 changed files with 9 additions and 5 deletions

View File

@@ -299,7 +299,8 @@ class AzureChatOpenAI(BaseChatOpenAI):
"HTTPS endpoint for the Azure OpenAI model. The azure_endpoint, "
"azure_deployment, and api_version parameters are used to construct "
"the full URL for the Azure OpenAI model."
)
),
require=True,
)
azure_deployment: str = Param(help="Azure deployment name", required=True)
api_version: str = Param(help="Azure model version", required=True)