-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.25 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Appendix</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
.description {
max-width: 800px;
margin: 0 auto 20px;
font-size: 16px;
line-height: 1.5;
}
.pdf-container {
width: 80%;
height: 90vh;
margin: 0 auto;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<h1>Appendix</h1>
<p class="description">
<strong>Author:</strong> Nicolas Brandstetter<br>
This appendix belongs to the paper <em>"FALAA: Framework for the Abstraction of Language Agents Architectures"</em>
Presents the full description of Reflexion and Retroformer agents using the standardized structure proposed by FALAA along with the Retroformer's pseudo code presented in his paper.
</p>
<div class="pdf-container">
<iframe src="apendice.pdf"></iframe>
</div>
</body>
</html>