diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-20 13:54:21 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-20 13:54:21 +0100 |
| commit | 306c3cb6924c6231c102ff7d75aa3f68e3618ca2 (patch) | |
| tree | 1a41c8c4b70b43796cc3fc14f0c9e52b39651e2f /maps.h | |
| parent | 201bbf3e917066fb05ff1f10f7166d262b8ed2cf (diff) | |
| download | llmnpc-306c3cb6924c6231c102ff7d75aa3f68e3618ca2.tar.gz | |
Update to multi model for embeddings and prompting
Diffstat (limited to 'maps.h')
| -rw-r--r-- | maps.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -16,6 +16,7 @@ typedef struct { typedef struct { const char *name; const char *reply; + const char *vdb_path; } NpcSettings; typedef struct { @@ -29,11 +30,11 @@ static inline GameMap make_map1(void) { GameMap map = {0}; map.data = maps_map1_txt; map.len = (int)maps_map1_txt_len; - map.npcs[0] = (NpcSettings){.name = "Bromm", .reply = "Bromm: The old ruins are north of here."}; - map.npcs[1] = (NpcSettings){.name = "Dagna", .reply = "Dagna: The well is safe, mostly."}; - map.npcs[2] = (NpcSettings){.name = "Keldor", .reply = "Keldor: I saw lights in the marsh last night."}; - map.npcs[3] = (NpcSettings){.name = "Thrain", .reply = "Thrain: Mind the bridge; the beams sing when they're weak."}; - map.npcs[4] = (NpcSettings){.name = "Skara", .reply = "Skara: If you hear bells in the fog, turn back."}; + map.npcs[0] = (NpcSettings){.name = "Bromm", .reply = "Bromm: The old ruins are north of here.", .vdb_path = "corpus/map1_bromm.vdb"}; + map.npcs[1] = (NpcSettings){.name = "Dagna", .reply = "Dagna: The well is safe, mostly.", .vdb_path = "corpus/map1_dagna.vdb"}; + map.npcs[2] = (NpcSettings){.name = "Keldor", .reply = "Keldor: I saw lights in the marsh last night.", .vdb_path = "corpus/map1_keldor.vdb"}; + map.npcs[3] = (NpcSettings){.name = "Thrain", .reply = "Thrain: Mind the bridge; the beams sing when they're weak.", .vdb_path = "corpus/map1_thrain.vdb"}; + map.npcs[4] = (NpcSettings){.name = "Skara", .reply = "Skara: If you hear bells in the fog, turn back.", .vdb_path = "corpus/map1_skara.vdb"}; return map; } |
