benediktstroebl commited on
Commit
089c3f5
·
1 Parent(s): 0ca771d

added creator section

Browse files
Files changed (4) hide show
  1. app.py +3 -1
  2. creators.md +42 -1
  3. process.py +5 -0
  4. utils/db.py +0 -1
app.py CHANGED
@@ -304,6 +304,7 @@ with gr.Blocks(theme=my_theme, css='css.css', title="HAL: Holistic Agent Leaderb
304
  <a href="https://github.com/benediktstroebl/hal-harness/tree/main/hal/benchmarks" target="_blank">Add Benchmark</a>
305
  <a href="https://github.com/benediktstroebl/hal-harness/tree/main" target="_blank">GitHub</a>
306
  <a href="https://github.com/benediktstroebl/hal-harness#about-hal" target="_blank">About</a>
 
307
  </div>
308
  </nav>
309
  """)
@@ -1273,7 +1274,7 @@ with gr.Blocks(theme=my_theme, css='css.css', title="HAL: Holistic Agent Leaderb
1273
  # gr.Markdown((Path(__file__).parent / "benchmark_submission.md").read_text())
1274
  # gr.HTML("""<h2 class="section-heading" id="reproduction-guide">How can I run evaluations?</h2>""")
1275
  # gr.Markdown("""Coming soon...""")
1276
- gr.HTML("""<h2 class="section-heading" id="reproduction-guide">Creators behind HAL</h2>""")
1277
  gr.Markdown((Path(__file__).parent / "creators.md").read_text())
1278
 
1279
 
@@ -1300,6 +1301,7 @@ async def main():
1300
  scheduler.start()
1301
 
1302
  await demo.launch(favicon_path="hal.png")
 
1303
 
1304
  if __name__ == "__main__":
1305
  asyncio.run(main())
 
304
  <a href="https://github.com/benediktstroebl/hal-harness/tree/main/hal/benchmarks" target="_blank">Add Benchmark</a>
305
  <a href="https://github.com/benediktstroebl/hal-harness/tree/main" target="_blank">GitHub</a>
306
  <a href="https://github.com/benediktstroebl/hal-harness#about-hal" target="_blank">About</a>
307
+ <a href="#creators">Creators</a>
308
  </div>
309
  </nav>
310
  """)
 
1274
  # gr.Markdown((Path(__file__).parent / "benchmark_submission.md").read_text())
1275
  # gr.HTML("""<h2 class="section-heading" id="reproduction-guide">How can I run evaluations?</h2>""")
1276
  # gr.Markdown("""Coming soon...""")
1277
+ gr.HTML("""<h2 class="section-heading" id="creators">Creators behind HAL</h2>""")
1278
  gr.Markdown((Path(__file__).parent / "creators.md").read_text())
1279
 
1280
 
 
1301
  scheduler.start()
1302
 
1303
  await demo.launch(favicon_path="hal.png")
1304
+
1305
 
1306
  if __name__ == "__main__":
1307
  asyncio.run(main())
creators.md CHANGED
@@ -1 +1,42 @@
1
- coming soon...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Core Team
2
+
3
+ **[Benedikt Stroebl](https://benediktstroebl.github.io)**, PhD Student, Princeton University
4
+
5
+ **[Sayash Kapoor](https://www.cs.princeton.edu/~sayashk/)**, PhD Student, Princeton University
6
+
7
+ **[Arvind Narayanan](https://www.cs.princeton.edu/~arvindn/)**, Professor of Computer Science, Princeton University
8
+
9
+ #### Contributors
10
+
11
+ We're grateful to the network of contributors to HAL:
12
+
13
+ - Amit Arora - Amazon
14
+ - Aymeric Roucher - Hugging Face
15
+ - Azalia Mirhoseini - Stanford
16
+ - Bagatur Askaryan - LangChain
17
+ - Hailey Schoelkopf - Anthropic
18
+ - Harsh Trivedi - Stony Brook
19
+ - Iason Gabriel - Google DeepMind
20
+ - Jelena Luketina - UK AISI
21
+ - JJ Allaire - UK AISI
22
+ - Karthik Narasimhan - Princeton
23
+ - Kwamina Orleans-Pobee - DSIT UK
24
+ - Laura Weidinger - Google DeepMind
25
+ - Madhur Prashant - Amazon
26
+ - Maximillian Kaufmann - UK AISI
27
+ - Morgan McGuire - Weights & Biases
28
+ - Nitya Nadgir - Princeton
29
+ - Parth Asawa - UC Berkeley
30
+ - Rishi Bommasani - Stanford
31
+ - Shreya Shankar - UC Berkeley
32
+ - Shayne Longpre - MIT
33
+ - Thomas Capelle - Weights & Biases
34
+ - William Isaac - Google DeepMind
35
+ - Yifan Mai - Stanford
36
+ - Zachary Siegel - Princeton
37
+
38
+ Want to contribute to HAL? Check out our [contribution guidelines](https://github.com/benediktstroebl/hal-harness/blob/main/CONTRIBUTING.md) or visit our [GitHub repository](https://github.com/benediktstroebl/hal-harness).
39
+
40
+ ---
41
+
42
+ *Note: HAL is an open-source project and we welcome contributions from the community. If you've contributed to HAL and would like to be added to this list, please reach out.*
process.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from utils.processing import check_and_process_uploads
2
+ import asyncio
3
+
4
+ if __name__ == "__main__":
5
+ asyncio.run(check_and_process_uploads())
utils/db.py CHANGED
@@ -540,7 +540,6 @@ class TracePreprocessor:
540
  if 'Total Cost' in results_df.columns:
541
  results_df = results_df.drop('Total Cost', axis=1)
542
 
543
- print(results_df['Agent Name'])
544
  # create temp column that is whatever is in agent_name [x] because of url we added to agent_name
545
  results_df['agent_name_temp'] = results_df['Agent Name'].apply(lambda x: x.split('[')[1].split(']')[0] if '[' in x else x)
546
 
 
540
  if 'Total Cost' in results_df.columns:
541
  results_df = results_df.drop('Total Cost', axis=1)
542
 
 
543
  # create temp column that is whatever is in agent_name [x] because of url we added to agent_name
544
  results_df['agent_name_temp'] = results_df['Agent Name'].apply(lambda x: x.split('[')[1].split(']')[0] if '[' in x else x)
545