Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

utils.go 556 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1. // Package pkg1 provides configuration and utility functions for the OpenAI API client.
  2. package pkg1
  3. // GetDefaultReasoningEffort returns the default reasoning effort setting for the API.
  4. // Valid values are "low", "medium", or "high", controlling how much effort the model
  5. // spends on reasoning through the problem.
  6. func GetDefaultReasoningEffort() string {
  7. return "medium"
  8. }
  9. // GetModel returns the model identifier to use for API calls.
  10. // Currently uses o3-mini, which is optimized for reasoning tasks.
  11. func GetModel() string {
  12. return "o3-mini"
  13. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...