diff --git a/upsonic/remote/on_prem.py b/upsonic/remote/on_prem.py index 0a212c8..8e89366 100644 --- a/upsonic/remote/on_prem.py +++ b/upsonic/remote/on_prem.py @@ -1134,6 +1134,14 @@ def extract_source(self, value): def auto_dump(self, value, ask=True, check_idea=True, print_prompts=False, model=None): + + + if model == None: + model = self.get_default_ai_model() + + if model == "llama3-8b": + check_idea = False + if check_idea: check = self.check_idea(value, print_prompts=print_prompts, model=model) if check != True: @@ -1158,6 +1166,9 @@ def auto_dump(self, value, ask=True, check_idea=True, print_prompts=False, model {all_scopes} ``` +Your answer should be just the suggested position. Dont say any other think. + + Suggested Position: """ @@ -1208,6 +1219,7 @@ def get_document(self, scope, version=None): def check_idea(self, value, print_prompts=False, model=None): + code = textwrap.dedent(self.extract_source(value))