## Guess `projects.configs.guess(**kwargs) -> ConfigGuessResponse` **post** `/v0/projects/{project}/configs/guess` Generate suggestions for changes to config files based on an OpenAPI spec. ### Parameters - `project: String` - `spec: String` OpenAPI spec - `branch: String` Branch name ### 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" ) response = stainless.projects.configs.guess(project: "project", spec: "spec") puts(response) ```