Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
73 commits
Select commit Hold shift + click to select a range
2cdb896
feat(hosted keys): Implement serper hosted key
Feb 13, 2026
3e6527a
Handle required fields correctly for hosted keys
Feb 13, 2026
e5c8aec
Add rate limiting (3 tries, exponential backoff)
Feb 13, 2026
8a78f80
Add custom pricing, switch to exa as first hosted key
Feb 13, 2026
d174a6a
Add telemetry
Feb 13, 2026
c12e92c
Consolidate byok type definitions
Feb 13, 2026
2a36143
Add warning comment if default calculation is used
Feb 13, 2026
36e6464
Record usage to user stats table
Feb 13, 2026
f237d6f
Fix unit tests, use cost property
Feb 13, 2026
0a002fd
Include more metadata in cost output
Feb 13, 2026
36d49ef
Fix disabled tests
Feb 13, 2026
fbd1cdf
Fix spacing
Feb 14, 2026
dc4c611
Fix lint
Feb 14, 2026
68da290
Move knowledge cost restructuring away from generic block handler
Feb 16, 2026
ce02a30
Migrate knowledge unit tests
Feb 16, 2026
e6d98c6
Lint
Feb 16, 2026
ecdbe29
Fix broken tests
Mar 5, 2026
2325535
Merge branch 'staging' into feat/sim-provided-key
Mar 5, 2026
693a3d3
Add user based hosted key throttling
Mar 5, 2026
242d6e0
Refactor hosted key handling. Add optimistic handling of throttling f…
Mar 5, 2026
7b8e24e
Remove research as hosted key. Recommend BYOK if throtttling occurs
Mar 5, 2026
cd160d3
Make adding api keys adjustable via env vars
Mar 6, 2026
2082bc4
Remove vestigial fields from research
Mar 6, 2026
a90777a
Make billing actor id required for throttling
Mar 6, 2026
d7ea0af
Switch to round robin for api key distribution
Mar 6, 2026
1c5425e
Add helper method for adding hosted key cost
Mar 6, 2026
3832e5c
Strip leading double underscores to avoid breaking change
Mar 6, 2026
34cffdc
Lint fix
Mar 6, 2026
612ea7c
Remove falsy check in favor for explicit null check
Mar 6, 2026
a0fc749
Add more detailed metrics for different throttling types
Mar 6, 2026
5d04ae5
Fix _costDollars field
Mar 6, 2026
8eaf401
Handle hosted agent tool calls
Mar 7, 2026
ee2e123
Fail loudly if cost field isn't found
Mar 7, 2026
09a1b5c
Remove any type
Mar 7, 2026
0836131
Fix type error
Mar 7, 2026
427627a
Fix lint
Mar 7, 2026
d29d613
Fix usage log double logging data
Mar 7, 2026
3e94ce3
Fix test
Mar 7, 2026
1ccaae6
Add browseruse hosted key
Mar 6, 2026
74f0191
Add firecrawl and serper hosted keys
Mar 6, 2026
158d523
feat(hosted key): Add exa hosted key (#3221)
TheodoreSpeaks Mar 7, 2026
8137357
Fail fast on cost data not being found
Mar 7, 2026
b96074c
Add hosted key for google services
Mar 7, 2026
0b6c8a9
Add hosting configuration and pricing logic for ElevenLabs TTS tools
Mar 7, 2026
6c9bd07
Add linkup hosted key
Mar 7, 2026
945f7ea
Add jina hosted key
Mar 7, 2026
ce602ce
Add hugging face hosted key
Mar 7, 2026
ed1a142
Add perplexity hosting
Mar 7, 2026
e07cfe2
Add broader metrics for throttling
Mar 7, 2026
8d18eee
Add skill for adding hosted key
Mar 7, 2026
1ac08e5
Merge branch 'staging' into feat/hosted-key-agent
Mar 7, 2026
d7a124a
Lint, remove vestigial hosted keys not implemented
Mar 7, 2026
2280b47
Revert agent changes
Mar 7, 2026
af9d64a
fail fast
Mar 7, 2026
c1b729f
Fix build issue
Mar 7, 2026
4ee4e98
Fix build issues
Mar 7, 2026
829b8d4
Fix type error
Mar 7, 2026
8829ac3
Remove byok types that aren't implemented
Mar 7, 2026
2cccfdd
Address feedback
Mar 7, 2026
05eccf1
Use default model when model id isn't provided
Mar 7, 2026
4b073a6
Fix cost default issues
Mar 7, 2026
540aa18
Remove firecrawl error suppression
Mar 7, 2026
9f676bc
Restore original behavior for hugging face
Mar 7, 2026
a463ebc
Add mistral hosted key
Mar 9, 2026
824b602
Merge branch 'feat/mothership-copilot' into feat/hosted-key-agent
Mar 10, 2026
2743063
Merge feat/mothership-copilot into feat/hosted-key-agent (prefer ours)
Mar 10, 2026
d5120b0
Remove hugging face hosted key
Mar 10, 2026
594a800
Fix pricing mismatch is mistral and perplexity
Mar 10, 2026
2293153
Add hosted keys for parallel and brand fetch
Mar 10, 2026
32c791b
Add brandfetch hosted key
Mar 10, 2026
1ea8f83
Update types
Mar 10, 2026
87f6070
Change byok name to parallel_ai
Mar 10, 2026
bfa96d8
Add telemetry on unknown models
Mar 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix spacing
  • Loading branch information
Theodore Li committed Feb 14, 2026
commit fbd1cdfbaceee148dced7efac0d7ad11e357bf80
2 changes: 1 addition & 1 deletion apps/sim/lib/core/config/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const isTest = env.NODE_ENV === 'test'
/**
* Is this the hosted version of the application
*/
export const isHosted =
export const isHosted =
getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.sim.ai' ||
getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.staging.sim.ai'

Expand Down
Loading