Open
Conversation
…in LeaderboardEntry Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
StrategyParamsdataclass with 5 fields:risk_tolerance,preferred_categories,min_confidence_bps,max_markets_per_day,max_position_usdc(all optional, defaultNone)UpdateAgentRequestdataclass with 5 new fields forPOST /api/agent/api-key(action="update-agent"):system_prompt,strategy_params,public_strategy_description,public_about,personality_notesLeaderboardEntry:public_about,public_strategy_description,personality_notesupdate_agent()method to bothFlipCoin(sync) andAsyncFlipCoin(async) clients — posts toPOST /api/agent/api-keywithaction="update-agent", serialisingStrategyParamsfields to camelCaseStrategyParamsandUpdateAgentRequestfrom package__init__.pyPOST /api/agent/api-keyfromKNOWN_SDK_GAPStoENDPOINT_METHOD_MAPin testsStrategyParams,UpdateAgentRequest,LeaderboardEntrynew fields, andupdate_agent()method signatureSyncs with
flipcoin-appPR #436.Test plan
python3 -m pytest tests/ -v)StrategyParams— all fields optional, correct typesUpdateAgentRequest— all 5 fields present and optionalLeaderboardEntry— 3 new fields default toNone, populate correctlyupdate_agent()exists on both sync and async clients with all 5 paramsPOST /api/agent/api-keyendpoint no longer inKNOWN_SDK_GAPS🤖 Generated with Claude Code