## Retrieve `projects.configs.retrieve(**kwargs) -> ConfigRetrieveResponse` **get** `/v0/projects/{project}/configs` Retrieve the configuration files for a given project. ### Parameters - `project: String` - `branch: String` Branch name, defaults to "main". - `include: String` ### Returns - `Hash[Symbol, { content}]` Config files contents - `content: String` The file content ### Example ```ruby require "stainless_v0" stainless = StainlessV0::Client.new( api_key: "My API Key", environment: "staging" # defaults to "production" ) config = stainless.projects.configs.retrieve(project: "project") puts(config) ```