mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-25 17:42:25 +01:00
- Renamed 'Key' fields to 'Type' in various models for consistency across the codebase. - Updated route naming in router.go for clarity in the context of settings. - Introduced a new LlmProviderForm component for managing LLM provider configurations. - Refactored AssistantConsole and related components to utilize providerId instead of provider for improved state management. - Enhanced UI elements and translations to reflect the new naming conventions and improve user experience.
9 lines
238 B
Go
9 lines
238 B
Go
package models
|
|
|
|
type Environment struct {
|
|
any `collection:"environments"`
|
|
BaseModel `bson:",inline"`
|
|
Key string `json:"key" bson:"key" description:"Type"`
|
|
Value string `json:"value" bson:"value" description:"Value"`
|
|
}
|