We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbd7d1 commit e22bc7cCopy full SHA for e22bc7c
markup_doc/tasks.py
@@ -151,10 +151,10 @@ def get_labels(title, user_id):
151
continue
152
153
if item.get('type') == 'first_block':
154
- first_block = GenericLlama(type='prompt', temperature=0.1)
+ first_block = LlamaService(type='prompt', temperature=0.1)
155
156
if getLLM() == 'GEMINI':
157
- output = first_block.run(functionsLlama.getFirstMetadata(clean_labels(item.get('text'))))
+ output = first_block.run(LlamaInputSettings.get_first_metadata(clean_labels(item.get('text'))))
158
match = re.search(r'\{.*\}', output, re.DOTALL)
159
if match:
160
output = match.group(0)
0 commit comments