mcngnt commited on
Commit
1402394
·
1 Parent(s): b41e35c

remove useless report folder (all in readme)

Browse files
Files changed (2) hide show
  1. report/report.typ +0 -44
  2. report/style.typ +0 -77
report/report.typ DELETED
@@ -1,44 +0,0 @@
1
- #import "style.typ":*
2
-
3
- #show : template
4
-
5
- #let régie(c) = {
6
- set text(fill: red)
7
- c
8
- }
9
-
10
- #let didascalie(c) = {
11
- set text(fill: blue)
12
- c
13
- }
14
-
15
- #let décor(c) = {
16
- set text(fill : green)
17
- c
18
- }
19
-
20
- #let voix(c, who:none) = {
21
- set text(style : "oblique")
22
- c
23
- if who != none {
24
- footnote(who)
25
- }
26
- }
27
-
28
- #set par(justify: true)
29
-
30
-
31
- #pres_page(title: "Zork Project Report", date: datetime.today(), author: [Martin Cuingnet])
32
-
33
- What was done overall:
34
- - Prompt engineering on the main prompt
35
- - Include additional information in the prompt (look, listen, inventory)
36
- - Ditched map system in favor of location based history system
37
- - Improved history of actions
38
- - Simplified MCP command call (the agent got sometimes confused + got rid of external tool by incorporating them directly in the prompt)
39
- - Add possible actions to the prompt
40
-
41
-
42
- Possible extensions :
43
- - Better map system
44
- - Planning system
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
report/style.typ DELETED
@@ -1,77 +0,0 @@
1
-
2
-
3
- #set text(lang: "en")
4
-
5
- #let template(doc) = [
6
- #set page(numbering: "1/1", number-align: right)
7
- // #set cite(style: "alphanumeric")
8
- #show link: it => text(fill: rgb("#2424ff"), underline[#it])
9
- #set heading(numbering: none)
10
- // #set text(font: "New Computer Modern Sans")
11
-
12
- #show ref: it => {
13
- let el = it.element
14
- let trgt = it.target
15
- if str(trgt).starts-with("bib") and false {
16
- it
17
- } else {
18
- text(fill: rgb("#2424ff"), it)
19
- }}
20
-
21
- #doc
22
-
23
- ]
24
-
25
-
26
- #let print_code(path, lang: "python") = {
27
- let text = read(path)
28
- raw(text, lang: lang, block: true)
29
- }
30
-
31
-
32
-
33
- #let pres_page(title: none, author: none, mail: none, date: none, topic: none) = {
34
- align(horizon)[
35
- #if title != none {
36
- text(size: 40pt, weight: "bold", title)
37
- linebreak()
38
- }
39
- #v(15pt)
40
- #if author != none {
41
- text(size: 25pt, author)
42
- linebreak()
43
- }
44
- #if mail != none {
45
- v(10pt)
46
- text(size: 17pt, mail)
47
- linebreak()
48
- }
49
-
50
- #if topic != none {
51
- v(15pt)
52
- text(size: 17pt, topic)
53
- linebreak()
54
- }
55
-
56
- #if date != none {
57
- v(5pt)
58
- set text(size: 12pt)
59
- date.display(" [month repr:long] [day] [year]")
60
- linebreak()
61
- }
62
- ]
63
-
64
- pagebreak()
65
- }
66
-
67
-
68
-
69
-
70
-
71
- // #pres_page(
72
- // title: [],
73
- // author: [Martin Cuingnet],
74
- // mail: "martin.cuingnet@ens-paris-saclay.fr",
75
- // date: datetime.today(),
76
- // topic: [],
77
- // )