Changes to the assembled system prompt when enable_table_objects is on.
- ONLY output this when writing your final answer, not during intermediate tool-use iterations
- Do NOT output it more than once
| would be changed | input value | inferred currency code | confidence |
|---|---|---|---|
| ✅ | usd | USD | 100.0 |
| ✅ | USD | USD | 100.0 |
| ✅ | eur | EUR | 100.0 |
| ✅ | JPY | JPY | 100.0 |
| ✅ | jpy | JPY | 100.0 |
| ✅ | EUR | EUR | 100.0 |
| ✅ | cad | CAD | 100.0 |
| ✅ | GBP | GBP | 100.0 |
| +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+------------------+------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+ | |
| | Metric | 2020-04-30 | 2020-07-31 | 2020-10-31 | 2021-01-31 | 2021-04-30 | 2021-07-31 | 2021-10-31 | 2022-01-31 | 2022-04-30 | 2022-07-31 | 2022-10-31 | 2023-01-31 | 2023-04-30 |
| plugins { | |
| id "org.openbakery.xcode-plugin" version "0.11.4" | |
| } | |
| xcodebuild { | |
| target = 'Core' | |
| scheme = 'CoreTests' | |
| sdk = 'iphonesimulator' | |
| destination { | |
| name = 'iPad Retina' |
| # This file contains commands that LLDB will execute at startup. Drop it in your | |
| # home directory: ~/.lldbinit | |
| # Dump the UIKit view hierarchy | |
| command regex rd 's/[[:space:]]*$/po [[[UIApplication sharedApplication] keyWindow] recursiveDescription]/' 's/.+$/po [%1 recursiveDescription]/' | |
| # Try not to step into uninteresting library code. Needs some work. | |
| settings set target.process.thread.step-avoid-regexp ^(std::(!function)|boost::shared_ptr) | |
| # https://github.com/facebook/chisel |
| /** | |
| * author Remy Sharp | |
| * url http://remysharp.com/tag/marquee | |
| */ | |
| require(['jquery'], function ($) { | |
| $.fn.marquee = function (klass) { | |
| var newMarquee = [], | |
| last = this.length; |