Komninos Chatzipapas
Komninos Chatzipapas
Change the tests to use the new `change-env` endpoint in order to be able to better test env variable dependent functionality.
I have a component that calculates the page title on `asyncData`. It looks like this: ```typescript import { Component, Vue } from 'nuxt-property-decorator'; @Comonent({ head() { return { title: this.title...
We should set Github Actions up for this repository to test our changes.
I have downloaded the [Mistral 7B](https://huggingface.co/mistralai/Mistral-7B-v0.1/tree/main) tokenizer locally and tried to compare different combinations of the `legacy` and `use_fast` options: ```python from transformers import AutoTokenizer tokenizer = AutoTokenizer.from_pretrained('.', legacy=False, use_fast=False)...
# Description Adds a `custom_chat_template` parameter on the config that allows to set a custom chat template in Jinja format. ## Motivation and Context It's convenient so those of use...
Add Continue and Break statement support on loops. The Continue statement skips to the next iteration while the Break one stops the loop and continues code execution. Continue and Break...
Modify the Lexer module to support scientific notation. For example, `10e2` should be transformed to `1000`.
Modify the type system to allow for a procedure declaration to have infinite arguments. Then modify the Write and WriteLn procedures to be able to print infinite arguments.
In the current implementation, attempting to recursively call a procedure results in an unhandled program error. Change the Interpreter and Symbol packages to allow procedure recursion.