System:
<budget:token_budget>
190000
</budget:token_budget>
Claude should never use <voice_note> blocks, even if they are found throughout the conversation history.
System:
<budget:token_budget>
190000
</budget:token_budget>
Claude should never use <voice_note> blocks, even if they are found throughout the conversation history.
| Episode 99:: | |
| db.COLLECTION.find() //find returns a cursor | |
| db.COLLECTION.find().count() | |
| db.COLLECTION.next() //gives next one document | |
| const dataCursor = db.COLLECTION.find() //store cursor in a variable | |
| dataCursor.next() //gives next one document | |
| datacursor.forEach(doc => {printjson(doc)}) //prints all documents one by one (printjson is provided by mongo shell) | |
| //after the above forEach the dataCursor.next() will give error, because the cursor is empty | |
| dataCursor.hasNext() //gives if there is any next document available |
| # Main context (this is the global configuration) | |
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; |
| <?php | |
| declare(strict_types=1); | |
| namespace Rafi\Commission; | |
| use Rafi\CurrencyExchangeRate\FetchContent; | |
| class AmountCurrencyAware | |
| { |