index.html 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../tips/">
  7. <link rel="next" href="../../usage/">
  8. <link rel="icon" href="../../assets/images/favicon.png">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.40">
  10. <title>Changelog - SWE-agent documentation</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.8c3ca2c6.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <link rel="stylesheet" href="../../assets/_mkdocstrings.css">
  17. <link rel="stylesheet" href="../../assets/custom.css">
  18. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  19. <link href="../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
  20. html.glightbox-open { overflow: initial; height: 100%; }
  21. .gslide-title { margin-top: 0px; user-select: text; }
  22. .gslide-desc { color: #666; user-select: text; }
  23. .gslide-image img { background: white; }
  24. .gscrollbar-fixer { padding-right: 15px; }
  25. .gdesc-inner { font-size: 0.75rem; }
  26. body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
  27. body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
  28. body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../assets/javascripts/glightbox.min.js"></script></head>
  29. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  30. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  31. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  32. <label class="md-overlay" for="__drawer"></label>
  33. <div data-md-component="skip">
  34. <a href="#changelog" class="md-skip">
  35. Skip to content
  36. </a>
  37. </div>
  38. <div data-md-component="announce">
  39. <aside class="md-banner">
  40. <div class="md-banner__inner md-grid md-typeset">
  41. <button class="md-banner__button md-icon" aria-label="Don't show this again">
  42. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  43. </button>
  44. <!-- This link won't work in local preview -->
  45. <a href="SWE-agent/background#enigma" class="clickable-banner">
  46. <div>
  47. News: SWE-agent <span class="enigma">EniGMA</span> solves cybersecurity and CTF challanges to achieve <span class="enigma">3x improvement over previous SOTA!</span>
  48. </div>
  49. </a>
  50. </div>
  51. <script>var el=document.querySelector("[data-md-component=announce]");if(el){var content=el.querySelector(".md-typeset");__md_hash(content.innerHTML)===__md_get("__announce")&&(el.hidden=!0)}</script>
  52. </aside>
  53. </div>
  54. <header class="md-header md-header--shadow" data-md-component="header">
  55. <nav class="md-header__inner md-grid" aria-label="Header">
  56. <a href="../.." title="SWE-agent documentation" class="md-header__button md-logo" aria-label="SWE-agent documentation" data-md-component="logo">
  57. <img src="../../assets/swe-agent.svg" alt="logo">
  58. </a>
  59. <label class="md-header__button md-icon" for="__drawer">
  60. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  61. </label>
  62. <div class="md-header__title" data-md-component="header-title">
  63. <div class="md-header__ellipsis">
  64. <div class="md-header__topic">
  65. <span class="md-ellipsis">
  66. SWE-agent documentation
  67. </span>
  68. </div>
  69. <div class="md-header__topic" data-md-component="header-topic">
  70. <span class="md-ellipsis">
  71. Changelog
  72. </span>
  73. </div>
  74. </div>
  75. </div>
  76. <form class="md-header__option" data-md-component="palette">
  77. <input class="md-option" data-md-color-media="(prefers-color-scheme)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_0">
  78. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_1" hidden>
  79. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.3 16-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12zm-9.15 3.96h2.3L12 9z"/></svg>
  80. </label>
  81. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="black" data-md-color-accent="deep-orange" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_1">
  82. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_2" hidden>
  83. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 4.09-2.53 1.94.91 3.06-2.63-1.81-2.63 1.81.91-3.06-2.53-1.94L12.44 4l1.06-3 1.06 3zm3.5 6.91-1.64 1.25.59 1.98-1.7-1.17-1.7 1.17.59-1.98L15.75 11l2.06-.05L18.5 9l.69 1.95zm-2.28 4.95c.83-.08 1.72 1.1 1.19 1.85-.32.45-.66.87-1.08 1.27C15.17 23 8.84 23 4.94 19.07c-3.91-3.9-3.91-10.24 0-14.14.4-.4.82-.76 1.27-1.08.75-.53 1.93.36 1.85 1.19-.27 2.86.69 5.83 2.89 8.02a9.96 9.96 0 0 0 8.02 2.89m-1.64 2.02a12.08 12.08 0 0 1-7.8-3.47c-2.17-2.19-3.33-5-3.49-7.82-2.81 3.14-2.7 7.96.31 10.98 3.02 3.01 7.84 3.12 10.98.31"/></svg>
  84. </label>
  85. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="black" data-md-color-accent="deep-orange" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_2">
  86. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  87. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0-7 2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM20.65 7l-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zm-.01 10-4.14.36c.59-.51 1.12-1.14 1.54-1.86.42-.73.69-1.5.83-2.29zM12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44z"/></svg>
  88. </label>
  89. </form>
  90. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  91. <label class="md-header__button md-icon" for="__search">
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  93. </label>
  94. <div class="md-search" data-md-component="search" role="dialog">
  95. <label class="md-search__overlay" for="__search"></label>
  96. <div class="md-search__inner" role="search">
  97. <form class="md-search__form" name="search">
  98. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  99. <label class="md-search__icon md-icon" for="__search">
  100. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  101. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  102. </label>
  103. <nav class="md-search__options" aria-label="Search">
  104. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  106. </button>
  107. </nav>
  108. </form>
  109. <div class="md-search__output">
  110. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  111. <div class="md-search-result" data-md-component="search-result">
  112. <div class="md-search-result__meta">
  113. Initializing search
  114. </div>
  115. <ol class="md-search-result__list" role="presentation"></ol>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. <div class="md-header__source">
  122. <a href="https://github.com/princeton-nlp/SWE-agent" title="Go to repository" class="md-source" data-md-component="source">
  123. <div class="md-source__icon md-icon">
  124. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
  125. </div>
  126. <div class="md-source__repository">
  127. princeton-nlp/SWE-agent
  128. </div>
  129. </a>
  130. </div>
  131. </nav>
  132. </header>
  133. <div class="md-container" data-md-component="container">
  134. <main class="md-main" data-md-component="main">
  135. <div class="md-main__inner md-grid">
  136. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  137. <div class="md-sidebar__scrollwrap">
  138. <div class="md-sidebar__inner">
  139. <nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0">
  140. <label class="md-nav__title" for="__drawer">
  141. <a href="../.." title="SWE-agent documentation" class="md-nav__button md-logo" aria-label="SWE-agent documentation" data-md-component="logo">
  142. <img src="../../assets/swe-agent.svg" alt="logo">
  143. </a>
  144. SWE-agent documentation
  145. </label>
  146. <div class="md-nav__source">
  147. <a href="https://github.com/princeton-nlp/SWE-agent" title="Go to repository" class="md-source" data-md-component="source">
  148. <div class="md-source__icon md-icon">
  149. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
  150. </div>
  151. <div class="md-source__repository">
  152. princeton-nlp/SWE-agent
  153. </div>
  154. </a>
  155. </div>
  156. <ul class="md-nav__list" data-md-scrollfix>
  157. <li class="md-nav__item">
  158. <a href="../.." class="md-nav__link">
  159. <span class="md-ellipsis">
  160. Home
  161. </span>
  162. </a>
  163. </li>
  164. <li class="md-nav__item md-nav__item--nested">
  165. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
  166. <div class="md-nav__link md-nav__container">
  167. <a href="../../background/" class="md-nav__link ">
  168. <span class="md-ellipsis">
  169. Project Overview
  170. </span>
  171. </a>
  172. <label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
  173. <span class="md-nav__icon md-icon"></span>
  174. </label>
  175. </div>
  176. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  177. <label class="md-nav__title" for="__nav_2">
  178. <span class="md-nav__icon md-icon"></span>
  179. Project Overview
  180. </label>
  181. <ul class="md-nav__list" data-md-scrollfix>
  182. <li class="md-nav__item">
  183. <a href="../../background/aci/" class="md-nav__link">
  184. <span class="md-ellipsis">
  185. Agent-Computer Interface
  186. </span>
  187. </a>
  188. </li>
  189. <li class="md-nav__item">
  190. <a href="../../background/iat/" class="md-nav__link">
  191. <span class="md-ellipsis">
  192. Interactive Agent Tools
  193. </span>
  194. </a>
  195. </li>
  196. <li class="md-nav__item">
  197. <a href="../../background/architecture/" class="md-nav__link">
  198. <span class="md-ellipsis">
  199. Architecture
  200. </span>
  201. </a>
  202. </li>
  203. </ul>
  204. </nav>
  205. </li>
  206. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  207. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" checked>
  208. <div class="md-nav__link md-nav__container">
  209. <a href="../" class="md-nav__link ">
  210. <span class="md-ellipsis">
  211. Installation
  212. </span>
  213. </a>
  214. <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
  215. <span class="md-nav__icon md-icon"></span>
  216. </label>
  217. </div>
  218. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="true">
  219. <label class="md-nav__title" for="__nav_3">
  220. <span class="md-nav__icon md-icon"></span>
  221. Installation
  222. </label>
  223. <ul class="md-nav__list" data-md-scrollfix>
  224. <li class="md-nav__item">
  225. <a href="../codespaces/" class="md-nav__link">
  226. <span class="md-ellipsis">
  227. Use in-browser
  228. </span>
  229. </a>
  230. </li>
  231. <li class="md-nav__item">
  232. <a href="../source/" class="md-nav__link">
  233. <span class="md-ellipsis">
  234. Install from source
  235. </span>
  236. </a>
  237. </li>
  238. <li class="md-nav__item">
  239. <a href="../docker/" class="md-nav__link">
  240. <span class="md-ellipsis">
  241. Run with docker
  242. </span>
  243. </a>
  244. </li>
  245. <li class="md-nav__item">
  246. <a href="../keys/" class="md-nav__link">
  247. <span class="md-ellipsis">
  248. API keys
  249. </span>
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../tips/" class="md-nav__link">
  254. <span class="md-ellipsis">
  255. Installation tips
  256. </span>
  257. </a>
  258. </li>
  259. <li class="md-nav__item md-nav__item--active">
  260. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  261. <label class="md-nav__link md-nav__link--active" for="__toc">
  262. <span class="md-ellipsis">
  263. Changelog
  264. </span>
  265. <span class="md-nav__icon md-icon"></span>
  266. </label>
  267. <a href="./" class="md-nav__link md-nav__link--active">
  268. <span class="md-ellipsis">
  269. Changelog
  270. </span>
  271. </a>
  272. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  273. <label class="md-nav__title" for="__toc">
  274. <span class="md-nav__icon md-icon"></span>
  275. Table of contents
  276. </label>
  277. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  278. <li class="md-nav__item">
  279. <a href="#070-2024-09-23" class="md-nav__link">
  280. <span class="md-ellipsis">
  281. 0.7.0 (2024-09-23)
  282. </span>
  283. </a>
  284. <nav class="md-nav" aria-label="0.7.0 (2024-09-23)">
  285. <ul class="md-nav__list">
  286. <li class="md-nav__item">
  287. <a href="#added" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. Added
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="#fixes" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. Fixes
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="#new-contributors" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. New Contributors
  304. </span>
  305. </a>
  306. </li>
  307. </ul>
  308. </nav>
  309. </li>
  310. <li class="md-nav__item">
  311. <a href="#061-2024-06-20" class="md-nav__link">
  312. <span class="md-ellipsis">
  313. 0.6.1 (2024-06-20)
  314. </span>
  315. </a>
  316. <nav class="md-nav" aria-label="0.6.1 (2024-06-20)">
  317. <ul class="md-nav__list">
  318. <li class="md-nav__item">
  319. <a href="#breaking-changes" class="md-nav__link">
  320. <span class="md-ellipsis">
  321. Breaking changes
  322. </span>
  323. </a>
  324. </li>
  325. <li class="md-nav__item">
  326. <a href="#improved" class="md-nav__link">
  327. <span class="md-ellipsis">
  328. Improved
  329. </span>
  330. </a>
  331. </li>
  332. <li class="md-nav__item">
  333. <a href="#fixed" class="md-nav__link">
  334. <span class="md-ellipsis">
  335. Fixed
  336. </span>
  337. </a>
  338. </li>
  339. </ul>
  340. </nav>
  341. </li>
  342. <li class="md-nav__item">
  343. <a href="#060-2024-06-05" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. 0.6.0 (2024-06-05)
  346. </span>
  347. </a>
  348. <nav class="md-nav" aria-label="0.6.0 (2024-06-05)">
  349. <ul class="md-nav__list">
  350. <li class="md-nav__item">
  351. <a href="#improved_1" class="md-nav__link">
  352. <span class="md-ellipsis">
  353. Improved
  354. </span>
  355. </a>
  356. </li>
  357. <li class="md-nav__item">
  358. <a href="#fixed_1" class="md-nav__link">
  359. <span class="md-ellipsis">
  360. Fixed
  361. </span>
  362. </a>
  363. </li>
  364. </ul>
  365. </nav>
  366. </li>
  367. <li class="md-nav__item">
  368. <a href="#050-2024-05-28" class="md-nav__link">
  369. <span class="md-ellipsis">
  370. 0.5.0 (2024-05-28)
  371. </span>
  372. </a>
  373. <nav class="md-nav" aria-label="0.5.0 (2024-05-28)">
  374. <ul class="md-nav__list">
  375. <li class="md-nav__item">
  376. <a href="#breaking-changes_1" class="md-nav__link">
  377. <span class="md-ellipsis">
  378. Breaking changes
  379. </span>
  380. </a>
  381. </li>
  382. <li class="md-nav__item">
  383. <a href="#added_1" class="md-nav__link">
  384. <span class="md-ellipsis">
  385. Added
  386. </span>
  387. </a>
  388. </li>
  389. <li class="md-nav__item">
  390. <a href="#improved_2" class="md-nav__link">
  391. <span class="md-ellipsis">
  392. Improved
  393. </span>
  394. </a>
  395. </li>
  396. <li class="md-nav__item">
  397. <a href="#fixed_2" class="md-nav__link">
  398. <span class="md-ellipsis">
  399. Fixed
  400. </span>
  401. </a>
  402. </li>
  403. </ul>
  404. </nav>
  405. </li>
  406. <li class="md-nav__item">
  407. <a href="#040-2024-05-09" class="md-nav__link">
  408. <span class="md-ellipsis">
  409. 0.4.0 (2024-05-09)
  410. </span>
  411. </a>
  412. <nav class="md-nav" aria-label="0.4.0 (2024-05-09)">
  413. <ul class="md-nav__list">
  414. <li class="md-nav__item">
  415. <a href="#added_2" class="md-nav__link">
  416. <span class="md-ellipsis">
  417. Added
  418. </span>
  419. </a>
  420. </li>
  421. </ul>
  422. </nav>
  423. </li>
  424. <li class="md-nav__item">
  425. <a href="#030-2024-05-02" class="md-nav__link">
  426. <span class="md-ellipsis">
  427. 0.3.0 (2024-05-02)
  428. </span>
  429. </a>
  430. <nav class="md-nav" aria-label="0.3.0 (2024-05-02)">
  431. <ul class="md-nav__list">
  432. <li class="md-nav__item">
  433. <a href="#added_3" class="md-nav__link">
  434. <span class="md-ellipsis">
  435. Added
  436. </span>
  437. </a>
  438. </li>
  439. <li class="md-nav__item">
  440. <a href="#fixed_3" class="md-nav__link">
  441. <span class="md-ellipsis">
  442. Fixed
  443. </span>
  444. </a>
  445. </li>
  446. </ul>
  447. </nav>
  448. </li>
  449. <li class="md-nav__item">
  450. <a href="#020-2024-04-15" class="md-nav__link">
  451. <span class="md-ellipsis">
  452. 0.2.0 (2024-04-15)
  453. </span>
  454. </a>
  455. <nav class="md-nav" aria-label="0.2.0 (2024-04-15)">
  456. <ul class="md-nav__list">
  457. <li class="md-nav__item">
  458. <a href="#added_4" class="md-nav__link">
  459. <span class="md-ellipsis">
  460. Added
  461. </span>
  462. </a>
  463. </li>
  464. <li class="md-nav__item">
  465. <a href="#improved_3" class="md-nav__link">
  466. <span class="md-ellipsis">
  467. Improved
  468. </span>
  469. </a>
  470. </li>
  471. <li class="md-nav__item">
  472. <a href="#fixed_4" class="md-nav__link">
  473. <span class="md-ellipsis">
  474. Fixed
  475. </span>
  476. </a>
  477. </li>
  478. </ul>
  479. </nav>
  480. </li>
  481. </ul>
  482. </nav>
  483. </li>
  484. </ul>
  485. </nav>
  486. </li>
  487. <li class="md-nav__item md-nav__item--nested">
  488. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
  489. <div class="md-nav__link md-nav__container">
  490. <a href="../../usage/" class="md-nav__link ">
  491. <span class="md-ellipsis">
  492. Usage
  493. </span>
  494. </a>
  495. <label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
  496. <span class="md-nav__icon md-icon"></span>
  497. </label>
  498. </div>
  499. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  500. <label class="md-nav__title" for="__nav_4">
  501. <span class="md-nav__icon md-icon"></span>
  502. Usage
  503. </label>
  504. <ul class="md-nav__list" data-md-scrollfix>
  505. <li class="md-nav__item">
  506. <a href="../../usage/cl_tutorial/" class="md-nav__link">
  507. <span class="md-ellipsis">
  508. Command line usage
  509. </span>
  510. </a>
  511. </li>
  512. <li class="md-nav__item">
  513. <a href="../../usage/enigma/" class="md-nav__link">
  514. <span class="md-ellipsis">
  515. EnIGMA usage
  516. </span>
  517. </a>
  518. </li>
  519. <li class="md-nav__item">
  520. <a href="../../usage/coding_challenges/" class="md-nav__link">
  521. <span class="md-ellipsis">
  522. Solving coding challenges
  523. </span>
  524. </a>
  525. </li>
  526. <li class="md-nav__item">
  527. <a href="../../usage/web_ui/" class="md-nav__link">
  528. <span class="md-ellipsis">
  529. Using the web UI
  530. </span>
  531. </a>
  532. </li>
  533. <li class="md-nav__item">
  534. <a href="../../usage/trajectories/" class="md-nav__link">
  535. <span class="md-ellipsis">
  536. Trajectories
  537. </span>
  538. </a>
  539. </li>
  540. <li class="md-nav__item">
  541. <a href="../../usage/inspector/" class="md-nav__link">
  542. <span class="md-ellipsis">
  543. Trajectory inspector
  544. </span>
  545. </a>
  546. </li>
  547. <li class="md-nav__item">
  548. <a href="../../usage/usage_faq/" class="md-nav__link">
  549. <span class="md-ellipsis">
  550. FAQ
  551. </span>
  552. </a>
  553. </li>
  554. <li class="md-nav__item">
  555. <a href="../../usage/benchmarking/" class="md-nav__link">
  556. <span class="md-ellipsis">
  557. Benchmarking
  558. </span>
  559. </a>
  560. </li>
  561. </ul>
  562. </nav>
  563. </li>
  564. <li class="md-nav__item md-nav__item--nested">
  565. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
  566. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  567. <span class="md-ellipsis">
  568. Configuration
  569. </span>
  570. <span class="md-nav__icon md-icon"></span>
  571. </label>
  572. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  573. <label class="md-nav__title" for="__nav_5">
  574. <span class="md-nav__icon md-icon"></span>
  575. Configuration
  576. </label>
  577. <ul class="md-nav__list" data-md-scrollfix>
  578. <li class="md-nav__item">
  579. <a href="../../config/config/" class="md-nav__link">
  580. <span class="md-ellipsis">
  581. Config files
  582. </span>
  583. </a>
  584. </li>
  585. <li class="md-nav__item">
  586. <a href="../../config/commands/" class="md-nav__link">
  587. <span class="md-ellipsis">
  588. Command definitions
  589. </span>
  590. </a>
  591. </li>
  592. <li class="md-nav__item">
  593. <a href="../../config/demonstrations/" class="md-nav__link">
  594. <span class="md-ellipsis">
  595. Demonstrations
  596. </span>
  597. </a>
  598. </li>
  599. <li class="md-nav__item">
  600. <a href="../../config/env/" class="md-nav__link">
  601. <span class="md-ellipsis">
  602. Environment variables
  603. </span>
  604. </a>
  605. </li>
  606. <li class="md-nav__item">
  607. <a href="../../config/docker/" class="md-nav__link">
  608. <span class="md-ellipsis">
  609. Docker images
  610. </span>
  611. </a>
  612. </li>
  613. <li class="md-nav__item">
  614. <a href="../../config/summarizers/" class="md-nav__link">
  615. <span class="md-ellipsis">
  616. Summarizers
  617. </span>
  618. </a>
  619. </li>
  620. </ul>
  621. </nav>
  622. </li>
  623. <li class="md-nav__item md-nav__item--nested">
  624. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6" >
  625. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  626. <span class="md-ellipsis">
  627. Development
  628. </span>
  629. <span class="md-nav__icon md-icon"></span>
  630. </label>
  631. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  632. <label class="md-nav__title" for="__nav_6">
  633. <span class="md-nav__icon md-icon"></span>
  634. Development
  635. </label>
  636. <ul class="md-nav__list" data-md-scrollfix>
  637. <li class="md-nav__item">
  638. <a href="../../dev/contribute/" class="md-nav__link">
  639. <span class="md-ellipsis">
  640. Contribution guide
  641. </span>
  642. </a>
  643. </li>
  644. <li class="md-nav__item">
  645. <a href="../../dev/formatting_conflicts/" class="md-nav__link">
  646. <span class="md-ellipsis">
  647. Formatting conflicts
  648. </span>
  649. </a>
  650. </li>
  651. </ul>
  652. </nav>
  653. </li>
  654. <li class="md-nav__item md-nav__item--nested">
  655. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_7" >
  656. <div class="md-nav__link md-nav__container">
  657. <a href="../../reference/" class="md-nav__link ">
  658. <span class="md-ellipsis">
  659. Reference
  660. </span>
  661. </a>
  662. <label class="md-nav__link " for="__nav_7" id="__nav_7_label" tabindex="0">
  663. <span class="md-nav__icon md-icon"></span>
  664. </label>
  665. </div>
  666. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  667. <label class="md-nav__title" for="__nav_7">
  668. <span class="md-nav__icon md-icon"></span>
  669. Reference
  670. </label>
  671. <ul class="md-nav__list" data-md-scrollfix>
  672. <li class="md-nav__item">
  673. <a href="../../reference/agent/" class="md-nav__link">
  674. <span class="md-ellipsis">
  675. Agent
  676. </span>
  677. </a>
  678. </li>
  679. <li class="md-nav__item">
  680. <a href="../../reference/models/" class="md-nav__link">
  681. <span class="md-ellipsis">
  682. Models
  683. </span>
  684. </a>
  685. </li>
  686. <li class="md-nav__item">
  687. <a href="../../reference/env/" class="md-nav__link">
  688. <span class="md-ellipsis">
  689. Environment
  690. </span>
  691. </a>
  692. </li>
  693. <li class="md-nav__item">
  694. <a href="../../reference/env_utils/" class="md-nav__link">
  695. <span class="md-ellipsis">
  696. Environment utils
  697. </span>
  698. </a>
  699. </li>
  700. </ul>
  701. </nav>
  702. </li>
  703. <li class="md-nav__item">
  704. <a href="../../faq/" class="md-nav__link">
  705. <span class="md-ellipsis">
  706. FAQ
  707. </span>
  708. </a>
  709. </li>
  710. </ul>
  711. </nav>
  712. </div>
  713. </div>
  714. </div>
  715. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  716. <div class="md-sidebar__scrollwrap">
  717. <div class="md-sidebar__inner">
  718. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  719. <label class="md-nav__title" for="__toc">
  720. <span class="md-nav__icon md-icon"></span>
  721. Table of contents
  722. </label>
  723. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  724. <li class="md-nav__item">
  725. <a href="#070-2024-09-23" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. 0.7.0 (2024-09-23)
  728. </span>
  729. </a>
  730. <nav class="md-nav" aria-label="0.7.0 (2024-09-23)">
  731. <ul class="md-nav__list">
  732. <li class="md-nav__item">
  733. <a href="#added" class="md-nav__link">
  734. <span class="md-ellipsis">
  735. Added
  736. </span>
  737. </a>
  738. </li>
  739. <li class="md-nav__item">
  740. <a href="#fixes" class="md-nav__link">
  741. <span class="md-ellipsis">
  742. Fixes
  743. </span>
  744. </a>
  745. </li>
  746. <li class="md-nav__item">
  747. <a href="#new-contributors" class="md-nav__link">
  748. <span class="md-ellipsis">
  749. New Contributors
  750. </span>
  751. </a>
  752. </li>
  753. </ul>
  754. </nav>
  755. </li>
  756. <li class="md-nav__item">
  757. <a href="#061-2024-06-20" class="md-nav__link">
  758. <span class="md-ellipsis">
  759. 0.6.1 (2024-06-20)
  760. </span>
  761. </a>
  762. <nav class="md-nav" aria-label="0.6.1 (2024-06-20)">
  763. <ul class="md-nav__list">
  764. <li class="md-nav__item">
  765. <a href="#breaking-changes" class="md-nav__link">
  766. <span class="md-ellipsis">
  767. Breaking changes
  768. </span>
  769. </a>
  770. </li>
  771. <li class="md-nav__item">
  772. <a href="#improved" class="md-nav__link">
  773. <span class="md-ellipsis">
  774. Improved
  775. </span>
  776. </a>
  777. </li>
  778. <li class="md-nav__item">
  779. <a href="#fixed" class="md-nav__link">
  780. <span class="md-ellipsis">
  781. Fixed
  782. </span>
  783. </a>
  784. </li>
  785. </ul>
  786. </nav>
  787. </li>
  788. <li class="md-nav__item">
  789. <a href="#060-2024-06-05" class="md-nav__link">
  790. <span class="md-ellipsis">
  791. 0.6.0 (2024-06-05)
  792. </span>
  793. </a>
  794. <nav class="md-nav" aria-label="0.6.0 (2024-06-05)">
  795. <ul class="md-nav__list">
  796. <li class="md-nav__item">
  797. <a href="#improved_1" class="md-nav__link">
  798. <span class="md-ellipsis">
  799. Improved
  800. </span>
  801. </a>
  802. </li>
  803. <li class="md-nav__item">
  804. <a href="#fixed_1" class="md-nav__link">
  805. <span class="md-ellipsis">
  806. Fixed
  807. </span>
  808. </a>
  809. </li>
  810. </ul>
  811. </nav>
  812. </li>
  813. <li class="md-nav__item">
  814. <a href="#050-2024-05-28" class="md-nav__link">
  815. <span class="md-ellipsis">
  816. 0.5.0 (2024-05-28)
  817. </span>
  818. </a>
  819. <nav class="md-nav" aria-label="0.5.0 (2024-05-28)">
  820. <ul class="md-nav__list">
  821. <li class="md-nav__item">
  822. <a href="#breaking-changes_1" class="md-nav__link">
  823. <span class="md-ellipsis">
  824. Breaking changes
  825. </span>
  826. </a>
  827. </li>
  828. <li class="md-nav__item">
  829. <a href="#added_1" class="md-nav__link">
  830. <span class="md-ellipsis">
  831. Added
  832. </span>
  833. </a>
  834. </li>
  835. <li class="md-nav__item">
  836. <a href="#improved_2" class="md-nav__link">
  837. <span class="md-ellipsis">
  838. Improved
  839. </span>
  840. </a>
  841. </li>
  842. <li class="md-nav__item">
  843. <a href="#fixed_2" class="md-nav__link">
  844. <span class="md-ellipsis">
  845. Fixed
  846. </span>
  847. </a>
  848. </li>
  849. </ul>
  850. </nav>
  851. </li>
  852. <li class="md-nav__item">
  853. <a href="#040-2024-05-09" class="md-nav__link">
  854. <span class="md-ellipsis">
  855. 0.4.0 (2024-05-09)
  856. </span>
  857. </a>
  858. <nav class="md-nav" aria-label="0.4.0 (2024-05-09)">
  859. <ul class="md-nav__list">
  860. <li class="md-nav__item">
  861. <a href="#added_2" class="md-nav__link">
  862. <span class="md-ellipsis">
  863. Added
  864. </span>
  865. </a>
  866. </li>
  867. </ul>
  868. </nav>
  869. </li>
  870. <li class="md-nav__item">
  871. <a href="#030-2024-05-02" class="md-nav__link">
  872. <span class="md-ellipsis">
  873. 0.3.0 (2024-05-02)
  874. </span>
  875. </a>
  876. <nav class="md-nav" aria-label="0.3.0 (2024-05-02)">
  877. <ul class="md-nav__list">
  878. <li class="md-nav__item">
  879. <a href="#added_3" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. Added
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="#fixed_3" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Fixed
  889. </span>
  890. </a>
  891. </li>
  892. </ul>
  893. </nav>
  894. </li>
  895. <li class="md-nav__item">
  896. <a href="#020-2024-04-15" class="md-nav__link">
  897. <span class="md-ellipsis">
  898. 0.2.0 (2024-04-15)
  899. </span>
  900. </a>
  901. <nav class="md-nav" aria-label="0.2.0 (2024-04-15)">
  902. <ul class="md-nav__list">
  903. <li class="md-nav__item">
  904. <a href="#added_4" class="md-nav__link">
  905. <span class="md-ellipsis">
  906. Added
  907. </span>
  908. </a>
  909. </li>
  910. <li class="md-nav__item">
  911. <a href="#improved_3" class="md-nav__link">
  912. <span class="md-ellipsis">
  913. Improved
  914. </span>
  915. </a>
  916. </li>
  917. <li class="md-nav__item">
  918. <a href="#fixed_4" class="md-nav__link">
  919. <span class="md-ellipsis">
  920. Fixed
  921. </span>
  922. </a>
  923. </li>
  924. </ul>
  925. </nav>
  926. </li>
  927. </ul>
  928. </nav>
  929. </div>
  930. </div>
  931. </div>
  932. <div class="md-content" data-md-component="content">
  933. <article class="md-content__inner md-typeset">
  934. <a href="https://github.com/princeton-nlp/SWE-agent/edit/main/docs/installation/changelog.md" title="Edit this page" class="md-content__button md-icon">
  935. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20H6V4h7v5h5v3.1l2-2V8l-6-6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h4zm10.2-7c.1 0 .3.1.4.2l1.3 1.3c.2.2.2.6 0 .8l-1 1-2.1-2.1 1-1c.1-.1.2-.2.4-.2m0 3.9L14.1 23H12v-2.1l6.1-6.1z"/></svg>
  936. </a>
  937. <h1 id="changelog">Changelog</h1>
  938. <h2 id="070-2024-09-23">0.7.0 (2024-09-23)</h2>
  939. <h3 id="added">Added</h3>
  940. <p>The main new feature is the <strong>EnIGMA mode</strong>, which included additions like support for Interactive Agent Tools
  941. and Summarizers.</p>
  942. <ul>
  943. <li>Add filemap command in the spirit of repomap by <a href="https://github.com/samuela">@samuela</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/619">#619</a></li>
  944. <li>Create config to run human eval style challenges by <a href="https://github.com/ofirpress">@ofirpress</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/658">#658</a></li>
  945. <li>Add claude 3.5 sonnet to models by <a href="https://github.com/carlosejimenez">@carlosejimenez</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/601">#601</a></li>
  946. <li>Enh: Warn if scrolling &gt;= 3 times by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/626">#626</a></li>
  947. <li>feat: support deepseek-coder LLM by <a href="https://github.com/jcraftsman">@jcraftsman</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/638">#638</a></li>
  948. <li>Enh: Make timeout for agent commands configurable by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/674">#674</a></li>
  949. <li>Add support for new gpt-4o-mini model by <a href="https://github.com/ivan4722">@ivan4722</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/693">#693</a></li>
  950. <li>Groq Models Integration by <a href="https://github.com/MohammedNagdy">@MohammedNagdy</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/721">#721</a></li>
  951. <li>Make log level configurable; add TRACE level by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/612">#612</a></li>
  952. </ul>
  953. <h3 id="fixes">Fixes</h3>
  954. <ul>
  955. <li>Compatibility with SWE-bench 2.0 by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/671">#671</a></li>
  956. <li>ensure variables work in special command docstring by <a href="https://github.com/forresty">@forresty</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/628">#628</a></li>
  957. <li>Important fix: Catch CostLimitExceeded in retry because of format/block by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/682">#682</a></li>
  958. <li>Fix: Handle empty traj in should_skip by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/616">#616</a></li>
  959. <li>Fix for end-marker communicate: Exit status always 0/invalid by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/644">#644</a></li>
  960. <li>Fix: Insufficient quoting of git commit message by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/646">#646</a></li>
  961. <li>Fix nonsensical trajectory formatting for PRs by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/647">#647</a></li>
  962. <li>Fix: sweunexpected keyword 'python_version' by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/692">#692</a></li>
  963. <li>Fix: Use LONG_TIMEOUT for pre_install commands by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/695">#695</a></li>
  964. <li>Fix: UnboundLocalError when catching decoding issue by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/709">#709</a></li>
  965. <li>Also create empty patch files for completeness by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/725">#725</a></li>
  966. <li>Fix: Raise ContextWindowExceeded instead of exit_cost by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/727">#727</a></li>
  967. <li>Fix: Deal with non-utf8 encoded bytes in comm by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/731">#731</a></li>
  968. <li>Fix: Handle spaces in repo names by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/734">#734</a></li>
  969. <li>Fix: Ensure utils is part of package by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/742">#742</a></li>
  970. <li>Fix: Submitting ' ' in human mode crashes container by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/749">#749</a></li>
  971. <li>Fix: Block su as command by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/752">#752</a></li>
  972. <li>Fix: SWE_AGENT_MODEL_MAX_RETRIES needs casting by <a href="https://github.com/klieret">@klieret</a> in <a href="https://github.com/princeton-nlp/SWE-agent/pull/757">#757</a></li>
  973. </ul>
  974. <h3 id="new-contributors">New Contributors</h3>
  975. <p>🎉 <strong>@talorabr, @udiboy1209, @haoranxi, @NickNameInvalid, @rollingcoconut joined the team to build EnIGMA</strong> 🎉</p>
  976. <ul>
  977. <li>@carlosejimenez made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/601">#601</a></li>
  978. <li>@samefarrar made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/606">#606</a></li>
  979. <li>@hubstrauss made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/625">#625</a></li>
  980. <li>@samuela made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/619">#619</a></li>
  981. <li>@forresty made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/628">#628</a></li>
  982. <li>@jcraftsman made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/638">#638</a></li>
  983. <li>@ivan4722 made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/693">#693</a></li>
  984. <li>@JoshuaPurtell made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/703">#703</a></li>
  985. <li>@MohammedNagdy made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/721">#721</a></li>
  986. <li>@pdemro made their first contribution in <a href="https://github.com/princeton-nlp/SWE-agent/pull/729">#729</a></li>
  987. </ul>
  988. <h2 id="061-2024-06-20">0.6.1 (2024-06-20)</h2>
  989. <p><a href="https://github.com/princeton-nlp/SWE-agent/compare/v0.6.0...v0.6.1">All new commits</a></p>
  990. <p>This is (mostly) a patch release, in particular fixing several issues that had been introduced by the speed improvements of v0.6.0.
  991. We also solve a bug where existing linter errors in a file left SWE-agent unable to edit (because of our lint-retry-loop).</p>
  992. <h3 id="breaking-changes">Breaking changes</h3>
  993. <ul>
  994. <li>Change: sparse clone method is now correctly called "shallow" by <a href="https://github.com/klieret">@klieret</a> in <a href="[#591](https://github.com/princeton-nlp/SWE-agent/pull/591)">#591</a></li>
  995. </ul>
  996. <h3 id="improved">Improved</h3>
  997. <ul>
  998. <li>Enh: Show commands when encountering timeout error by <a href="https://github.com/klieret">@klieret</a> in <a href="[#582](https://github.com/princeton-nlp/SWE-agent/pull/582)">#582</a></li>
  999. <li>Enh: Configuration option to show time in log by <a href="https://github.com/klieret">@klieret</a> in <a href="[#583](https://github.com/princeton-nlp/SWE-agent/pull/583)">#583</a></li>
  1000. <li>Enh: Allow to configure LONG_TIMEOUT for SWEEnv by <a href="https://github.com/klieret">@klieret</a> in <a href="[#584](https://github.com/princeton-nlp/SWE-agent/pull/584)">#584</a></li>
  1001. <li>Enh: Always write log to traj directory by <a href="https://github.com/klieret">@klieret</a> in <a href="[#588](https://github.com/princeton-nlp/SWE-agent/pull/588)">#588</a></li>
  1002. </ul>
  1003. <h3 id="fixed">Fixed</h3>
  1004. <ul>
  1005. <li>fix <code>docker.errors.NotFound</code> by <a href="https://github.com/klieret">@klieret</a> in <a href="[#587](https://github.com/princeton-nlp/SWE-agent/pull/587)">#587</a></li>
  1006. <li>Fix: Revert to full clone method when needed by <a href="https://github.com/klieret">@klieret</a> in <a href="[#589](https://github.com/princeton-nlp/SWE-agent/pull/589)">#589</a></li>
  1007. <li>Fix: Refresh container_obj before querying status by <a href="https://github.com/klieret">@klieret</a> in <a href="[#590](https://github.com/princeton-nlp/SWE-agent/pull/590)">#590</a></li>
  1008. <li>Fixed #571 - show message that model arg is ignored in case of using Azure OpenAI by <a href="https://github.com/jank">@jank</a> in <a href="[#592](https://github.com/princeton-nlp/SWE-agent/pull/592)">#592</a></li>
  1009. <li>Fix: Linting blocks for existing lint errors by <a href="https://github.com/klieret">@klieret</a> in <a href="[#593](https://github.com/princeton-nlp/SWE-agent/pull/593)">#593</a></li>
  1010. <li>Fix: Process done marker not found in read with timeout by <a href="https://github.com/klieret">@klieret</a> in <a href="[#596](https://github.com/princeton-nlp/SWE-agent/pull/596)">#596</a></li>
  1011. </ul>
  1012. <h2 id="060-2024-06-05">0.6.0 (2024-06-05)</h2>
  1013. <p><a href="https://github.com/princeton-nlp/SWE-agent/compare/v0.5.0...v0.6.0">All new commits</a></p>
  1014. <p><strong>We sped up SWE-agent by 2x</strong> (timed with GPT4o). This is mostly due to faster communication with the running processes inside of the Docker container and other container setup &amp; installation related improvements. Here are a few relevant PRs:</p>
  1015. <ul>
  1016. <li>Switch to fast communicate and shallow clone by default by <a href="https://github.com/klieret">@klieret</a> in <a href="[#530]([#530](https://github.com/princeton-nlp/SWE-agent/pull/530))">#530</a></li>
  1017. <li>Change: Only wait 1s for docker to start by <a href="https://github.com/klieret">@klieret</a> in <a href="[#541]([#541](https://github.com/princeton-nlp/SWE-agent/pull/541))">#541</a></li>
  1018. <li>Feat: experimental shallow cloning by <a href="https://github.com/klieret">@klieret</a> in <a href="[#498]([#498](https://github.com/princeton-nlp/SWE-agent/pull/498))">#498</a></li>
  1019. <li>Enh: Start from clone of python conda environment for speedup by <a href="https://github.com/klieret">@klieret</a> in <a href="[#548]([#548](https://github.com/princeton-nlp/SWE-agent/pull/548))">#548</a></li>
  1020. <li>Enh: Use uv for editable install by default by <a href="https://github.com/klieret">@klieret</a> in <a href="[#547]([#547](https://github.com/princeton-nlp/SWE-agent/pull/547))">#547</a></li>
  1021. </ul>
  1022. <h3 id="improved_1">Improved</h3>
  1023. <ul>
  1024. <li>Improve scrolling behavior in web UI by <a href="https://github.com/anishfish2">@anishfish2</a> in <a href="[#420]([#420](https://github.com/princeton-nlp/SWE-agent/pull/420))">#420</a></li>
  1025. <li>Web UI: Render Markdown in agent feed messages. by <a href="https://github.com/kwight">@kwight</a> in <a href="[#486]([#486](https://github.com/princeton-nlp/SWE-agent/pull/486))">#486</a></li>
  1026. <li>Enh: Remove redundant 'saved traj to X' messages by <a href="https://github.com/klieret">@klieret</a> in <a href="[#528]([#528](https://github.com/princeton-nlp/SWE-agent/pull/528))">#528</a></li>
  1027. <li>Allow to disable config dump to log by <a href="https://github.com/klieret">@klieret</a> in <a href="[#537]([#537](https://github.com/princeton-nlp/SWE-agent/pull/537))">#537</a></li>
  1028. <li>Resolve relative paths to demonstrations and commands by <a href="https://github.com/klieret">@klieret</a> in <a href="[#444]([#444](https://github.com/princeton-nlp/SWE-agent/pull/444))">#444</a></li>
  1029. </ul>
  1030. <h3 id="fixed_1">Fixed</h3>
  1031. <ul>
  1032. <li>Web UI: Remove -n option to wait by <a href="https://github.com/klieret">@klieret</a> in <a href="[#487]([#487](https://github.com/princeton-nlp/SWE-agent/pull/487))">#487</a></li>
  1033. <li>Web UI: Kill the Flask server on exit. by <a href="https://github.com/kwight">@kwight</a> in <a href="[#479]([#479](https://github.com/princeton-nlp/SWE-agent/pull/479))">#479</a></li>
  1034. <li>Web UI: Avoid proxy errors on MacOS by <a href="https://github.com/klieret">@klieret</a> in <a href="[#506]([#506](https://github.com/princeton-nlp/SWE-agent/pull/506))">#506</a></li>
  1035. <li>Ensure container_name is reset for non-persistent containers by <a href="https://github.com/klieret">@klieret</a> in <a href="[#463]([#463](https://github.com/princeton-nlp/SWE-agent/pull/463))">#463</a></li>
  1036. <li>Fix: Do not allow persistent container with cache task imgs by <a href="https://github.com/klieret">@klieret</a> in <a href="[#551]([#551](https://github.com/princeton-nlp/SWE-agent/pull/551))">#551</a></li>
  1037. </ul>
  1038. <h2 id="050-2024-05-28">0.5.0 (2024-05-28)</h2>
  1039. <p><a href="https://github.com/princeton-nlp/SWE-agent/compare/v0.4.0...v0.5.0">All new commits</a></p>
  1040. <p>✨ The big news is our <a href="https://princeton-nlp.github.io/SWE-agent/">brand new documentation</a> ✨</p>
  1041. <p>Secondly, @ollmer added a new flag <code>--cache_task_images</code> that will significantly speed up SWE-agent when running on the same environment/repository multiple times (no more waiting for cloning and installation!)</p>
  1042. <h3 id="breaking-changes_1">Breaking changes</h3>
  1043. <ul>
  1044. <li>We have reformatted our codebase. If you create a PR based on a previous commit, make sure you install our <code>pre-commit</code> hook to avoid merge-conflicts because of formatting. See <a href="https://princeton-nlp.github.io/SWE-agent/dev/formatting_conflicts/">our docs</a> for more information.</li>
  1045. <li>Remove direct imports in <code>__init__.py</code> (you can no longer <code>from sweagent import Agent</code> by <a href="https://github.com/klieret">@klieret</a> in <a href="[#436]([#436](https://github.com/princeton-nlp/SWE-agent/pull/436))">#436</a></li>
  1046. </ul>
  1047. <h3 id="added_1">Added</h3>
  1048. <ul>
  1049. <li>Running the web UI is now supported when running swe-agent completely in docker</li>
  1050. <li>Speed up evaluation by caching task environments as docker images by <a href="https://github.com/ollmer">@ollmer</a> in <a href="[#317]([#317](https://github.com/princeton-nlp/SWE-agent/pull/317))">#317</a></li>
  1051. </ul>
  1052. <h3 id="improved_2">Improved</h3>
  1053. <ul>
  1054. <li>Add gpt-4o model by <a href="https://github.com/raymyers">@raymyers</a> in <a href="[#344]([#344](https://github.com/princeton-nlp/SWE-agent/pull/344))">#344</a></li>
  1055. <li>Web: Allow to specify commit hash by <a href="https://github.com/klieret">@klieret</a> in <a href="[#358]([#358](https://github.com/princeton-nlp/SWE-agent/pull/358))">#358</a></li>
  1056. <li>Add default environment_setup config by <a href="https://github.com/klieret">@klieret</a> in <a href="[#351]([#351](https://github.com/princeton-nlp/SWE-agent/pull/351))">#351</a></li>
  1057. <li>Enh: Suppress openai logging; improve formatting of stats by <a href="https://github.com/klieret">@klieret</a> in <a href="[#416]([#416](https://github.com/princeton-nlp/SWE-agent/pull/416))">#416</a></li>
  1058. <li>Remove signal dependency by <a href="https://github.com/klieret">@klieret</a> in <a href="[#428]([#428](https://github.com/princeton-nlp/SWE-agent/pull/428))">#428</a></li>
  1059. <li>Do not use select if running on Windows by <a href="https://github.com/klieret">@klieret</a> in <a href="[#429]([#429](https://github.com/princeton-nlp/SWE-agent/pull/429))">#429</a></li>
  1060. <li>Use custom Config class to support env and keys.cfg (this allows passing keys as environment variables) by <a href="https://github.com/klieret">@klieret</a> in <a href="[#430]([#430](https://github.com/princeton-nlp/SWE-agent/pull/430))">#430</a></li>
  1061. </ul>
  1062. <h3 id="fixed_2">Fixed</h3>
  1063. <ul>
  1064. <li>Web: Fix script_path input by <a href="https://github.com/klieret">@klieret</a> in <a href="[#334]([#334](https://github.com/princeton-nlp/SWE-agent/pull/334))">#334</a></li>
  1065. <li>Fix: Don't print patch msg for exit_cost patch by <a href="https://github.com/klieret">@klieret</a> in <a href="[#343]([#343](https://github.com/princeton-nlp/SWE-agent/pull/343))">#343</a></li>
  1066. <li>Fix: Do not request job control in bash by <a href="https://github.com/klieret">@klieret</a> in <a href="[#345]([#345](https://github.com/princeton-nlp/SWE-agent/pull/345))">#345</a></li>
  1067. <li>Fix: --base_commit not used for gh urls by <a href="https://github.com/klieret">@klieret</a> in <a href="[#346]([#346](https://github.com/princeton-nlp/SWE-agent/pull/346))">#346</a></li>
  1068. <li>Fix: Separate data path/traj dir cause exception by <a href="https://github.com/klieret">@klieret</a> in <a href="[#348]([#348](https://github.com/princeton-nlp/SWE-agent/pull/348))">#348</a></li>
  1069. <li>Add docker-py lower bound by <a href="https://github.com/klieret">@klieret</a> in <a href="[#406]([#406](https://github.com/princeton-nlp/SWE-agent/pull/406))">#406</a></li>
  1070. <li>Fix: IndexError when replaying incomplete trajectories by <a href="https://github.com/klieret">@klieret</a> in <a href="[#410]([#410](https://github.com/princeton-nlp/SWE-agent/pull/410))">#410</a></li>
  1071. </ul>
  1072. <h2 id="040-2024-05-09">0.4.0 (2024-05-09)</h2>
  1073. <p><a href="https://github.com/princeton-nlp/SWE-agent/compare/v0.3.0...v0.4.0">All new commits</a></p>
  1074. <h3 id="added_2">Added</h3>
  1075. <p>We’re excited to launch the SWE-agent web UI! Specify a bug, press start and watch SWE-agent do the magic.</p>
  1076. <h2 id="030-2024-05-02">0.3.0 (2024-05-02)</h2>
  1077. <h3 id="added_3">Added</h3>
  1078. <ul>
  1079. <li>Run SWE-agent in the cloud using GitHub Codespaces</li>
  1080. <li>Add GPT4-turbo model by <a href="https://github.com/zgrannan">@zgrannan</a> in <a href="[#252]([#252](https://github.com/princeton-nlp/SWE-agent/pull/252))">#252</a></li>
  1081. <li>feat: Amazon Bedrock support (Claude models) by <a href="https://github.com/JGalego">@JGalego</a> in <a href="[#207]([#207](https://github.com/princeton-nlp/SWE-agent/pull/207))">#207</a></li>
  1082. </ul>
  1083. <h3 id="fixed_3">Fixed</h3>
  1084. <ul>
  1085. <li>Better error handling for --open_pr by <a href="https://github.com/klieret">@klieret</a> in <a href="[#239]([#239](https://github.com/princeton-nlp/SWE-agent/pull/239))">#239</a></li>
  1086. <li>Fixed a potential error by <a href="https://github.com/DanjieTang">@DanjieTang</a> in <a href="[#242]([#242](https://github.com/princeton-nlp/SWE-agent/pull/242))">#242</a></li>
  1087. <li>fix: TARGETARCH not set on some OS/docker setups by <a href="https://github.com/mspronesti">@mspronesti</a> in <a href="[#249]([#249](https://github.com/princeton-nlp/SWE-agent/pull/249))">#249</a></li>
  1088. <li>Pass Python version to get_environment_yml by <a href="https://github.com/waterson">@waterson</a> in <a href="[#271]([#271](https://github.com/princeton-nlp/SWE-agent/pull/271))">#271</a></li>
  1089. <li>Fix Together model validation error by <a href="https://github.com/mikanfactory">@mikanfactory</a> in <a href="[#236]([#236](https://github.com/princeton-nlp/SWE-agent/pull/236))">#236</a></li>
  1090. <li>Doc: Avoid invalid github token by <a href="https://github.com/klieret">@klieret</a> in <a href="[#292]([#292](https://github.com/princeton-nlp/SWE-agent/pull/292))">#292</a></li>
  1091. </ul>
  1092. <h2 id="020-2024-04-15">0.2.0 (2024-04-15)</h2>
  1093. <p><a href="https://github.com/princeton-nlp/SWE-agent/compare/v0.1.2...v0.2.0">All new commits</a></p>
  1094. <h3 id="added_4">Added</h3>
  1095. <ul>
  1096. <li>Allow to run on local repos (new flag: <code>--repo_path</code>) in <a href="[#193]([#193](https://github.com/princeton-nlp/SWE-agent/pull/193))">#193</a></li>
  1097. <li>Patch files are now saved separately to a patch directory in <a href="[#126]([#126](https://github.com/princeton-nlp/SWE-agent/pull/126))">#126</a></li>
  1098. <li>Allow to supply custom installation commands when running on gh issues or locally (<code>--environment_setup</code>) in <a href="[#153]([#153](https://github.com/princeton-nlp/SWE-agent/pull/153))">#153</a></li>
  1099. <li>Allow to specify openapi base url in <code>keys.cfg</code> in <a href="[#118]([#118](https://github.com/princeton-nlp/SWE-agent/pull/118))">#118</a></li>
  1100. </ul>
  1101. <h3 id="improved_3">Improved</h3>
  1102. <ul>
  1103. <li>Improve error handling of docker issues in <a href="[#165]([#165](https://github.com/princeton-nlp/SWE-agent/pull/165))">#165</a></li>
  1104. <li>Make github token fully optional in <a href="[#189]([#189](https://github.com/princeton-nlp/SWE-agent/pull/189))">#189</a></li>
  1105. </ul>
  1106. <h3 id="fixed_4">Fixed</h3>
  1107. <ul>
  1108. <li>Fix opening PR from fork in <a href="[#229]([#229](https://github.com/princeton-nlp/SWE-agent/pull/229))">#229</a></li>
  1109. <li>Fix: Choosing TogetherAI models in <a href="[#130]([#130](https://github.com/princeton-nlp/SWE-agent/pull/130))">#130</a></li>
  1110. </ul>
  1111. </article>
  1112. </div>
  1113. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  1114. </div>
  1115. </main>
  1116. <footer class="md-footer">
  1117. <nav class="md-footer__inner md-grid" aria-label="Footer" >
  1118. <a href="../tips/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Installation tips">
  1119. <div class="md-footer__button md-icon">
  1120. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  1121. </div>
  1122. <div class="md-footer__title">
  1123. <span class="md-footer__direction">
  1124. Previous
  1125. </span>
  1126. <div class="md-ellipsis">
  1127. Installation tips
  1128. </div>
  1129. </div>
  1130. </a>
  1131. <a href="../../usage/" class="md-footer__link md-footer__link--next" aria-label="Next: Usage">
  1132. <div class="md-footer__title">
  1133. <span class="md-footer__direction">
  1134. Next
  1135. </span>
  1136. <div class="md-ellipsis">
  1137. Usage
  1138. </div>
  1139. </div>
  1140. <div class="md-footer__button md-icon">
  1141. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11z"/></svg>
  1142. </div>
  1143. </a>
  1144. </nav>
  1145. <div class="md-footer-meta md-typeset">
  1146. <div class="md-footer-meta__inner md-grid">
  1147. <div class="md-copyright">
  1148. Made with
  1149. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  1150. Material for MkDocs
  1151. </a>
  1152. </div>
  1153. </div>
  1154. </div>
  1155. </footer>
  1156. </div>
  1157. <div class="md-dialog" data-md-component="dialog">
  1158. <div class="md-dialog__inner md-typeset"></div>
  1159. </div>
  1160. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.indexes", "content.action.edit", "navigation.footer", "content.code.copy", "content.footnote.tooltips", "header.autohide", "announce.dismiss"], "search": "../../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
  1161. <script src="../../assets/javascripts/bundle.525ec568.min.js"></script>
  1162. <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
  1163. document$.subscribe(() => { lightbox.reload() });
  1164. </script></body>
  1165. </html>