Skip to content

Commit

Permalink
make pricing optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Cecere committed Nov 24, 2024
1 parent 2ba3e56 commit 953fc63
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions litellm/resource_model.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,32 +65,26 @@ func resourceLiteLLMModel() *schema.Resource {
"input_cost_per_million_tokens": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"output_cost_per_million_tokens": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"input_cost_per_pixel": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"output_cost_per_pixel": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"input_cost_per_second": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"output_cost_per_second": {
Type: schema.TypeFloat,
Optional: true,
Default: 0.0,
},
"aws_access_key_id": {
Type: schema.TypeString,
Expand Down

0 comments on commit 953fc63

Please sign in to comment.