Define the data classes using Pydantic, making it possible to configure the chat application and do input validation.
Import statement
from gradiochat.config import*
Some lessons and clarification about the used code
Pydantic vs Dataclasses: Pydantic creates classes similar to Python’s dataclasses but with additional features. The key differences are that Pydantic provides data validation, type coercion, and more robust error handling. It will automatically validate data during initialization and conversion.
Pydantic and typing: Pydantic leverages Python’s standard typing system but adds its own validation on top. It uses Python’s type hints to know what types to validate against.
The “…” placeholder: The ellipsis (…) is a special value in Pydantic that indicates a required field. It means “this field must be provided when creating an instance” - there’s no default value. When you create a ModelConfig instance, you’ll need to provide a value for model_name.
@property usage: The @property decorator creates a getter method that’s accessed like an attribute. In our case, api_key looks like a normal attribute but when accessed, it runs the method to retrieve the value from environment variables. This is a clean way to avoid storing sensitive information in the object itself.
Field from pydantic can be used to add extra information and metadata to inform the reader and/or do data validation.
The configuration for the workings of the LLM chatbot
ModelConfig
First the configuration for the LLM model to use in the ModelConfig.
Then the configuration for the chat implementation. Making sure the application can handle: - system prompt - context if applicable - a start ‘user’ prompt if applicable - user input
The other settings that are available in this class can easily be infered from the description in the ChatAppConfig class itself.
# Eval set to false, because the api key is stored in .env and thus can't be found when# nbdev_test is runtest_config = ChatAppConfig( app_name="Test App", system_prompt="You are a helpful assistant.", model=ModelConfig( model_name="gpt-3.5-turbo", api_key_env_var="TEST_API_KEY", ))print(test_config.model_dump_json(indent=2))print(f"API Key available: {'Yes'if test_config.model.api_key else'No'}")