Skip to content

Instantly share code, notes, and snippets.

View vslaykovsky's full-sized avatar

vslaykovsky

  • Pearch.AI
  • London
View GitHub Profile
I will give you reports that explain why certain profiles match (group=4) or don't match (group<4) queries.
Create clear instructions on how to match a query to a profile.
Your instructions should show how to examine a query and a profile together and decide with a group number.
If needed, create partial examples to highlight certain thought process, don't use full examples, don't copy examples from reports, come up with novel examples instead.
Instruction should ask the operator to produce a JSON with the following structure as an output: {
group: int
}
Where group = 4 means the query matches the profiles. Values 1,2,3 mean no match with 1 is least relevant and 3 is most relevant.
@vslaykovsky
vslaykovsky / PyTetration.py
Created March 21, 2021 22:49
PyTetration
def tetra(x, y):
result = 1
for i in range(y):
result = x ** result
return result
print(f'2↑↑3=={tetra(2, 3)}')
print(f'2↑↑4=={tetra(2, 4)}')
print(f'2↑↑5=={tetra(2, 5)}')